|
@@ -50,7 +50,11 @@ export default {
|
|
|
computed: {
|
|
|
tableData2() {
|
|
|
const arr = [...this.tableData]
|
|
|
- arr.map(item => {})
|
|
|
+ arr.map(item => {
|
|
|
+ if (item.uuid === '954a527b-e460-4b67-bd39-7adcfa3c2def') {
|
|
|
+ item.isSys = true
|
|
|
+ }
|
|
|
+ })
|
|
|
return arr
|
|
|
}
|
|
|
},
|
|
@@ -65,7 +69,7 @@ export default {
|
|
|
{ label: '操作', width: 120, type: 'handle2', operations:
|
|
|
[
|
|
|
{ label: '详情', func: this.linkDtl, btnType: 'primary' },
|
|
|
- { label: '删除', func: this.delHandle, btnType: 'danger' },
|
|
|
+ { label: '删除', func: this.delHandle, btnType: 'danger', hide: 'isSys', },
|
|
|
]
|
|
|
}
|
|
|
]
|