ts-glitter 21.3.5 → 21.3.6
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/lowcode/Entry.js
CHANGED
|
@@ -146,7 +146,7 @@ export class Entry {
|
|
|
146
146
|
}
|
|
147
147
|
window.renderClock = (_b = window.renderClock) !== null && _b !== void 0 ? _b : createClock();
|
|
148
148
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
149
|
-
glitter.share.editerVersion = 'V_21.3.
|
|
149
|
+
glitter.share.editerVersion = 'V_21.3.6';
|
|
150
150
|
glitter.share.start = new Date();
|
|
151
151
|
const vm = { appConfig: [] };
|
|
152
152
|
window.saasConfig = {
|
package/lowcode/Entry.ts
CHANGED
|
@@ -150,7 +150,7 @@ export class Entry {
|
|
|
150
150
|
}
|
|
151
151
|
(window as any).renderClock = (window as any).renderClock ?? createClock();
|
|
152
152
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
153
|
-
glitter.share.editerVersion = 'V_21.3.
|
|
153
|
+
glitter.share.editerVersion = 'V_21.3.6';
|
|
154
154
|
glitter.share.start = new Date();
|
|
155
155
|
const vm = { appConfig: [] };
|
|
156
156
|
(window as any).saasConfig = {
|
|
@@ -225,7 +225,7 @@ export class ShoppingFinanceSetting {
|
|
|
225
225
|
h = html ` <div class="px-md-0 px-2 mb-2">
|
|
226
226
|
${BgWidget.normalInsignia('透過線上金流,消費者可於線上進行結帳付款')}
|
|
227
227
|
</div>
|
|
228
|
-
<div class="row">
|
|
228
|
+
<div class="row m-0">
|
|
229
229
|
${PaymentConfig.onlinePay
|
|
230
230
|
.filter(item => item.type !== 'pos')
|
|
231
231
|
.map(dd => {
|
|
@@ -238,6 +238,7 @@ export class ShoppingFinanceSetting {
|
|
|
238
238
|
>
|
|
239
239
|
|
|
240
240
|
<div
|
|
241
|
+
class="pt-4"
|
|
241
242
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
242
243
|
>
|
|
243
244
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -263,8 +264,7 @@ export class ShoppingFinanceSetting {
|
|
|
263
264
|
</div>
|
|
264
265
|
</div>
|
|
265
266
|
</div>
|
|
266
|
-
<div class="
|
|
267
|
-
<div class="w-100 d-flex align-items-center justify-content-end fw-500" style="">
|
|
267
|
+
<div class="position-absolute " style="right:10px;top:10px;">
|
|
268
268
|
${BgWidget.customButton({
|
|
269
269
|
button: {
|
|
270
270
|
color: 'gray',
|
|
@@ -622,15 +622,16 @@ export class ShoppingFinanceSetting {
|
|
|
622
622
|
h = html ` <div class="px-md-0 px-2 mb-2">
|
|
623
623
|
${BgWidget.normalInsignia('透過設定線下金流,結帳後訂單將進入手動核款的流程,亦可使用超商取貨付款')}
|
|
624
624
|
</div>
|
|
625
|
-
<div class="row">
|
|
625
|
+
<div class="row m-0">
|
|
626
626
|
${offlinePayArray
|
|
627
627
|
.map((dd) => {
|
|
628
628
|
return html ` <div class="col-12 col-lg-3 col-md-4 p-0 p-md-2">
|
|
629
629
|
<div
|
|
630
|
-
class="w-100 position-relative main-card"
|
|
630
|
+
class="w-100 position-relative main-card "
|
|
631
631
|
style=" background: white; overflow: hidden; flex-direction: column; justify-content: flex-start; align-items: flex-start;gap:10px; display: inline-flex;"
|
|
632
632
|
>
|
|
633
633
|
<div
|
|
634
|
+
class="pt-4"
|
|
634
635
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
635
636
|
>
|
|
636
637
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -660,10 +661,9 @@ export class ShoppingFinanceSetting {
|
|
|
660
661
|
</div>
|
|
661
662
|
</div>
|
|
662
663
|
</div>
|
|
663
|
-
<div class="border-top w-100"></div>
|
|
664
664
|
<div
|
|
665
|
-
class="
|
|
666
|
-
style=""
|
|
665
|
+
class=" position-absolute ${dd.hide_setting ? `d-none` : ''}"
|
|
666
|
+
style="right:10px;top:10px;"
|
|
667
667
|
>
|
|
668
668
|
${BgWidget.customButton({
|
|
669
669
|
button: {
|
|
@@ -742,7 +742,7 @@ export class ShoppingFinanceSetting {
|
|
|
742
742
|
h = html `<div class="px-md-0 px-2 mb-2">
|
|
743
743
|
${BgWidget.normalInsignia('設定實體店面所需串接的付款方式')}
|
|
744
744
|
</div>
|
|
745
|
-
<div class="row">
|
|
745
|
+
<div class="row m-0">
|
|
746
746
|
${PaymentConfig.onlinePay
|
|
747
747
|
.filter(item => item.type === 'pos')
|
|
748
748
|
.map(dd => {
|
|
@@ -751,7 +751,7 @@ export class ShoppingFinanceSetting {
|
|
|
751
751
|
class="w-100 position-relative main-card"
|
|
752
752
|
style=" background: white; overflow: hidden; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 10px; display: inline-flex;"
|
|
753
753
|
>
|
|
754
|
-
<div
|
|
754
|
+
<div class="pt-4"
|
|
755
755
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
756
756
|
>
|
|
757
757
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -777,8 +777,8 @@ export class ShoppingFinanceSetting {
|
|
|
777
777
|
</div>
|
|
778
778
|
</div>
|
|
779
779
|
</div>
|
|
780
|
-
|
|
781
|
-
<div class="
|
|
780
|
+
|
|
781
|
+
<div class="position-absolute" style="right:10px;top:10px;">
|
|
782
782
|
${BgWidget.customButton({
|
|
783
783
|
button: {
|
|
784
784
|
color: 'gray',
|
|
@@ -273,7 +273,7 @@ export class ShoppingFinanceSetting {
|
|
|
273
273
|
h = html` <div class="px-md-0 px-2 mb-2">
|
|
274
274
|
${BgWidget.normalInsignia('透過線上金流,消費者可於線上進行結帳付款')}
|
|
275
275
|
</div>
|
|
276
|
-
<div class="row">
|
|
276
|
+
<div class="row m-0">
|
|
277
277
|
${PaymentConfig.onlinePay
|
|
278
278
|
.filter(item => item.type !== 'pos')
|
|
279
279
|
.map(dd => {
|
|
@@ -285,6 +285,7 @@ export class ShoppingFinanceSetting {
|
|
|
285
285
|
>
|
|
286
286
|
|
|
287
287
|
<div
|
|
288
|
+
class="pt-4"
|
|
288
289
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
289
290
|
>
|
|
290
291
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -310,8 +311,7 @@ export class ShoppingFinanceSetting {
|
|
|
310
311
|
</div>
|
|
311
312
|
</div>
|
|
312
313
|
</div>
|
|
313
|
-
<div class="
|
|
314
|
-
<div class="w-100 d-flex align-items-center justify-content-end fw-500" style="">
|
|
314
|
+
<div class="position-absolute " style="right:10px;top:10px;">
|
|
315
315
|
${BgWidget.customButton({
|
|
316
316
|
button: {
|
|
317
317
|
color: 'gray',
|
|
@@ -689,15 +689,16 @@ export class ShoppingFinanceSetting {
|
|
|
689
689
|
'透過設定線下金流,結帳後訂單將進入手動核款的流程,亦可使用超商取貨付款'
|
|
690
690
|
)}
|
|
691
691
|
</div>
|
|
692
|
-
<div class="row">
|
|
692
|
+
<div class="row m-0">
|
|
693
693
|
${offlinePayArray
|
|
694
694
|
.map((dd: any) => {
|
|
695
695
|
return html` <div class="col-12 col-lg-3 col-md-4 p-0 p-md-2">
|
|
696
696
|
<div
|
|
697
|
-
class="w-100 position-relative main-card"
|
|
697
|
+
class="w-100 position-relative main-card "
|
|
698
698
|
style=" background: white; overflow: hidden; flex-direction: column; justify-content: flex-start; align-items: flex-start;gap:10px; display: inline-flex;"
|
|
699
699
|
>
|
|
700
700
|
<div
|
|
701
|
+
class="pt-4"
|
|
701
702
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
702
703
|
>
|
|
703
704
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -729,10 +730,9 @@ export class ShoppingFinanceSetting {
|
|
|
729
730
|
</div>
|
|
730
731
|
</div>
|
|
731
732
|
</div>
|
|
732
|
-
<div class="border-top w-100"></div>
|
|
733
733
|
<div
|
|
734
|
-
class="
|
|
735
|
-
style=""
|
|
734
|
+
class=" position-absolute ${dd.hide_setting ? `d-none` : ''}"
|
|
735
|
+
style="right:10px;top:10px;"
|
|
736
736
|
>
|
|
737
737
|
${BgWidget.customButton({
|
|
738
738
|
button: {
|
|
@@ -818,7 +818,7 @@ export class ShoppingFinanceSetting {
|
|
|
818
818
|
h = html`<div class="px-md-0 px-2 mb-2">
|
|
819
819
|
${BgWidget.normalInsignia('設定實體店面所需串接的付款方式')}
|
|
820
820
|
</div>
|
|
821
|
-
<div class="row">
|
|
821
|
+
<div class="row m-0">
|
|
822
822
|
${PaymentConfig.onlinePay
|
|
823
823
|
.filter(item => item.type === 'pos')
|
|
824
824
|
.map(dd => {
|
|
@@ -827,7 +827,7 @@ export class ShoppingFinanceSetting {
|
|
|
827
827
|
class="w-100 position-relative main-card"
|
|
828
828
|
style=" background: white; overflow: hidden; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: 10px; display: inline-flex;"
|
|
829
829
|
>
|
|
830
|
-
<div
|
|
830
|
+
<div class="pt-4"
|
|
831
831
|
style="align-self: stretch; justify-content: flex-start; align-items: center; gap: 28px; display: inline-flex"
|
|
832
832
|
>
|
|
833
833
|
<div style="min-width: 46px;max-width: 46px;">
|
|
@@ -853,8 +853,8 @@ export class ShoppingFinanceSetting {
|
|
|
853
853
|
</div>
|
|
854
854
|
</div>
|
|
855
855
|
</div>
|
|
856
|
-
|
|
857
|
-
<div class="
|
|
856
|
+
|
|
857
|
+
<div class="position-absolute" style="right:10px;top:10px;">
|
|
858
858
|
${BgWidget.customButton({
|
|
859
859
|
button: {
|
|
860
860
|
color: 'gray',
|