@airpower/web 0.2.49 → 0.2.51
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 +7 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -17952,8 +17952,14 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
17952
17952
|
return scope.row;
|
|
17953
17953
|
}
|
|
17954
17954
|
function getValue(scope, key) {
|
|
17955
|
+
console.warn(getRowEntity(scope)[key]);
|
|
17955
17956
|
return getRowEntity(scope)[key];
|
|
17956
17957
|
}
|
|
17958
|
+
function getPayloadArray(scope, key) {
|
|
17959
|
+
const value = getValue(scope, key)[key];
|
|
17960
|
+
console.warn("payloadArray", value);
|
|
17961
|
+
return value;
|
|
17962
|
+
}
|
|
17957
17963
|
function tableRowClassName({ row }) {
|
|
17958
17964
|
if (props.disableRow && props.disableRow(row)) {
|
|
17959
17965
|
return "disable-row";
|
|
@@ -18252,7 +18258,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
18252
18258
|
key: 4,
|
|
18253
18259
|
money: getValue(scope, item.key)
|
|
18254
18260
|
}, null, 8, ["money"])) : item.payload ? (openBlock(), createElementBlock(Fragment, { key: 5 }, [
|
|
18255
|
-
item.array ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(
|
|
18261
|
+
item.array ? (openBlock(true), createElementBlock(Fragment, { key: 0 }, renderList(getPayloadArray(scope, item.key), (payload) => {
|
|
18256
18262
|
return openBlock(), createBlock(unref(APayload), {
|
|
18257
18263
|
key: payload.id,
|
|
18258
18264
|
payload
|