CN-1040: adminiastration底下各table的customization功能更新

This commit is contained in:
刘洪洪
2023-05-25 18:31:26 +08:00
parent f8db51ea6a
commit 0b0501db4a
6 changed files with 190 additions and 56 deletions

View File

@@ -16,8 +16,8 @@
width="55">
</el-table-column>
<el-table-column
v-for="item in customTableTitles"
:key="item.prop"
v-for="(item, index) in customTableTitles"
:key="item.prop+index"
:fixed="item.fixed"
:label="item.label"
:min-width="`${item.minWidth}`"
@@ -74,7 +74,22 @@ export default {
prop: 'remark',
show: true
}
]
],
isRefresh: true
}
},
watch: {
customTableTitles (n) {
// 数据变化界面未渲染vue3.2弃用$set,使用reactive绑定数组界面也未响应该方法不优美后续有更佳替代方案时替换
if (n && n.length > 0) {
if (n[0].flag === 'drag') {
// 重新渲染会导致界面偶现闪的情况点击checkbox时界面闪会比较丑故不处理点击的情况
this.isRefresh = false
this.$nextTick(() => {
this.isRefresh = true
})
}
}
}
}
}