parent
1e2f9ae668
commit
1f1d39949f
|
@ -128,7 +128,7 @@
|
||||||
</el-row>
|
</el-row>
|
||||||
</el-form>
|
</el-form>
|
||||||
<div>
|
<div>
|
||||||
<el-table ref="multipleTable" :data="checkList" border style="width: 100%">
|
<el-table ref="multipleTable" :data="checkList" border style="width: 100%" @selection-change="handleSelectionChange">
|
||||||
<el-table-column
|
<el-table-column
|
||||||
type="selection"
|
type="selection"
|
||||||
width="55"/>
|
width="55"/>
|
||||||
|
@ -300,6 +300,7 @@ 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: {
|
||||||
|
@ -758,7 +759,7 @@ export default {
|
||||||
// 库里已有数据 所以对改数据修改
|
// 库里已有数据 所以对改数据修改
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
this.form.DATA = this.checkList
|
this.form.DATA = this.pointList
|
||||||
requestFN(
|
requestFN(
|
||||||
'/fireCheckList/saveInfo',
|
'/fireCheckList/saveInfo',
|
||||||
{
|
{
|
||||||
|
@ -1127,6 +1128,10 @@ export default {
|
||||||
},
|
},
|
||||||
updateDeptChange() {
|
updateDeptChange() {
|
||||||
this.form.UPDATE_USER_ID = ''
|
this.form.UPDATE_USER_ID = ''
|
||||||
|
},
|
||||||
|
handleSelectionChange(val) {
|
||||||
|
this.pointList = val
|
||||||
|
console.log('当前选中项', val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue