Merge remote-tracking branch 'origin/2024年1月24日测试' into 2024年1月24日测试
commit
dc4a031f4e
|
@ -5,7 +5,7 @@
|
|||
<el-row :gutter="12">
|
||||
<el-col :span="12">
|
||||
<el-form-item prop="STATUS" label="是否通过: ">
|
||||
<el-select v-model="form.STATUS" filterable style="width: 300px" placeholder="请选择">
|
||||
<el-select v-model="form.STATUS" filterable style="width: 300px" placeholder="请选择" @change="clearInfo">
|
||||
<el-option label="是" value="1"/>
|
||||
<el-option label="否" value="0"/>
|
||||
</el-select>
|
||||
|
@ -194,6 +194,7 @@ export default {
|
|||
}
|
||||
).then((data) => {
|
||||
this.peopleList = data.userList
|
||||
this.form.user = ''
|
||||
}).catch((e) => {
|
||||
console.log(e)
|
||||
})
|
||||
|
@ -205,6 +206,7 @@ export default {
|
|||
}
|
||||
).then((data) => {
|
||||
this.peopleList = data.userList
|
||||
this.form.user = ''
|
||||
}).catch((e) => {
|
||||
console.log(e)
|
||||
})
|
||||
|
@ -242,6 +244,14 @@ export default {
|
|||
list: [],
|
||||
tm: new Date().getTime()
|
||||
}
|
||||
},
|
||||
clearInfo() {
|
||||
this.form.APPOINT_DEPARTMENT_ID = null
|
||||
this.form.APPOINT_DEPARTMENT_NAME = ''
|
||||
this.form.APPOINT_USER_ID = null
|
||||
this.form.APPOINT_USER_NAME = ''
|
||||
this.form.OPINION = ''
|
||||
this.form.user = ''
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue