@yoooloo42/joker 1.0.256 → 1.0.257
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/index.cjs.js +45 -25
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +45 -25
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -47664,26 +47664,26 @@ var tableProps = {
|
|
|
47664
47664
|
scopeThis
|
|
47665
47665
|
});
|
|
47666
47666
|
}
|
|
47667
|
-
}, {
|
|
47668
|
-
title: "新增",
|
|
47669
|
-
hdlDisabled(_ref4) {
|
|
47670
|
-
let {
|
|
47671
|
-
scopeThis,
|
|
47672
|
-
item,
|
|
47673
|
-
index
|
|
47674
|
-
} = _ref4;
|
|
47675
|
-
return scopeThis.initBox.readOnly;
|
|
47676
|
-
},
|
|
47677
|
-
handle(_ref5) {
|
|
47678
|
-
let {
|
|
47679
|
-
scopeThis,
|
|
47680
|
-
index
|
|
47681
|
-
} = _ref5;
|
|
47682
|
-
withTable.popupInsertOne({
|
|
47683
|
-
scopeThis
|
|
47684
|
-
});
|
|
47685
|
-
}
|
|
47686
47667
|
}]
|
|
47668
|
+
}, {
|
|
47669
|
+
title: "新增",
|
|
47670
|
+
hdlDisabled(_ref4) {
|
|
47671
|
+
let {
|
|
47672
|
+
scopeThis,
|
|
47673
|
+
item,
|
|
47674
|
+
index
|
|
47675
|
+
} = _ref4;
|
|
47676
|
+
return scopeThis.initBox.readOnly;
|
|
47677
|
+
},
|
|
47678
|
+
handle(_ref5) {
|
|
47679
|
+
let {
|
|
47680
|
+
scopeThis,
|
|
47681
|
+
index
|
|
47682
|
+
} = _ref5;
|
|
47683
|
+
withTable.popupInsertOne({
|
|
47684
|
+
scopeThis
|
|
47685
|
+
});
|
|
47686
|
+
}
|
|
47687
47687
|
}, {
|
|
47688
47688
|
title: "收银",
|
|
47689
47689
|
hdlDisabled(_ref6) {
|
|
@@ -48373,6 +48373,14 @@ onMounted(async ()=>{
|
|
|
48373
48373
|
scopeThis.queryInit.formData.businesstype_code = scopeThis.initBox.businesstype_code;
|
|
48374
48374
|
await withTable.init({scopeThis});
|
|
48375
48375
|
});
|
|
48376
|
+
const style = ref({
|
|
48377
|
+
amount: {
|
|
48378
|
+
textAlign: 'center',
|
|
48379
|
+
fontSize: '14px',
|
|
48380
|
+
color: 'blue',
|
|
48381
|
+
weight: 'bold'
|
|
48382
|
+
}
|
|
48383
|
+
});
|
|
48376
48384
|
|
|
48377
48385
|
return (_ctx, _cache) => {
|
|
48378
48386
|
const _component_ly0Table = resolveComponent("ly0Table");
|
|
@@ -48394,12 +48402,24 @@ return (_ctx, _cache) => {
|
|
|
48394
48402
|
], -1 /* CACHED */)),
|
|
48395
48403
|
createElementVNode("tbody", null, [
|
|
48396
48404
|
createElementVNode("tr", null, [
|
|
48397
|
-
createElementVNode("td",
|
|
48398
|
-
|
|
48399
|
-
|
|
48400
|
-
createElementVNode("td",
|
|
48401
|
-
|
|
48402
|
-
|
|
48405
|
+
createElementVNode("td", {
|
|
48406
|
+
style: normalizeStyle(style.value.amount)
|
|
48407
|
+
}, toDisplayString(Math.floor(scopeThis.initBox.deal) / 100), 5 /* TEXT, STYLE */),
|
|
48408
|
+
createElementVNode("td", {
|
|
48409
|
+
style: normalizeStyle(style.value.amount)
|
|
48410
|
+
}, toDisplayString(Math.floor(scopeThis.amountBox.sum) / 100), 5 /* TEXT, STYLE */),
|
|
48411
|
+
createElementVNode("td", {
|
|
48412
|
+
style: normalizeStyle(style.value.amount)
|
|
48413
|
+
}, toDisplayString(Math.floor(scopeThis.amountBox.succeeded) / 100), 5 /* TEXT, STYLE */),
|
|
48414
|
+
createElementVNode("td", {
|
|
48415
|
+
style: normalizeStyle(style.value.amount)
|
|
48416
|
+
}, toDisplayString(Math.floor(scopeThis.amountBox.started) / 100), 5 /* TEXT, STYLE */),
|
|
48417
|
+
createElementVNode("td", {
|
|
48418
|
+
style: normalizeStyle(style.value.amount)
|
|
48419
|
+
}, toDisplayString(Math.floor(scopeThis.amountBox.failed) / 100), 5 /* TEXT, STYLE */),
|
|
48420
|
+
createElementVNode("td", {
|
|
48421
|
+
style: normalizeStyle(style.value.amount)
|
|
48422
|
+
}, toDisplayString(Math.floor(scopeThis.amountBox.unpaid) / 100), 5 /* TEXT, STYLE */)
|
|
48403
48423
|
])
|
|
48404
48424
|
])
|
|
48405
48425
|
]),
|