[BUG修复](hyx_2024-9-11)

代码版本回退
hyx_2024-9-11_changeUpload
huangyuxuan 2024-09-20 16:09:00 +08:00
parent 1f1d39949f
commit f89c653d8d
1 changed files with 2 additions and 7 deletions

View File

@ -128,7 +128,7 @@
</el-row> </el-row>
</el-form> </el-form>
<div> <div>
<el-table ref="multipleTable" :data="checkList" border style="width: 100%" @selection-change="handleSelectionChange"> <el-table ref="multipleTable" :data="checkList" border style="width: 100%">
<el-table-column <el-table-column
type="selection" type="selection"
width="55"/> width="55"/>
@ -300,7 +300,6 @@ export default {
directives: { waves }, directives: { waves },
data() { data() {
return { return {
POINTS_LIST: [],
FILTER_LIST_REGION: [], FILTER_LIST_REGION: [],
FILTER_LIST_POINT: [], FILTER_LIST_POINT: [],
deviceCriteria: { deviceCriteria: {
@ -759,7 +758,7 @@ export default {
// //
if (valid) { if (valid) {
this.listLoading = true this.listLoading = true
this.form.DATA = this.pointList this.form.DATA = this.checkList
requestFN( requestFN(
'/fireCheckList/saveInfo', '/fireCheckList/saveInfo',
{ {
@ -1128,10 +1127,6 @@ export default {
}, },
updateDeptChange() { updateDeptChange() {
this.form.UPDATE_USER_ID = '' this.form.UPDATE_USER_ID = ''
},
handleSelectionChange(val) {
this.pointList = val
console.log('当前选中项', val)
} }
} }
} }