ts-glitter 20.9.4 → 20.9.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 +1 -1
- package/lowcode/Entry.ts +1 -1
- package/lowcode/cms-plugin/pos-config-setting.js +22 -16
- package/lowcode/cms-plugin/pos-config-setting.ts +25 -20
- package/lowcode/cms-plugin/pos-pages/connection-mode.js +1 -0
- package/lowcode/cms-plugin/pos-pages/connection-mode.ts +1 -0
- package/lowcode/cms-plugin/pos-pages/payment-function.js +2 -0
- package/lowcode/cms-plugin/pos-pages/payment-function.ts +2 -0
- package/lowcode/cms-plugin/shopping-finance-setting.js +42 -8
- package/lowcode/cms-plugin/shopping-finance-setting.ts +52 -9
- package/lowcode/glitter-base/global/payment-config.js +2 -2
- package/lowcode/glitter-base/global/payment-config.ts +10 -2
- package/lowcode/public-components/user-manager/um-login.js +309 -228
- package/lowcode/public-components/user-manager/um-login.ts +390 -306
- package/package.json +1 -1
- package/src/api-public/models/glitter-finance.js.map +1 -1
- package/src/api-public/models/glitter-finance.ts +1 -0
- package/src/services/private_config.js +5 -0
- package/src/services/private_config.js.map +1 -1
- package/src/services/private_config.ts +6 -0
package/lowcode/Entry.js
CHANGED
|
@@ -144,7 +144,7 @@ export class Entry {
|
|
|
144
144
|
}
|
|
145
145
|
window.renderClock = (_b = window.renderClock) !== null && _b !== void 0 ? _b : createClock();
|
|
146
146
|
console.log(`Entry-time:`, window.renderClock.stop());
|
|
147
|
-
glitter.share.editerVersion = 'V_20.9.
|
|
147
|
+
glitter.share.editerVersion = 'V_20.9.6';
|
|
148
148
|
glitter.share.start = new Date();
|
|
149
149
|
const vm = { appConfig: [] };
|
|
150
150
|
window.saasConfig = {
|
package/lowcode/Entry.ts
CHANGED
|
@@ -146,7 +146,7 @@ export class Entry {
|
|
|
146
146
|
}
|
|
147
147
|
(window as any).renderClock = (window as any).renderClock ?? createClock();
|
|
148
148
|
console.log(`Entry-time:`, (window as any).renderClock.stop());
|
|
149
|
-
glitter.share.editerVersion = 'V_20.9.
|
|
149
|
+
glitter.share.editerVersion = 'V_20.9.6';
|
|
150
150
|
glitter.share.start = new Date();
|
|
151
151
|
const vm = { appConfig: [] };
|
|
152
152
|
(window as any).saasConfig = {
|
|
@@ -13,6 +13,7 @@ import { BgWidget } from '../backend-manager/bg-widget.js';
|
|
|
13
13
|
import { Currency } from '../glitter-base/global/currency.js';
|
|
14
14
|
import { FilterOptions } from './filter-options.js';
|
|
15
15
|
import { LanguageBackend } from './language-backend.js';
|
|
16
|
+
import { ShoppingFinanceSetting } from './shopping-finance-setting.js';
|
|
16
17
|
const html = String.raw;
|
|
17
18
|
export class PosConfigSetting {
|
|
18
19
|
static main(gvc) {
|
|
@@ -307,33 +308,38 @@ ${BgWidget.customButton({
|
|
|
307
308
|
const typeMap = {
|
|
308
309
|
function: () => {
|
|
309
310
|
var _a;
|
|
310
|
-
return BgWidget.mainCard(html `
|
|
311
|
+
return [BgWidget.mainCard(html `
|
|
311
312
|
<div class="d-flex flex-column gap-2">
|
|
312
313
|
${createSection('POS功能', '系統將根據您勾選的項目,開放相對應的功能')}
|
|
313
314
|
${BgWidget.inlineCheckBox({
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
315
|
+
title: '',
|
|
316
|
+
gvc,
|
|
317
|
+
def: (_a = vm.data.pos_support_finction) !== null && _a !== void 0 ? _a : [],
|
|
318
|
+
array: [
|
|
319
|
+
{ title: '列印明細', value: 'print_order_detail' },
|
|
320
|
+
{ title: '列印留存聯', value: 'print_order_receipt' },
|
|
321
|
+
{ title: '發票開立', value: 'print_invoice' },
|
|
322
|
+
{ title: '桌號設定', value: 'table_select' },
|
|
323
|
+
],
|
|
324
|
+
callback: (array) => {
|
|
325
|
+
vm.data.pos_support_finction = array;
|
|
326
|
+
},
|
|
327
|
+
type: 'multiple',
|
|
328
|
+
})}
|
|
328
329
|
${createPickUpModeDialog('叫號取餐', `針對特店取餐功能,會自動遞增取餐號碼。`)}
|
|
329
330
|
</div>
|
|
330
|
-
`)
|
|
331
|
+
`)
|
|
332
|
+
].join('');
|
|
331
333
|
},
|
|
334
|
+
finance: () => {
|
|
335
|
+
return ShoppingFinanceSetting.main(gvc, true);
|
|
336
|
+
}
|
|
332
337
|
};
|
|
333
338
|
return BgWidget.container(html `
|
|
334
339
|
<div class="title-container">${BgWidget.title('全站設定')}</div>
|
|
335
340
|
${BgWidget.tab([
|
|
336
341
|
{ title: '功能管理', key: 'function' },
|
|
342
|
+
{ title: '金流設定', key: 'finance' },
|
|
337
343
|
], gvc, vm.type, text => {
|
|
338
344
|
vm.type = text;
|
|
339
345
|
})}
|
|
@@ -6,6 +6,7 @@ import { Currency } from '../glitter-base/global/currency.js';
|
|
|
6
6
|
import { FilterOptions } from './filter-options.js';
|
|
7
7
|
import { GlobalUser } from '../glitter-base/global/global-user.js';
|
|
8
8
|
import { LanguageBackend } from './language-backend.js';
|
|
9
|
+
import { ShoppingFinanceSetting } from './shopping-finance-setting.js';
|
|
9
10
|
|
|
10
11
|
const html = String.raw;
|
|
11
12
|
|
|
@@ -366,31 +367,35 @@ ${BgWidget.customButton({
|
|
|
366
367
|
vm.data.pos_support_finction = vm.data.pos_support_finction ?? [];
|
|
367
368
|
const typeMap: Record<string, () => string> = {
|
|
368
369
|
function: () => {
|
|
369
|
-
return BgWidget.mainCard(html`
|
|
370
|
+
return [BgWidget.mainCard(html`
|
|
370
371
|
<div class="d-flex flex-column gap-2">
|
|
371
372
|
${createSection('POS功能', '系統將根據您勾選的項目,開放相對應的功能')}
|
|
372
373
|
${BgWidget.inlineCheckBox({
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
374
|
+
title: '',
|
|
375
|
+
gvc,
|
|
376
|
+
def: vm.data.pos_support_finction ?? [],
|
|
377
|
+
array: [
|
|
378
|
+
{ title: '列印明細', value: 'print_order_detail' },
|
|
379
|
+
{ title: '列印留存聯', value: 'print_order_receipt' },
|
|
380
|
+
{ title: '發票開立', value: 'print_invoice' },
|
|
381
|
+
{ title: '桌號設定', value: 'table_select' },
|
|
382
|
+
],
|
|
383
|
+
callback: (array: any) => {
|
|
384
|
+
vm.data.pos_support_finction = array;
|
|
385
|
+
},
|
|
386
|
+
type: 'multiple',
|
|
387
|
+
})}
|
|
387
388
|
${createPickUpModeDialog(
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
'叫號取餐',
|
|
390
|
+
`針對特店取餐功能,會自動遞增取餐號碼。`
|
|
391
|
+
)}
|
|
391
392
|
</div>
|
|
392
|
-
`)
|
|
393
|
+
`)
|
|
394
|
+
].join('');
|
|
393
395
|
},
|
|
396
|
+
finance:()=>{
|
|
397
|
+
return ShoppingFinanceSetting.main(gvc,true)
|
|
398
|
+
}
|
|
394
399
|
};
|
|
395
400
|
|
|
396
401
|
return BgWidget.container(html`
|
|
@@ -399,7 +404,7 @@ ${BgWidget.customButton({
|
|
|
399
404
|
[
|
|
400
405
|
// { title: '商店訊息', key: 'basic' },
|
|
401
406
|
{ title: '功能管理', key: 'function' },
|
|
402
|
-
|
|
407
|
+
{ title: '金流設定', key: 'finance' },
|
|
403
408
|
],
|
|
404
409
|
gvc,
|
|
405
410
|
vm.type,
|
|
@@ -107,6 +107,7 @@ export class PaymentFunction {
|
|
|
107
107
|
gvc.glitter.runJsInterFace('credit_card', {
|
|
108
108
|
amount: `${total}`,
|
|
109
109
|
memo: `訂單ID:${orderDetail.orderID}`,
|
|
110
|
+
orderID: orderDetail.orderID,
|
|
110
111
|
pwd: pwd,
|
|
111
112
|
}, (res) => {
|
|
112
113
|
if (res.result) {
|
|
@@ -136,6 +137,7 @@ export class PaymentFunction {
|
|
|
136
137
|
cmd: 'credit_card',
|
|
137
138
|
amount: `${total}`,
|
|
138
139
|
memo: `訂單ID:${orderDetail.orderID}`,
|
|
140
|
+
orderID: orderDetail.orderID,
|
|
139
141
|
pwd: pwd,
|
|
140
142
|
});
|
|
141
143
|
}
|
|
@@ -112,6 +112,7 @@ export class PaymentFunction {
|
|
|
112
112
|
{
|
|
113
113
|
amount: `${total}`,
|
|
114
114
|
memo: `訂單ID:${orderDetail.orderID}`,
|
|
115
|
+
orderID:orderDetail.orderID,
|
|
115
116
|
pwd: pwd,
|
|
116
117
|
},
|
|
117
118
|
(res: any) => {
|
|
@@ -140,6 +141,7 @@ export class PaymentFunction {
|
|
|
140
141
|
cmd: 'credit_card',
|
|
141
142
|
amount: `${total}`,
|
|
142
143
|
memo: `訂單ID:${orderDetail.orderID}`,
|
|
144
|
+
orderID:orderDetail.orderID,
|
|
143
145
|
pwd: pwd,
|
|
144
146
|
});
|
|
145
147
|
} else {
|
|
@@ -23,7 +23,8 @@ import { ApiUser } from '../glitter-base/route/user.js';
|
|
|
23
23
|
import { PaymentConfig } from '../glitter-base/global/payment-config.js';
|
|
24
24
|
const html = String.raw;
|
|
25
25
|
export class ShoppingFinanceSetting {
|
|
26
|
-
static main(gvc) {
|
|
26
|
+
static main(gvc, pos) {
|
|
27
|
+
pos = (`${pos}` === 'true');
|
|
27
28
|
const dialog = new ShareDialog(gvc.glitter);
|
|
28
29
|
const saasConfig = window.parent.saasConfig;
|
|
29
30
|
const vm = {
|
|
@@ -32,7 +33,7 @@ export class ShoppingFinanceSetting {
|
|
|
32
33
|
posBoxId: gvc.glitter.getUUID(),
|
|
33
34
|
offBoxId: gvc.glitter.getUUID(),
|
|
34
35
|
loading: true,
|
|
35
|
-
page: 'online',
|
|
36
|
+
page: pos ? 'pos' : 'online',
|
|
36
37
|
};
|
|
37
38
|
let keyData = { payment_info_custom: [] };
|
|
38
39
|
function refresh() {
|
|
@@ -193,7 +194,7 @@ export class ShoppingFinanceSetting {
|
|
|
193
194
|
}
|
|
194
195
|
return BgWidget.container(html `
|
|
195
196
|
${[
|
|
196
|
-
html ` <div class="title-container">
|
|
197
|
+
html ` <div class="title-container ${pos ? `d-none` : ``}">
|
|
197
198
|
${BgWidget.title('金流設定')}
|
|
198
199
|
<div class="flex-fill"></div>
|
|
199
200
|
</div>`,
|
|
@@ -726,7 +727,7 @@ export class ShoppingFinanceSetting {
|
|
|
726
727
|
</div>`;
|
|
727
728
|
}
|
|
728
729
|
if (vm.page === 'pos') {
|
|
729
|
-
h = html
|
|
730
|
+
h = html `<div class="px-md-0 px-2 mb-2">
|
|
730
731
|
${BgWidget.normalInsignia('設定實體店面所需串接的付款方式')}
|
|
731
732
|
</div>
|
|
732
733
|
<div class="row">
|
|
@@ -826,10 +827,9 @@ export class ShoppingFinanceSetting {
|
|
|
826
827
|
</div>`;
|
|
827
828
|
}
|
|
828
829
|
return [
|
|
829
|
-
BgWidget.tab([
|
|
830
|
+
pos ? `` : BgWidget.tab([
|
|
830
831
|
{ key: 'online', title: '線上金流' },
|
|
831
832
|
{ key: 'offline', title: '線下金流' },
|
|
832
|
-
{ key: 'pos', title: 'POS付款' },
|
|
833
833
|
], gvc, vm.page, (key) => {
|
|
834
834
|
vm.page = key;
|
|
835
835
|
gvc.notifyDataChange(vm.id);
|
|
@@ -865,8 +865,10 @@ export class ShoppingFinanceSetting {
|
|
|
865
865
|
},
|
|
866
866
|
}),
|
|
867
867
|
].join('')}
|
|
868
|
-
${BgWidget.mbContainer(240)}
|
|
869
|
-
|
|
868
|
+
${pos ? `` : BgWidget.mbContainer(240)}
|
|
869
|
+
`, {
|
|
870
|
+
style: pos ? `margin-top: 0px !important;` : ``,
|
|
871
|
+
});
|
|
870
872
|
}
|
|
871
873
|
static tabView(gvc, viewList) {
|
|
872
874
|
var _a;
|
|
@@ -1381,6 +1383,38 @@ export class ShoppingFinanceSetting {
|
|
|
1381
1383
|
return this.tabView(gvc, [cashflow, shipment, cartSetting]);
|
|
1382
1384
|
}
|
|
1383
1385
|
static utCreditCard(gvc, data) {
|
|
1386
|
+
const cashflow = {
|
|
1387
|
+
key: 'cashflow',
|
|
1388
|
+
title: '基本設定',
|
|
1389
|
+
html: BgWidget.editeInput({
|
|
1390
|
+
gvc: gvc,
|
|
1391
|
+
title: '商家ID',
|
|
1392
|
+
default: data.pwd,
|
|
1393
|
+
callback: text => {
|
|
1394
|
+
data.pwd = text;
|
|
1395
|
+
},
|
|
1396
|
+
placeHolder: '請輸入商家ID',
|
|
1397
|
+
}),
|
|
1398
|
+
};
|
|
1399
|
+
const shipment = {
|
|
1400
|
+
key: 'shipment',
|
|
1401
|
+
title: '指定物流',
|
|
1402
|
+
html: gvc.bindView({
|
|
1403
|
+
bind: gvc.glitter.getUUID(),
|
|
1404
|
+
view: () => ShoppingFinanceSetting.setShipmentSupport(gvc, data),
|
|
1405
|
+
}),
|
|
1406
|
+
};
|
|
1407
|
+
const cartSetting = {
|
|
1408
|
+
key: 'cartSetting',
|
|
1409
|
+
title: '購物車設定',
|
|
1410
|
+
html: gvc.bindView({
|
|
1411
|
+
bind: gvc.glitter.getUUID(),
|
|
1412
|
+
view: () => ShoppingFinanceSetting.setCartSetting(gvc, data),
|
|
1413
|
+
}),
|
|
1414
|
+
};
|
|
1415
|
+
return this.tabView(gvc, [cashflow, shipment, cartSetting]);
|
|
1416
|
+
}
|
|
1417
|
+
static myPayPos(gvc, data) {
|
|
1384
1418
|
const cashflow = {
|
|
1385
1419
|
key: 'cashflow',
|
|
1386
1420
|
title: '基本設定',
|
|
@@ -24,7 +24,8 @@ type CustomFinance = {
|
|
|
24
24
|
const html = String.raw;
|
|
25
25
|
|
|
26
26
|
export class ShoppingFinanceSetting {
|
|
27
|
-
static main(gvc: GVC) {
|
|
27
|
+
static main(gvc: GVC,pos?:boolean) {
|
|
28
|
+
pos=(`${pos}`==='true')
|
|
28
29
|
const dialog = new ShareDialog(gvc.glitter);
|
|
29
30
|
const saasConfig: { config: any; api: any } = (window.parent as any).saasConfig;
|
|
30
31
|
|
|
@@ -41,7 +42,7 @@ export class ShoppingFinanceSetting {
|
|
|
41
42
|
posBoxId: gvc.glitter.getUUID(),
|
|
42
43
|
offBoxId: gvc.glitter.getUUID(),
|
|
43
44
|
loading: true,
|
|
44
|
-
page: 'online',
|
|
45
|
+
page: pos ? 'pos':'online',
|
|
45
46
|
};
|
|
46
47
|
|
|
47
48
|
let keyData: any = { payment_info_custom: [] };
|
|
@@ -223,7 +224,7 @@ export class ShoppingFinanceSetting {
|
|
|
223
224
|
|
|
224
225
|
return BgWidget.container(html`
|
|
225
226
|
${[
|
|
226
|
-
html` <div class="title-container">
|
|
227
|
+
html` <div class="title-container ${pos ? `d-none`:``}">
|
|
227
228
|
${BgWidget.title('金流設定')}
|
|
228
229
|
<div class="flex-fill"></div>
|
|
229
230
|
</div>`,
|
|
@@ -790,7 +791,7 @@ export class ShoppingFinanceSetting {
|
|
|
790
791
|
|
|
791
792
|
// POS
|
|
792
793
|
if (vm.page === 'pos') {
|
|
793
|
-
h = html
|
|
794
|
+
h = html`<div class="px-md-0 px-2 mb-2">
|
|
794
795
|
${BgWidget.normalInsignia('設定實體店面所需串接的付款方式')}
|
|
795
796
|
</div>
|
|
796
797
|
<div class="row">
|
|
@@ -827,6 +828,8 @@ export class ShoppingFinanceSetting {
|
|
|
827
828
|
return this.linePayScan(gvc, key_d);
|
|
828
829
|
case 'ut_credit_card':
|
|
829
830
|
return this.utCreditCard(gvc, key_d);
|
|
831
|
+
// case 'my_pay':
|
|
832
|
+
// return this.myPayPos(gvc, key_d);
|
|
830
833
|
}
|
|
831
834
|
return ``;
|
|
832
835
|
})()}
|
|
@@ -894,11 +897,11 @@ export class ShoppingFinanceSetting {
|
|
|
894
897
|
}
|
|
895
898
|
|
|
896
899
|
return [
|
|
897
|
-
BgWidget.tab(
|
|
900
|
+
pos ? ``: BgWidget.tab(
|
|
898
901
|
[
|
|
899
902
|
{ key: 'online', title: '線上金流' },
|
|
900
903
|
{ key: 'offline', title: '線下金流' },
|
|
901
|
-
{ key: 'pos', title: 'POS付款' },
|
|
904
|
+
// { key: 'pos', title: 'POS付款' },
|
|
902
905
|
],
|
|
903
906
|
gvc,
|
|
904
907
|
vm.page,
|
|
@@ -906,7 +909,8 @@ export class ShoppingFinanceSetting {
|
|
|
906
909
|
vm.page = key;
|
|
907
910
|
gvc.notifyDataChange(vm.id);
|
|
908
911
|
}
|
|
909
|
-
)
|
|
912
|
+
)
|
|
913
|
+
,
|
|
910
914
|
h,
|
|
911
915
|
].join('');
|
|
912
916
|
} catch (e) {
|
|
@@ -939,8 +943,10 @@ export class ShoppingFinanceSetting {
|
|
|
939
943
|
},
|
|
940
944
|
}),
|
|
941
945
|
].join('')}
|
|
942
|
-
${BgWidget.mbContainer(240)}
|
|
943
|
-
|
|
946
|
+
${pos ? ``:BgWidget.mbContainer(240)}
|
|
947
|
+
`,{
|
|
948
|
+
style: pos ? `margin-top: 0px !important;` : ``,
|
|
949
|
+
});
|
|
944
950
|
}
|
|
945
951
|
|
|
946
952
|
// 分頁模組
|
|
@@ -1513,6 +1519,43 @@ export class ShoppingFinanceSetting {
|
|
|
1513
1519
|
|
|
1514
1520
|
// 彈窗: 聯合信用卡 (POS)
|
|
1515
1521
|
static utCreditCard(gvc: GVC, data: any) {
|
|
1522
|
+
const cashflow = {
|
|
1523
|
+
key: 'cashflow',
|
|
1524
|
+
title: '基本設定',
|
|
1525
|
+
html: BgWidget.editeInput({
|
|
1526
|
+
gvc: gvc,
|
|
1527
|
+
title: '商家ID',
|
|
1528
|
+
default: data.pwd,
|
|
1529
|
+
callback: text => {
|
|
1530
|
+
data.pwd = text;
|
|
1531
|
+
},
|
|
1532
|
+
placeHolder: '請輸入商家ID',
|
|
1533
|
+
}),
|
|
1534
|
+
};
|
|
1535
|
+
|
|
1536
|
+
const shipment = {
|
|
1537
|
+
key: 'shipment',
|
|
1538
|
+
title: '指定物流',
|
|
1539
|
+
html: gvc.bindView({
|
|
1540
|
+
bind: gvc.glitter.getUUID(),
|
|
1541
|
+
view: () => ShoppingFinanceSetting.setShipmentSupport(gvc, data),
|
|
1542
|
+
}),
|
|
1543
|
+
};
|
|
1544
|
+
|
|
1545
|
+
const cartSetting = {
|
|
1546
|
+
key: 'cartSetting',
|
|
1547
|
+
title: '購物車設定',
|
|
1548
|
+
html: gvc.bindView({
|
|
1549
|
+
bind: gvc.glitter.getUUID(),
|
|
1550
|
+
view: () => ShoppingFinanceSetting.setCartSetting(gvc, data),
|
|
1551
|
+
}),
|
|
1552
|
+
};
|
|
1553
|
+
|
|
1554
|
+
return this.tabView(gvc, [cashflow, shipment, cartSetting]);
|
|
1555
|
+
}
|
|
1556
|
+
|
|
1557
|
+
// 彈窗: MyPay高鉅科技 (POS)
|
|
1558
|
+
static myPayPos(gvc: GVC, data: any) {
|
|
1516
1559
|
const cashflow = {
|
|
1517
1560
|
key: 'cashflow',
|
|
1518
1561
|
title: '基本設定',
|
|
@@ -76,9 +76,9 @@ PaymentConfig.onlinePay = [
|
|
|
76
76
|
},
|
|
77
77
|
{
|
|
78
78
|
key: 'ut_credit_card',
|
|
79
|
-
name: '
|
|
79
|
+
name: '高鉅信用卡支付',
|
|
80
80
|
type: 'pos',
|
|
81
|
-
img: '
|
|
81
|
+
img: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAMAAADZqYNOAAAALVBMVEXzmB5HcEzzmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB5P11V9AAAAD3RSTlP/AEsrpvPHDhwH2XGJYTqdn/9qAAAA4UlEQVQokX3TSQLDIAgFUBBBTTT3P26BTK1a/6KDzxJFC5hoTMEzgAHGsBwL1exLdf6vkJdal7otlUk1hy7bzUF1zK1tqvLsaabbStvw3BblzrMoX/P37HG/iPt8v82V5ih+ChjndZNr5hnG6/SPZ4QlXtnzcHMkjz19tTyDpZTz7dXzSVUkYGMO+pH5Vb9m/sXOgW2j9dVq6rs7bKVVZ/SVGbTP9ZrV8Fe12hGtwdYEwU4jcAp+VysAdVo2/UFiK70D507JV66ly5eyxbR60Wavt2I6o+3JRNYiomT/Wx34AAcuBkbh8b8BAAAAAElFTkSuQmCC',
|
|
82
82
|
},
|
|
83
83
|
];
|
|
84
84
|
PaymentConfig.defalutOfflinePay = [
|
|
@@ -40,10 +40,18 @@ export class PaymentConfig {
|
|
|
40
40
|
},
|
|
41
41
|
{
|
|
42
42
|
key: 'ut_credit_card',
|
|
43
|
-
name: '
|
|
43
|
+
name: '高鉅信用卡支付',
|
|
44
44
|
type: 'pos',
|
|
45
|
-
img: '
|
|
45
|
+
img: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAMAAADZqYNOAAAALVBMVEXzmB5HcEzzmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB5P11V9AAAAD3RSTlP/AEsrpvPHDhwH2XGJYTqdn/9qAAAA4UlEQVQokX3TSQLDIAgFUBBBTTT3P26BTK1a/6KDzxJFC5hoTMEzgAHGsBwL1exLdf6vkJdal7otlUk1hy7bzUF1zK1tqvLsaabbStvw3BblzrMoX/P37HG/iPt8v82V5ih+ChjndZNr5hnG6/SPZ4QlXtnzcHMkjz19tTyDpZTz7dXzSVUkYGMO+pH5Vb9m/sXOgW2j9dVq6rs7bKVVZ/SVGbTP9ZrV8Fe12hGtwdYEwU4jcAp+VysAdVo2/UFiK70D507JV66ly5eyxbR60Wavt2I6o+3JRNYiomT/Wx34AAcuBkbh8b8BAAAAAElFTkSuQmCC',
|
|
46
46
|
},
|
|
47
|
+
// {
|
|
48
|
+
// key: 'my_pay',
|
|
49
|
+
// name: '高鉅信用卡支付',
|
|
50
|
+
// type: 'pos',
|
|
51
|
+
// img: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAgCAMAAADZqYNOAAAALVBMVEXzmB5HcEzzmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB7zmB5P11V9AAAAD3RSTlP/AEsrpvPHDhwH2XGJYTqdn/9qAAAA4UlEQVQokX3TSQLDIAgFUBBBTTT3P26BTK1a/6KDzxJFC5hoTMEzgAHGsBwL1exLdf6vkJdal7otlUk1hy7bzUF1zK1tqvLsaabbStvw3BblzrMoX/P37HG/iPt8v82V5ih+ChjndZNr5hnG6/SPZ4QlXtnzcHMkjz19tTyDpZTz7dXzSVUkYGMO+pH5Vb9m/sXOgW2j9dVq6rs7bKVVZ/SVGbTP9ZrV8Fe12hGtwdYEwU4jcAp+VysAdVo2/UFiK70D507JV66ly5eyxbR60Wavt2I6o+3JRNYiomT/Wx34AAcuBkbh8b8BAAAAAElFTkSuQmCC',
|
|
52
|
+
// },
|
|
53
|
+
|
|
54
|
+
|
|
47
55
|
];
|
|
48
56
|
|
|
49
57
|
public static defalutOfflinePay = [
|