@pisell/private-materials 6.1.30 → 6.1.31
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.js +1 -1
- package/build/lowcode/view.js +1 -1
- package/es/components/booking/components/footer/index.js +7 -1
- package/lib/components/booking/components/footer/index.js +7 -1
- package/package.json +1 -1
@@ -336,7 +336,13 @@ var Footer = function Footer(props) {
|
|
336
336
|
state.action({
|
337
337
|
type: 'pisell1.handleOpenPayment',
|
338
338
|
data: {
|
339
|
-
order_info: res
|
339
|
+
order_info: res,
|
340
|
+
subtotal_info: {
|
341
|
+
subTotalList: subTotalList,
|
342
|
+
orderTotalList: orderTotalList,
|
343
|
+
total: total,
|
344
|
+
showDetail: showDetail
|
345
|
+
}
|
340
346
|
},
|
341
347
|
callback: function callback(res) {
|
342
348
|
console.log('webpos_pay_result', res);
|
@@ -246,7 +246,13 @@ var Footer = (props) => {
|
|
246
246
|
state.action({
|
247
247
|
type: "pisell1.handleOpenPayment",
|
248
248
|
data: {
|
249
|
-
order_info: res
|
249
|
+
order_info: res,
|
250
|
+
subtotal_info: {
|
251
|
+
subTotalList,
|
252
|
+
orderTotalList,
|
253
|
+
total,
|
254
|
+
showDetail
|
255
|
+
}
|
250
256
|
},
|
251
257
|
callback: (res2) => {
|
252
258
|
var _a2, _b2, _c2, _d2;
|