6095edbe by 任超

style:共有方式

1 parent f2427aed
......@@ -121,7 +121,6 @@ export default {
} else {
that.tableDataList = _.cloneDeep(val)
}
this.column = this.InformationTable
})
},
immediate: true,
......@@ -130,7 +129,7 @@ export default {
gyfs: {
handler (newVal, oldValue) {
let dataList = _.cloneDeep(this.InformationTable)
if (newVal == '0') {
if (newVal == 0) {
this.column = _.cloneDeep(dataList).slice(1, dataList.length)
} else if ((newVal == '1' || newVal == '3')) {
this.column = dataList
......@@ -170,12 +169,10 @@ export default {
// 修改
editClick (index, row) {
//console.log(row, 'rowrowrowrowrow');
this.dataIndex = index
this.dialog = true
this.details = row
},
queryViewClick () {
this.dialog = true
}
......