|
@@ -95,6 +95,16 @@
|
|
|
v-model='inputForm.locationName'
|
|
|
style='width:232px;margin-right:12px'
|
|
|
></el-input>
|
|
|
+ <!-- 日常维保,执行搜索人放入筛选 -->
|
|
|
+ <p style='margin:16px 0 8px 0'>搜索执行人</p>
|
|
|
+ <el-input
|
|
|
+ placeholder='搜索执行人'
|
|
|
+ size='small'
|
|
|
+ clearable
|
|
|
+ prefix-icon='el-icon-search'
|
|
|
+ v-model='inputForm.people'
|
|
|
+ style='width:232px;margin-right:12px'
|
|
|
+ ></el-input>
|
|
|
</el-form>
|
|
|
<el-form style=' padding: 20px 24px;' v-if='type==6'>
|
|
|
<p style='margin:16px 0 8px 0'>任务完成日期</p>
|
|
@@ -171,6 +181,7 @@ export default {
|
|
|
reportdate: '',
|
|
|
real: '',
|
|
|
locationName: '',
|
|
|
+ people: '',
|
|
|
},
|
|
|
}
|
|
|
},
|
|
@@ -191,7 +202,7 @@ export default {
|
|
|
} else if (this.type == 6) {
|
|
|
this.$emit('confirm', this.inputForm.complete, this.inputForm.bill, this.inputForm.ycgdtbsj, this.inputForm.ycgdyssj)
|
|
|
} else if (this.type == 5) {
|
|
|
- this.$emit('confirm', this.inputForm.reportdate, this.inputForm.real, this.inputForm.locationName)
|
|
|
+ this.$emit('confirm', this.inputForm.reportdate, this.inputForm.real, this.inputForm.locationName, this.inputForm.people)
|
|
|
}
|
|
|
this.dialogFormVisible = false
|
|
|
this.inputForm.status = ''
|