From 1f1d39949f2281f971893e60640e8ddc10281e9b Mon Sep 17 00:00:00 2001 From: huangyuxuan Date: Fri, 20 Sep 2024 09:09:16 +0800 Subject: [PATCH] =?UTF-8?q?[BUG=E4=BF=AE=E5=A4=8D](hyx=5F2024-9-11)=20=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=96=B0=E5=A2=9E=E6=B6=88=E9=98=B2=E7=82=B9?= =?UTF-8?q?=E4=BD=8D=E6=A3=80=E6=9F=A5=E6=97=B6=E6=A3=80=E6=9F=A5=E5=99=A8?= =?UTF-8?q?=E6=9D=90=E6=B7=BB=E5=8A=A0=E5=A4=9A=E4=B8=AA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/firefighting/checklist/components/edit.vue | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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) } } }