若干bug修改
parent
bc89c09958
commit
b8331f9ad7
|
@ -12,7 +12,7 @@
|
|||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item v-if="form.STATUS === '1'" prop="APPOINT_DEPARTMENT_ID" label="指定监管部门:">
|
||||
<el-form-item v-if="form.STATUS === '1' && isShow" prop="APPOINT_DEPARTMENT_ID" label="指定监管部门:">
|
||||
<Treeselect
|
||||
:options="departmentTree"
|
||||
:normalizer="normalizer"
|
||||
|
@ -32,7 +32,7 @@
|
|||
<el-input v-model="form.OPINION" :rows="2" type="textarea" placeholder="填写审批意见"/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col v-if="form.STATUS === '1'" :span="12">
|
||||
<el-col v-if="form.STATUS === '1' && isShow" :span="12">
|
||||
<el-form-item v-if="form.STATUS === '1'" prop="APPOINT_USER_ID" label="指定监管部门审批人:">
|
||||
<el-select v-model="form.user" style="width: 300px" placeholder="请选择" @change="chooseUser">
|
||||
<el-option v-for="item in peopleList" :key="item.USER_ID" :value="JSON.stringify(item)" :label="item.NAME"/>
|
||||
|
@ -78,7 +78,9 @@ export default {
|
|||
OPINION: '',
|
||||
user: '',
|
||||
tm: new Date().getTime(),
|
||||
list: []
|
||||
list: [],
|
||||
isShow: true,
|
||||
info: {}
|
||||
},
|
||||
rules: {
|
||||
STATUS: [
|
||||
|
@ -110,12 +112,23 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
async init(e) {
|
||||
console.log(JSON.parse(sessionStorage.getItem('user')))
|
||||
console.log(e)
|
||||
this.loading = true
|
||||
this.visible = true
|
||||
this.heirloom = JSON.stringify(e)
|
||||
this.form.list = JSON.stringify(e)
|
||||
this.info = e[0]
|
||||
if (this.info.FLOWS_TYPE === '0') {
|
||||
if (this.info.FLOWS_STEP === 0) {
|
||||
this.isShow = true
|
||||
await this.getDepartmentTree()
|
||||
} else {
|
||||
this.isShow = false
|
||||
}
|
||||
} else {
|
||||
this.isShow = true
|
||||
await this.getCorpDepartmentTree()
|
||||
}
|
||||
this.loading = false
|
||||
},
|
||||
sendMessage(e) {
|
||||
|
@ -147,8 +160,21 @@ export default {
|
|||
})
|
||||
})
|
||||
},
|
||||
getCorpDepartmentTree() {
|
||||
return new Promise(resolve => {
|
||||
requestFN(
|
||||
'/openApi/corpDepartment/listTree',
|
||||
{}
|
||||
).then((data) => {
|
||||
this.departmentTree = this.removeEmptyChildren(JSON.parse(data.zTreeNodes))
|
||||
resolve(true)
|
||||
}).catch((e) => {
|
||||
})
|
||||
})
|
||||
},
|
||||
getPeopleList(e) {
|
||||
this.form.APPOINT_DEPARTMENT_NAME = e.name
|
||||
if (this.info.FLOWS_TYPE === '0') {
|
||||
requestFN(
|
||||
'/user/listAll',
|
||||
{
|
||||
|
@ -159,6 +185,18 @@ export default {
|
|||
}).catch((e) => {
|
||||
console.log(e)
|
||||
})
|
||||
} else {
|
||||
requestFN(
|
||||
'/user/listAllManageAndCorp',
|
||||
{
|
||||
DEPARTMENT_ID: e.id
|
||||
}
|
||||
).then((data) => {
|
||||
this.peopleList = data.userList
|
||||
}).catch((e) => {
|
||||
console.log(e)
|
||||
})
|
||||
}
|
||||
},
|
||||
chooseUser(e) {
|
||||
const entity = JSON.parse(e)
|
||||
|
|
Loading…
Reference in New Issue