@airpower/web 0.2.68 → 0.2.69
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 +4 -2
- package/dist/web.css +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -1281,7 +1281,9 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
1281
1281
|
}
|
|
1282
1282
|
if (props.permission) {
|
|
1283
1283
|
const forbidden = !PermissionUtil.has(props.permission) && !WebConfig.disablePermission;
|
|
1284
|
-
|
|
1284
|
+
if (forbidden) {
|
|
1285
|
+
console.warn(`[AButton] 权限不足(${props.permission})`);
|
|
1286
|
+
}
|
|
1285
1287
|
return forbidden;
|
|
1286
1288
|
}
|
|
1287
1289
|
return false;
|
|
@@ -18268,7 +18270,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
18268
18270
|
money: getValue(scope, item.key)
|
|
18269
18271
|
}, null, 8, ["money"])) : item.payload ? (openBlock(), createElementBlock(Fragment, { key: 5 }, [
|
|
18270
18272
|
item.array ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
18271
|
-
createTextVNode(toDisplayString(getPayloadArray(scope, item.key).map((
|
|
18273
|
+
createTextVNode(toDisplayString(getPayloadArray(scope, item.key).map((payload) => payload.getPayloadLabel()).join(",")), 1)
|
|
18272
18274
|
], 64)) : (openBlock(), createBlock(unref(APayload), {
|
|
18273
18275
|
key: 1,
|
|
18274
18276
|
payload: getValue(scope, item.key)
|
package/dist/web.css
CHANGED
|
@@ -1307,7 +1307,7 @@ textarea {
|
|
|
1307
1307
|
margin-bottom: 10px;
|
|
1308
1308
|
}
|
|
1309
1309
|
.a-table-container .a-table-toolbar .a-table-toolbar-left .el-button + .el-button {
|
|
1310
|
-
margin-left:
|
|
1310
|
+
margin-left: 0;
|
|
1311
1311
|
}
|
|
1312
1312
|
.a-table-container .a-table-toolbar .a-table-toolbar-right {
|
|
1313
1313
|
flex: 1;
|