This commit is contained in:
liuye
2023-08-22 16:42:36 +08:00
parent cab95c1ae7
commit 6ac9c8e569
3 changed files with 17 additions and 12 deletions

View File

@@ -143,7 +143,7 @@
></ai-select>
</el-form-item>
<el-form-item label="所属网格" style="width: 100%;">
<el-input disabled size="small" v-model="editInfo.girdName" clearable placeholder="选择所属网格">
<el-input disabled size="small" v-model="editInfo.girdName" clearable>
<template slot="append">
<ai-picker :ops="{label: 'girdName'}" :instance="instance" v-model="editInfo.girdIds" @pick="e => onUserChange(e)" dialogTitle="选择所属网格" action="/app/appgirdinfo/girdList">
<div class="time-select">
@@ -277,7 +277,7 @@ export default {
this.detail = res.data
this.processList = res.data.processList
this.form.groupId = res.data.groupId
this.$forceUpdate()
this.$nextTick(() => {
this.initMap()
})
@@ -309,11 +309,9 @@ export default {
this.form.content = ''
this.form.eventStatus = ''
this.forwardForm.content = ''
this.forwardForm.girdId = ''
this.forwardForm.girdName = ''
this.forwardForm.girdMemberId = ''
this.forwardForm.girdMemberName = ''
this.forwardForm.name = ''
this.forwardForm.handleUserName = ''
this.forwardForm.user = []
this.forwardForm.files = []
},
formatList(list) {
@@ -347,9 +345,12 @@ export default {
id: this.$route.query.id
}).then(res => {
if (res?.code == 0) {
this.isShowForward = false
this.getDetail()
this.$message.success('转交成功!')
this.isShowForward = false
this.processList = []
this.onClose()
this.getDetail()
}
})
}