Commit 33e4909d by 乔延琦

Merge branch 'develop-yuancheng' into 'develop'

fix: 展示列

See merge request GFP/RBC/rbc-frontend!135
parents d917f9aa e6c13084
......@@ -107,12 +107,12 @@ export default {
selection: [],
showModal: false,
tableColumns: [
{
type: 'selection',
key: 'select',
width: 60,
align: 'center',
},
// {
// type: 'selection',
// key: 'select',
// width: 60,
// align: 'center',
// },
// {
// title: '代码',
// key: 'code',
......@@ -179,7 +179,15 @@ export default {
item.width = width
return item
})
this.tableColumns = this.tableColumns.concat(column)
let selectColumn = [
{
type: 'selection',
key: 'select',
width: 60,
align: 'center',
}
]
this.tableColumns = selectColumn.concat(column)
}
}
},
......
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