全部
@@ -173,6 +173,10 @@ const hasColumnPermission = (prop: string) => {
if (userStore.role === 'SUPER_ADMIN' || userStore.username === 'IRIS') {
return true
}
+ // SKU 字段不再参与权限过滤,始终可见
+ if (prop === 'sku') {
+ return true
+ }
const code = permissionMap[prop]
return code ? userStore.hasPermission(code) : false
}