@airpower/web 0.2.66 → 0.2.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +9 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -1280,7 +1280,9 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1280
1280
|
return true;
|
|
1281
1281
|
}
|
|
1282
1282
|
if (props.permission) {
|
|
1283
|
-
|
|
1283
|
+
const forbidden = !PermissionUtil.has(props.permission) && !WebConfig.disablePermission;
|
|
1284
|
+
console.warn(`[AButton] 权限不足(${props.permission})`);
|
|
1285
|
+
return forbidden;
|
|
1284
1286
|
}
|
|
1285
1287
|
return false;
|
|
1286
1288
|
});
|
|
@@ -1317,7 +1319,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1317
1319
|
return __props.link ? (openBlock(), createBlock(_component_ElLink, mergeProps({
|
|
1318
1320
|
key: 0,
|
|
1319
1321
|
disabled: isDisabled.value,
|
|
1320
|
-
type: __props.danger ? "danger" : __props.warning ? "warning" : __props.primary ? "primary" : "",
|
|
1322
|
+
type: __props.danger ? "danger" : __props.warning ? "warning" : __props.primary ? "primary" : "info",
|
|
1321
1323
|
underline: false
|
|
1322
1324
|
}, _ctx.$attrs, toHandlers(_ctx.$attrs)), {
|
|
1323
1325
|
default: withCtx(() => [
|
|
@@ -17360,7 +17362,11 @@ function useTableButton(params) {
|
|
|
17360
17362
|
if (!permission) {
|
|
17361
17363
|
return true;
|
|
17362
17364
|
}
|
|
17363
|
-
|
|
17365
|
+
const hasPermission2 = PermissionUtil.has(permission);
|
|
17366
|
+
if (!hasPermission2) {
|
|
17367
|
+
console.warn(`[ATable] 权限不足 (${permission})`);
|
|
17368
|
+
}
|
|
17369
|
+
return hasPermission2;
|
|
17364
17370
|
}
|
|
17365
17371
|
function isAddRowDisabled(row) {
|
|
17366
17372
|
if (!hasPermission(addRowPermission)) {
|