Commit 6a502614 by 米嘉伟

问题修改

parent e6a8b149
......@@ -184,7 +184,7 @@
</div>
<el-table
height="550"
ref='reftable'
ref='reftable1'
:data="selectArr"
style="width: 100%"
row-key="pid"
......@@ -370,7 +370,7 @@
</div>
<el-table
height="550"
ref='reftable'
ref='reftable2'
:data="selectArr"
@selection-change="checkRightAll"
style="width: 100%"
......@@ -1162,14 +1162,19 @@ export default {
this.selectArr = this.handleConcatArr(this.selectArr, this.nowSelectData)
if (this.drlx == 3 || this.drlx == 6) {
this.selectArr.filter((good) => {
this.$refs.reftable1.toggleAllSelection(good, true)
})
} else if (this.drlx == 9) {
this.selectArr.filter((good) => {
this.$refs.reftable2.toggleAllSelection(good, true)
})
}
this.selectArr.filter((good) => {
console.log(good, 'good', this.$refs.reftable)
this.$refs.reftable.toggleAllSelection(good, true)
})
this.handleRemoveTabList(this.nowSelectData, this.datas)
this.nowSelectData = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment