Commit 45dfd243 by qiaoyanqi

基础数据字段列选

parent 75453a8a
......@@ -166,7 +166,8 @@ export default {
'groupTableName.define.showFields': {
handler(nv) {
console.log({nv})
let column = nv.filter(item => item.isQueryColumn)
let choiceColumns = this.groupTableName.define.choiceColumns;
let column = nv.filter(item => item.isQueryColumn && choiceColumns.indexOf(item.columnName)>-1);
let width = 0
if (column.length > 3) {
width = 150
......
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