diff --git a/src/views/firefighting/checklist/components/edit.vue b/src/views/firefighting/checklist/components/edit.vue
index 7ac546c..fea94f6 100644
--- a/src/views/firefighting/checklist/components/edit.vue
+++ b/src/views/firefighting/checklist/components/edit.vue
@@ -128,7 +128,7 @@
-
+
@@ -300,6 +300,7 @@ export default {
directives: { waves },
data() {
return {
+ POINTS_LIST: [],
FILTER_LIST_REGION: [],
FILTER_LIST_POINT: [],
deviceCriteria: {
@@ -758,7 +759,7 @@ export default {
// 库里已有数据 所以对改数据修改
if (valid) {
this.listLoading = true
- this.form.DATA = this.checkList
+ this.form.DATA = this.pointList
requestFN(
'/fireCheckList/saveInfo',
{
@@ -1127,6 +1128,10 @@ export default {
},
updateDeptChange() {
this.form.UPDATE_USER_ID = ''
+ },
+ handleSelectionChange(val) {
+ this.pointList = val
+ console.log('当前选中项', val)
}
}
}