CN-1047: Administration下Role模块编辑时接口报500

This commit is contained in:
刘洪洪
2023-05-30 10:18:59 +08:00
parent 0a4c2a5310
commit 1e6692a992

View File

@@ -13,6 +13,7 @@
:resizable="false"
align="center"
type="selection"
:selectable="checkSelectable"
width="55">
</el-table-column>
<!--key只使用item.prop的话拖拽后界面无响应添加index后问题解决-->
@@ -77,6 +78,12 @@ export default {
}
]
}
},
methods: {
// 禁止勾选buildIn为1的项即禁止修改admin的权限
checkSelectable (row) {
return row.buildIn !== 1
}
}
}
</script>