Merge branch 'hi-ucs-dev' of http://124.222.94.39:3000/wuhongjian/hi-ucs into hi-ucs-dev
This commit is contained in:
commit
b61722857d
|
@ -55,14 +55,13 @@
|
|||
<!--类型-->
|
||||
<el-form-item>
|
||||
<span>类型:</span>
|
||||
<el-select v-if="this.departmentId === 2 || this.departmentId === 4" v-model="abilityType" placeholder="请选择类型"
|
||||
clearable>
|
||||
<el-select @change="changeIiem" v-if="this.departmentId === 2 || this.departmentId === 4" v-model="abilityType" placeholder="请选择类型" clearable>
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option v-for="(item, i) in typeOptions" :key="`${item.name}${i}`" :label="item.name" :value="item.name"
|
||||
v-bind="item">
|
||||
</el-option>
|
||||
</el-select>
|
||||
<el-select v-else v-model="abilityType" placeholder="请选择类型" clearable>
|
||||
<el-select @change="changeIiem" v-else v-model="abilityType" placeholder="请选择类型" clearable>
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option v-for="(item, i) in typeOptions1" :key="`${item.name}${i}`" :label="item.name" :value="item.name"
|
||||
v-bind="item">
|
||||
|
@ -873,6 +872,10 @@ export default {
|
|||
this.resourcesIsShow = false
|
||||
this.handleCurrentChange(1)
|
||||
},
|
||||
changeIiem(){
|
||||
this.currentPage=1
|
||||
this.pageSize=10
|
||||
},
|
||||
// 明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数//明细按钮函数
|
||||
goToDetail () {
|
||||
this.currentPage=1
|
||||
|
|
|
@ -262,6 +262,7 @@
|
|||
center: ['50%', '40%'],
|
||||
type: 'pie',
|
||||
selectedMode: 'single',
|
||||
silent: true,
|
||||
radius: ['50%', '30%'],
|
||||
color: ['#fe845e', '#6cc95a', '#02d1b0', '#1772ff', '#FAC858'],
|
||||
top: '0',
|
||||
|
@ -289,6 +290,7 @@
|
|||
type: 'pie',
|
||||
center: ['50%', '40%'],
|
||||
radius: ['58%', '50%'],
|
||||
silent: true,
|
||||
itemStyle: {
|
||||
normal: {
|
||||
color: '#c2c7d6',
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<!--
|
||||
* @Author: hisense.liangjunhua
|
||||
* @Date: 2022-06-17 14:11:08
|
||||
* @LastEditors: hisense.wuhongjian
|
||||
* @LastEditTime: 2022-08-25 19:52:03
|
||||
* @LastEditors: Light
|
||||
* @LastEditTime: 2022-10-26 14:57:25
|
||||
* @Description: 上架
|
||||
-->
|
||||
<template>
|
||||
|
@ -95,7 +95,7 @@
|
|||
disabled
|
||||
v-model:value="val[attr.field]"
|
||||
:showCount="true"
|
||||
:maxlength="200"
|
||||
:maxlength="1000"
|
||||
:placeholder="'请填写' + attr.name"
|
||||
v-else-if="attr.type == 'textArea'"
|
||||
/>
|
||||
|
@ -166,7 +166,7 @@
|
|||
<a-textarea
|
||||
v-model:value="val.note1"
|
||||
:showCount="true"
|
||||
:maxlength="200"
|
||||
:maxlength="1000"
|
||||
:placeholder="'请填写' + val.name"
|
||||
v-else-if="val.type == 'textArea'"
|
||||
/>
|
||||
|
@ -270,7 +270,7 @@
|
|||
v-else-if="item.type == 'textArea'"
|
||||
v-model:value="item.note1"
|
||||
:showCount="true"
|
||||
:maxlength="200"
|
||||
:maxlength="1000"
|
||||
:placeholder="'请输入' + item.name"
|
||||
@change="changeIiem(item.name, item.note1)"
|
||||
/>
|
||||
|
|
Loading…
Reference in New Issue