|
@@ -3,7 +3,7 @@
|
|
<template-page ref="pageRef" :getList="getList" :operation="operation" :exportList="exportList"
|
|
<template-page ref="pageRef" :getList="getList" :operation="operation" :exportList="exportList"
|
|
:optionsEvensGroup="optionsEvensGroup" :columnParsing="columnParsing" :tableAttributes="tableAttributes"
|
|
:optionsEvensGroup="optionsEvensGroup" :columnParsing="columnParsing" :tableAttributes="tableAttributes"
|
|
:tableEvents="tableEvents" :moreParameters="moreParameters" :screeningAnalysis="screeningAnalysis"
|
|
:tableEvents="tableEvents" :moreParameters="moreParameters" :screeningAnalysis="screeningAnalysis"
|
|
- :filterMethod="filterMethod">
|
|
|
|
|
|
+ :filterMethod="filterMethod" :replaceOrNotMap="true">
|
|
<!-- 创建工单 -->
|
|
<!-- 创建工单 -->
|
|
<div class="cartographer_big">
|
|
<div class="cartographer_big">
|
|
<el-dialog title="创建工单" width="100%" :modal="false" :visible.sync="createFormBool" :before-close="handleClose">
|
|
<el-dialog title="创建工单" width="100%" :modal="false" :visible.sync="createFormBool" :before-close="handleClose">
|
|
@@ -20,14 +20,14 @@
|
|
<div class="cartographer_big">
|
|
<div class="cartographer_big">
|
|
<el-dialog title="批量预约 / 改约" width="100%" :modal="false" :visible.sync="rescheduleBool"
|
|
<el-dialog title="批量预约 / 改约" width="100%" :modal="false" :visible.sync="rescheduleBool"
|
|
:before-close="rescheduleClose">
|
|
:before-close="rescheduleClose">
|
|
- <Reschedule v-if="rescheduleBool" :recordSelected="recordSelected"/>
|
|
|
|
|
|
+ <Reschedule v-if="rescheduleBool" :recordSelected="recordSelected" @close="rescheduleClose" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
<!-- 批量派工/改派 -->
|
|
<!-- 批量派工/改派 -->
|
|
<div class="cartographer_big">
|
|
<div class="cartographer_big">
|
|
<el-dialog title="批量派工 / 改派" width="100%" :modal="false" :visible.sync="reassignmentBool"
|
|
<el-dialog title="批量派工 / 改派" width="100%" :modal="false" :visible.sync="reassignmentBool"
|
|
:before-close="reassignmentClose">
|
|
:before-close="reassignmentClose">
|
|
- <Reassignment v-if="reassignmentBool" :recordSelected="recordSelected"/>
|
|
|
|
|
|
+ <Reassignment v-if="reassignmentBool" :recordSelected="recordSelected" @close="reassignmentClose" />
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template-page>
|
|
</template-page>
|
|
@@ -271,6 +271,7 @@ export default {
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
this.createFormBool = false
|
|
this.createFormBool = false
|
|
this.detailFormBool = false
|
|
this.detailFormBool = false
|
|
|
|
+ this.recordSelected = []
|
|
this.$refs?.pageRef?.refreshList()
|
|
this.$refs?.pageRef?.refreshList()
|
|
})
|
|
})
|
|
},
|
|
},
|
|
@@ -278,11 +279,13 @@ export default {
|
|
rescheduleClose() {
|
|
rescheduleClose() {
|
|
this.rescheduleBool = false
|
|
this.rescheduleBool = false
|
|
this.recordSelected = []
|
|
this.recordSelected = []
|
|
|
|
+ this.$refs?.pageRef?.refreshList()
|
|
},
|
|
},
|
|
|
|
|
|
reassignmentClose() {
|
|
reassignmentClose() {
|
|
this.reassignmentBool = false
|
|
this.reassignmentBool = false
|
|
this.recordSelected = []
|
|
this.recordSelected = []
|
|
|
|
+ this.$refs?.pageRef?.refreshList()
|
|
},
|
|
},
|
|
|
|
|
|
}
|
|
}
|