Commit 3e0af68d by 乔延琦

Merge branch 'develop-zhouyi' into 'develop'

fix(@gms/gms-plugin-billexpand): 基础数据单选时勾全选的表现

See merge request GFP/RBC/rbc-frontend!138
parents 8ee67a93 7707d22f
......@@ -284,6 +284,11 @@ export default {
: this.radioSelectAllCancel(selection)
},
radioSelectAllCancel(selection) {
if (selection && selection.length) {
this.$nextTick(() => {
this.$refs._table.selectAll(false)
})
}
this.tableData.map((row) => {
row._checked = false
this.selection.map((value) => {
......
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