修改 外部标准化协会入会流程、外部标准化协会参会流程 人员选择问题
This commit is contained in:
@@ -766,7 +766,7 @@ export default {
|
|||||||
// 流程阶段负责人选择
|
// 流程阶段负责人选择
|
||||||
choiceZRR(type, title, id) {
|
choiceZRR(type, title, id) {
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
this.nodeList = JSON.parse(JSON.stringify(id.split(',')))
|
||||||
this.type = type
|
this.type = type
|
||||||
this.drawerTitle = title
|
this.drawerTitle = title
|
||||||
this.roleShowflag = true
|
this.roleShowflag = true
|
||||||
|
|||||||
@@ -273,7 +273,7 @@
|
|||||||
<h4>管理推进部</h4>
|
<h4>管理推进部</h4>
|
||||||
<div style="margin-top: 10px;width: 300px;">
|
<div style="margin-top: 10px;width: 300px;">
|
||||||
<el-input :disabled="disabledXX" v-model="roleForm.feeUserId" style="display: none;"></el-input>
|
<el-input :disabled="disabledXX" v-model="roleForm.feeUserId" style="display: none;"></el-input>
|
||||||
<el-input :disabled="disabledXX" v-model="roleForm.feeUser" readonly placeholder="选择费用管理部门" @click.native="choiceZRR('feeUser', '选择费用管理部门', roleForm.feeUserId)">
|
<el-input :disabled="disabledXX" v-model="roleForm.feeUser" readonly placeholder="选择费用管理部门" @click.native="choiceZRRFEE('feeUser', '选择费用管理部门', roleForm.feeUserId)">
|
||||||
</el-input>
|
</el-input>
|
||||||
</div>
|
</div>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -346,6 +346,12 @@
|
|||||||
:nodeList="nodeListOne"
|
:nodeList="nodeListOne"
|
||||||
@checkedRole="drawerCheckOne"
|
@checkedRole="drawerCheckOne"
|
||||||
/>
|
/>
|
||||||
|
<Role-tree v-if="!disabledXX"
|
||||||
|
is-title="选择人员信息"
|
||||||
|
:is-visible.sync="roleShowflagFEE"
|
||||||
|
:nodeList="nodeListOne"
|
||||||
|
@checkedRole="drawerCheckFEE"
|
||||||
|
/>
|
||||||
<Role-tree v-if="!disabledXX"
|
<Role-tree v-if="!disabledXX"
|
||||||
is-title="选择人员信息"
|
is-title="选择人员信息"
|
||||||
:is-visible.sync="roleShowflag"
|
:is-visible.sync="roleShowflag"
|
||||||
@@ -461,6 +467,7 @@ export default {
|
|||||||
roleShowflagOne: false,
|
roleShowflagOne: false,
|
||||||
isSubmit: false,
|
isSubmit: false,
|
||||||
saveLoading: false,
|
saveLoading: false,
|
||||||
|
roleShowflagFEE: false,
|
||||||
commentInfo: '',
|
commentInfo: '',
|
||||||
bpnId: '',
|
bpnId: '',
|
||||||
// 设置当前日期之前不可选择
|
// 设置当前日期之前不可选择
|
||||||
@@ -700,6 +707,28 @@ export default {
|
|||||||
this.drawerTitleOne = title
|
this.drawerTitleOne = title
|
||||||
this.roleShowflagOne = true
|
this.roleShowflagOne = true
|
||||||
},
|
},
|
||||||
|
choiceZRRFEE(type, title, id) {
|
||||||
|
console.log(id)
|
||||||
|
this.nodeListOne = []
|
||||||
|
this.nodeListOne = JSON.parse(JSON.stringify(id.split(',')))
|
||||||
|
this.drawerTitleOne = title
|
||||||
|
this.roleShowflagFEE = true
|
||||||
|
},
|
||||||
|
drawerCheckFEE(data) {
|
||||||
|
var idList = ''
|
||||||
|
var nameList = ''
|
||||||
|
data.forEach(item => {
|
||||||
|
if (nameList.length > 0) {
|
||||||
|
nameList += ','
|
||||||
|
idList += ','
|
||||||
|
}
|
||||||
|
idList += item.id;
|
||||||
|
nameList += item.name;
|
||||||
|
});
|
||||||
|
this.roleForm.feeUser = nameList
|
||||||
|
this.roleForm.feeUserId = idList
|
||||||
|
this.roleShowflag = false
|
||||||
|
},
|
||||||
drawerCheckOne(data) {
|
drawerCheckOne(data) {
|
||||||
this.unqualidiedData.forEach(item => {
|
this.unqualidiedData.forEach(item => {
|
||||||
item.engineer = data[0].name
|
item.engineer = data[0].name
|
||||||
|
|||||||
Reference in New Issue
Block a user