@uxda/appkit 4.1.25 → 4.1.26
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/.eslintrc.mjs +7 -7
- package/README.md +187 -187
- package/babel.config.js +12 -12
- package/dist/appkit.css +24 -21
- package/dist/index.js +1253 -1153
- package/package.json +77 -75
- package/project.config.json +15 -15
- package/project.tt.json +13 -13
- package/rollup.config.mjs +56 -56
- package/src/Appkit.ts +66 -66
- package/src/balance/api/endpoints.ts +126 -126
- package/src/balance/api/index.ts +106 -82
- package/src/balance/components/AccountView.vue +748 -748
- package/src/balance/components/BalanceCard.vue +205 -205
- package/src/balance/components/BalanceReminder.vue +85 -85
- package/src/balance/components/ConsumptionFilter.vue +218 -218
- package/src/balance/components/ConsumptionRules.vue +68 -68
- package/src/balance/components/DateFilter.vue +249 -230
- package/src/balance/components/DateRange.vue +80 -75
- package/src/balance/components/ListFilter.vue +63 -63
- package/src/balance/components/ListFilterPicker.vue +186 -186
- package/src/balance/components/SecondBalance.vue +71 -71
- package/src/balance/components/Tip.vue +45 -45
- package/src/balance/components/index.ts +13 -13
- package/src/balance/types.ts +91 -91
- package/src/components/bt-cropper/index.vue +774 -774
- package/src/components/bt-cropper/utils/calcCropper.js +42 -42
- package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
- package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
- package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
- package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
- package/src/components/bt-cropper/utils/ratio.js +3 -3
- package/src/components/bt-cropper/utils/tools.js +25 -25
- package/src/components/dd-area/index.vue +225 -225
- package/src/components/dd-icon/doc.md +21 -21
- package/src/components/dd-icon/index.vue +23 -23
- package/src/components/dd-notice-bar/index.vue +78 -78
- package/src/components/dd-search/doc.md +34 -34
- package/src/components/dd-search/index.vue +168 -168
- package/src/components/dd-selector/index.vue +124 -124
- package/src/components/dd-skeleton/doc.md +19 -19
- package/src/components/dd-skeleton/index.vue +36 -36
- package/src/components/ocr-id/index.vue +114 -114
- package/src/components/ocr-id/types.d.ts +12 -12
- package/src/global.ts +6 -6
- package/src/index.ts +89 -89
- package/src/main.scss +1 -1
- package/src/notice/api/endpoints.ts +17 -17
- package/src/notice/api/index.ts +106 -82
- package/src/notice/components/NoticeBanner.vue +243 -243
- package/src/notice/components/NoticeEntry.vue +99 -99
- package/src/notice/components/NoticeList.vue +315 -315
- package/src/notice/components/NoticePopup.vue +162 -162
- package/src/notice/components/index.ts +5 -5
- package/src/notice/components/useCommonList.ts +86 -86
- package/src/notice/components/useNotice.ts +35 -35
- package/src/notice/index.ts +1 -1
- package/src/notice/types.ts +25 -25
- package/src/payment/api/config.ts +7 -7
- package/src/payment/api/endpoints.ts +103 -103
- package/src/payment/api/index.ts +100 -76
- package/src/payment/components/AmountPicker.vue +93 -93
- package/src/payment/components/RechargeResult.vue +69 -69
- package/src/payment/components/RechargeView.vue +154 -154
- package/src/payment/components/RightsPicker.vue +105 -105
- package/src/payment/components/TradeView.vue +294 -294
- package/src/payment/components/UserAgreement.vue +234 -234
- package/src/payment/components/index.ts +22 -22
- package/src/payment/index.ts +5 -5
- package/src/payment/services/index.ts +16 -16
- package/src/payment/services/invoke-recharge.ts +25 -25
- package/src/payment/services/request-payment.ts +58 -58
- package/src/payment/types.ts +28 -28
- package/src/register/components/SelfRegistration.vue +254 -254
- package/src/register/components/index.ts +2 -2
- package/src/shared/components/AppDrawer.vue +58 -58
- package/src/shared/components/AppVerify.vue +129 -129
- package/src/shared/components/DeviceVersion.vue +68 -68
- package/src/shared/components/EmptyView.vue +33 -33
- package/src/shared/components/OcrBusinessLicense.vue +133 -133
- package/src/shared/components/OcrIcon.vue +133 -133
- package/src/shared/components/PageHeader.vue +79 -79
- package/src/shared/components/index.ts +8 -8
- package/src/shared/composables/index.ts +8 -7
- package/src/shared/composables/useCountdown.ts +46 -46
- package/src/shared/composables/useCrypto.ts +76 -76
- package/src/shared/composables/useDragBox.ts +97 -97
- package/src/shared/composables/useEncode.ts +43 -43
- package/src/shared/composables/useLogger.ts +123 -0
- package/src/shared/composables/useSafeArea.ts +46 -46
- package/src/shared/composables/useTabbar.ts +24 -24
- package/src/shared/composables/useUpload.ts +54 -54
- package/src/shared/composables/useValidator.ts +31 -31
- package/src/shared/http/Http.ts +136 -136
- package/src/shared/http/index.ts +1 -1
- package/src/shared/http/types.ts +157 -157
- package/src/shared/index.ts +3 -3
- package/src/shared/weixin/payment.ts +38 -38
- package/src/styles/fonts.scss +2 -2
- package/src/styles/vars.scss +3 -3
- package/src/user/api/endpoints.ts +17 -17
- package/src/user/api/index.ts +111 -87
- package/src/user/components/LoginSetting.vue +114 -114
- package/src/user/components/UserBinding.vue +307 -307
- package/src/user/components/UserBindingSuccess.vue +80 -80
- package/src/user/components/UserEntry.vue +137 -137
- package/src/user/components/UserFeedback.vue +431 -431
- package/src/user/components/UserFeedbackEntry.vue +192 -192
- package/src/user/components/UserHeadCrop.vue +65 -65
- package/src/user/components/UserInfo.vue +637 -637
- package/src/user/components/UserResourceEmpty.vue +75 -75
- package/src/user/components/index.ts +21 -21
- package/src/user/index.ts +1 -1
- package/tsconfig.json +30 -30
- package/types/global.d.ts +21 -21
- package/types/vue.d.ts +10 -10
- package/dist/assets/asset-3B_CoPto +0 -1
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import '@nutui/nutui-taro/dist/packages/griditem/style/css';
|
|
|
7
7
|
import Taro, { useDidShow, useRouter } from '@tarojs/taro';
|
|
8
8
|
import '@nutui/nutui-taro/dist/packages/popup/style/css';
|
|
9
9
|
import { isIdentityCard, isMobilePhone } from 'validator';
|
|
10
|
-
import { NsForm, NsInput, NsButton, NsIcon, useNutshell } from '@uxda/nutshell/taro';
|
|
10
|
+
import { NsForm, NsInput, NsButton, NsIcon, usePopup, useNutshell } from '@uxda/nutshell/taro';
|
|
11
11
|
import debounce from 'lodash/debounce';
|
|
12
12
|
import '@nutui/nutui-taro/dist/packages/dialog/style/css';
|
|
13
13
|
import '@nutui/nutui-taro/dist/packages/datepicker/style/css';
|
|
@@ -23,8 +23,8 @@ import '@nutui/nutui-taro/dist/packages/skeleton/style/css';
|
|
|
23
23
|
import '@nutui/nutui-taro/dist/packages/steps/style/css';
|
|
24
24
|
import '@nutui/nutui-taro/dist/packages/step/style/css';
|
|
25
25
|
|
|
26
|
-
const _hoisted_1$
|
|
27
|
-
const _hoisted_2$
|
|
26
|
+
const _hoisted_1$B = { class: "token-line number" };
|
|
27
|
+
const _hoisted_2$o = { class: "number" };
|
|
28
28
|
var script$I = /* @__PURE__ */ defineComponent({
|
|
29
29
|
__name: "AmountPicker",
|
|
30
30
|
props: {
|
|
@@ -63,16 +63,16 @@ var script$I = /* @__PURE__ */ defineComponent({
|
|
|
63
63
|
default: withCtx(() => [
|
|
64
64
|
createElementVNode(
|
|
65
65
|
"h4",
|
|
66
|
-
_hoisted_1$
|
|
66
|
+
_hoisted_1$B,
|
|
67
67
|
toDisplayString(amount.token),
|
|
68
68
|
1
|
|
69
69
|
/* TEXT */
|
|
70
70
|
),
|
|
71
71
|
createElementVNode("h5", null, [
|
|
72
|
-
createTextVNode("\xA5"),
|
|
72
|
+
_cache[0] || (_cache[0] = createTextVNode("\xA5")),
|
|
73
73
|
createElementVNode(
|
|
74
74
|
"span",
|
|
75
|
-
_hoisted_2$
|
|
75
|
+
_hoisted_2$o,
|
|
76
76
|
toDisplayString(amount.amount),
|
|
77
77
|
1
|
|
78
78
|
/* TEXT */
|
|
@@ -316,7 +316,114 @@ function useCrypto(config) {
|
|
|
316
316
|
};
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
const
|
|
319
|
+
const globalData = {};
|
|
320
|
+
|
|
321
|
+
const appKitOptions = {
|
|
322
|
+
app: () => "",
|
|
323
|
+
tenant: () => "",
|
|
324
|
+
token: () => "",
|
|
325
|
+
tempToken: () => "",
|
|
326
|
+
baseUrl: () => "",
|
|
327
|
+
401() {
|
|
328
|
+
},
|
|
329
|
+
gray: () => ""
|
|
330
|
+
};
|
|
331
|
+
const useAppKitOptions = () => {
|
|
332
|
+
if (!globalData.$appKitOptions) {
|
|
333
|
+
globalData.$appKitOptions = appKitOptions;
|
|
334
|
+
}
|
|
335
|
+
return globalData.$appKitOptions;
|
|
336
|
+
};
|
|
337
|
+
|
|
338
|
+
const defaultLogOptions = {
|
|
339
|
+
projectName: "ddyk-dev",
|
|
340
|
+
logStore: "ddjf-internet-web",
|
|
341
|
+
topic: "appkit",
|
|
342
|
+
enable: true
|
|
343
|
+
};
|
|
344
|
+
function generateUniqueId(pre) {
|
|
345
|
+
return `${pre ? pre + "-" : ""}${Date.now().toString(16)}-${Math.random().toString(36).substr(2)}`;
|
|
346
|
+
}
|
|
347
|
+
function useLogger(options) {
|
|
348
|
+
const appkitOptions = useAppKitOptions();
|
|
349
|
+
const url = appkitOptions.baseUrl();
|
|
350
|
+
if (url.includes("ytech.ddjf.com")) {
|
|
351
|
+
defaultLogOptions.projectName = "ddyk-prod";
|
|
352
|
+
}
|
|
353
|
+
if (options) {
|
|
354
|
+
options = Object.assign(defaultLogOptions, options);
|
|
355
|
+
} else {
|
|
356
|
+
options = defaultLogOptions;
|
|
357
|
+
}
|
|
358
|
+
const projectName = options.projectName;
|
|
359
|
+
const logStore = options.logStore;
|
|
360
|
+
const topic = options.topic || "";
|
|
361
|
+
const APIVersion = "0.6.0";
|
|
362
|
+
const baseUrl = `https://${projectName}.cn-shenzhen.log.aliyuncs.com/logstores/${logStore}/track?APIVersion=${APIVersion}`;
|
|
363
|
+
const alislsURL = topic ? `${baseUrl}&__topic__=${topic}` : baseUrl;
|
|
364
|
+
const enable = options.enable === void 0 ? true : options.enable;
|
|
365
|
+
const { miniProgram } = Taro.getAccountInfoSync();
|
|
366
|
+
const systemInfo = JSON.stringify({
|
|
367
|
+
...Taro.getSystemInfoSync(),
|
|
368
|
+
appVersion: miniProgram.version
|
|
369
|
+
}) || "\u672A\u77E5";
|
|
370
|
+
function send(params) {
|
|
371
|
+
if (!enable) return;
|
|
372
|
+
params.systemInfo = systemInfo;
|
|
373
|
+
const token = appkitOptions.tempToken() || appkitOptions.token();
|
|
374
|
+
if (token) {
|
|
375
|
+
params.userInfo = token;
|
|
376
|
+
}
|
|
377
|
+
if (params.msg && !params.send) {
|
|
378
|
+
params.send = params.msg;
|
|
379
|
+
}
|
|
380
|
+
if (params.send) {
|
|
381
|
+
params.send = params.send.slice(0, 1024);
|
|
382
|
+
}
|
|
383
|
+
if (params.receive) {
|
|
384
|
+
params.receive = params.receive.slice(0, 1024);
|
|
385
|
+
}
|
|
386
|
+
if (params.duration) {
|
|
387
|
+
params.duration = params.duration;
|
|
388
|
+
}
|
|
389
|
+
const pages = Taro.getCurrentPages();
|
|
390
|
+
const currentPage = pages?.[pages.length - 1];
|
|
391
|
+
const lastPage = pages?.[pages.length - 2];
|
|
392
|
+
params.pages = JSON.stringify({
|
|
393
|
+
current: currentPage?.$taroPath,
|
|
394
|
+
last: lastPage?.$taroPath
|
|
395
|
+
}).slice(0, 1024);
|
|
396
|
+
console.log(params);
|
|
397
|
+
const tmpStr = Object.keys(params).map((key) => `${key}=${encodeURIComponent(params[key])}`).join("&");
|
|
398
|
+
const url2 = `${alislsURL}&${tmpStr}`;
|
|
399
|
+
Taro.request({ url: url2 });
|
|
400
|
+
}
|
|
401
|
+
function info(params) {
|
|
402
|
+
if (!enable) return;
|
|
403
|
+
send({
|
|
404
|
+
send: params.send ?? "",
|
|
405
|
+
receive: params.receive ?? "",
|
|
406
|
+
duration: params.duration ?? "",
|
|
407
|
+
traceId: params.traceId,
|
|
408
|
+
level: "info"
|
|
409
|
+
});
|
|
410
|
+
}
|
|
411
|
+
function error(params) {
|
|
412
|
+
if (!enable) return;
|
|
413
|
+
send({
|
|
414
|
+
send: params.send ?? "",
|
|
415
|
+
receive: params.receive ?? "",
|
|
416
|
+
traceId: params.traceId,
|
|
417
|
+
level: "error"
|
|
418
|
+
});
|
|
419
|
+
}
|
|
420
|
+
return {
|
|
421
|
+
info,
|
|
422
|
+
error
|
|
423
|
+
};
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
const _hoisted_1$A = {
|
|
320
427
|
key: 0,
|
|
321
428
|
class: "page-title"
|
|
322
429
|
};
|
|
@@ -350,7 +457,7 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
350
457
|
[
|
|
351
458
|
_ctx.title ? (openBlock(), createElementBlock(
|
|
352
459
|
"h1",
|
|
353
|
-
_hoisted_1$
|
|
460
|
+
_hoisted_1$A,
|
|
354
461
|
toDisplayString(_ctx.title),
|
|
355
462
|
1
|
|
356
463
|
/* TEXT */
|
|
@@ -370,7 +477,7 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
370
477
|
|
|
371
478
|
script$H.__file = "src/shared/components/PageHeader.vue";
|
|
372
479
|
|
|
373
|
-
const _hoisted_1$
|
|
480
|
+
const _hoisted_1$z = { class: "drawer-body" };
|
|
374
481
|
var script$G = /* @__PURE__ */ defineComponent({
|
|
375
482
|
__name: "AppDrawer",
|
|
376
483
|
props: {
|
|
@@ -399,7 +506,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
399
506
|
title: _ctx.title,
|
|
400
507
|
onClose: onPageHeaderClose
|
|
401
508
|
}, null, 8, ["title"]),
|
|
402
|
-
createElementVNode("div", _hoisted_1$
|
|
509
|
+
createElementVNode("div", _hoisted_1$z, [
|
|
403
510
|
renderSlot(_ctx.$slots, "default")
|
|
404
511
|
])
|
|
405
512
|
]),
|
|
@@ -412,15 +519,15 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
412
519
|
|
|
413
520
|
script$G.__file = "src/shared/components/AppDrawer.vue";
|
|
414
521
|
|
|
415
|
-
const _hoisted_1$
|
|
416
|
-
const _hoisted_2$
|
|
417
|
-
const _hoisted_3$
|
|
418
|
-
const _hoisted_4$
|
|
419
|
-
const _hoisted_5$
|
|
522
|
+
const _hoisted_1$y = { class: "app-verify column" };
|
|
523
|
+
const _hoisted_2$n = { class: "caption" };
|
|
524
|
+
const _hoisted_3$i = { class: "number" };
|
|
525
|
+
const _hoisted_4$e = { class: "form-btn" };
|
|
526
|
+
const _hoisted_5$a = {
|
|
420
527
|
key: 1,
|
|
421
528
|
class: "caption"
|
|
422
529
|
};
|
|
423
|
-
const _hoisted_6$
|
|
530
|
+
const _hoisted_6$5 = { class: "row buttons" };
|
|
424
531
|
var script$F = /* @__PURE__ */ defineComponent({
|
|
425
532
|
__name: "AppVerify",
|
|
426
533
|
props: {
|
|
@@ -453,7 +560,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
453
560
|
};
|
|
454
561
|
const props = __props;
|
|
455
562
|
return (_ctx, _cache) => {
|
|
456
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
563
|
+
return openBlock(), createElementBlock("div", _hoisted_1$y, [
|
|
457
564
|
createElementVNode(
|
|
458
565
|
"h2",
|
|
459
566
|
null,
|
|
@@ -463,14 +570,14 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
463
570
|
),
|
|
464
571
|
createElementVNode(
|
|
465
572
|
"p",
|
|
466
|
-
_hoisted_2$
|
|
573
|
+
_hoisted_2$n,
|
|
467
574
|
toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
|
|
468
575
|
1
|
|
469
576
|
/* TEXT */
|
|
470
577
|
),
|
|
471
578
|
createElementVNode(
|
|
472
579
|
"p",
|
|
473
|
-
_hoisted_3$
|
|
580
|
+
_hoisted_3$i,
|
|
474
581
|
toDisplayString(_ctx.phone),
|
|
475
582
|
1
|
|
476
583
|
/* TEXT */
|
|
@@ -495,7 +602,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
495
602
|
method: (value) => value.length === 6
|
|
496
603
|
}]
|
|
497
604
|
}, null, 8, ["modelValue", "rules"]),
|
|
498
|
-
createElementVNode("div", _hoisted_4$
|
|
605
|
+
createElementVNode("div", _hoisted_4$e, [
|
|
499
606
|
!sent.value ? (openBlock(), createBlock(unref(NsButton), {
|
|
500
607
|
key: 0,
|
|
501
608
|
size: "xs",
|
|
@@ -506,7 +613,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
506
613
|
})) : createCommentVNode("v-if", true),
|
|
507
614
|
sent.value ? (openBlock(), createElementBlock(
|
|
508
615
|
"div",
|
|
509
|
-
_hoisted_5$
|
|
616
|
+
_hoisted_5$a,
|
|
510
617
|
toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
|
|
511
618
|
1
|
|
512
619
|
/* TEXT */
|
|
@@ -516,15 +623,15 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
516
623
|
_: 1
|
|
517
624
|
/* STABLE */
|
|
518
625
|
}, 8, ["modelValue"]),
|
|
519
|
-
createElementVNode("div", _hoisted_6$
|
|
626
|
+
createElementVNode("div", _hoisted_6$5, [
|
|
520
627
|
createVNode(unref(NsButton), {
|
|
521
628
|
class: "cancel-btn",
|
|
522
629
|
round: "",
|
|
523
630
|
onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
|
|
524
631
|
}, {
|
|
525
|
-
default: withCtx(() => [
|
|
632
|
+
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
526
633
|
createTextVNode("\u53D6\u6D88")
|
|
527
|
-
]),
|
|
634
|
+
])),
|
|
528
635
|
_: 1
|
|
529
636
|
/* STABLE */
|
|
530
637
|
}),
|
|
@@ -533,9 +640,9 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
533
640
|
gradient: "#FFEBC1,#FFD7A7,#FFB875/90",
|
|
534
641
|
onClick: onOk
|
|
535
642
|
}, {
|
|
536
|
-
default: withCtx(() => [
|
|
643
|
+
default: withCtx(() => _cache[4] || (_cache[4] = [
|
|
537
644
|
createTextVNode("\u786E\u8BA4")
|
|
538
|
-
]),
|
|
645
|
+
])),
|
|
539
646
|
_: 1
|
|
540
647
|
/* STABLE */
|
|
541
648
|
})
|
|
@@ -547,20 +654,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
547
654
|
|
|
548
655
|
script$F.__file = "src/shared/components/AppVerify.vue";
|
|
549
656
|
|
|
550
|
-
const _hoisted_1$
|
|
551
|
-
const _hoisted_2$w = /* @__PURE__ */ createElementVNode(
|
|
552
|
-
"img",
|
|
553
|
-
{
|
|
554
|
-
src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
|
|
555
|
-
class: "dd-notice-bar__close-img"
|
|
556
|
-
},
|
|
557
|
-
null,
|
|
558
|
-
-1
|
|
559
|
-
/* HOISTED */
|
|
560
|
-
);
|
|
561
|
-
const _hoisted_3$r = [
|
|
562
|
-
_hoisted_2$w
|
|
563
|
-
];
|
|
657
|
+
const _hoisted_1$x = { key: 0 };
|
|
564
658
|
var script$E = /* @__PURE__ */ defineComponent({
|
|
565
659
|
__name: "index",
|
|
566
660
|
props: {
|
|
@@ -592,7 +686,7 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
592
686
|
}, [
|
|
593
687
|
_ctx.text ? (openBlock(), createElementBlock(
|
|
594
688
|
"span",
|
|
595
|
-
_hoisted_1$
|
|
689
|
+
_hoisted_1$x,
|
|
596
690
|
toDisplayString(_ctx.text),
|
|
597
691
|
1
|
|
598
692
|
/* TEXT */
|
|
@@ -603,7 +697,18 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
603
697
|
key: 0,
|
|
604
698
|
class: "dd-notice-bar__close",
|
|
605
699
|
onClick: close
|
|
606
|
-
}, [
|
|
700
|
+
}, _cache[0] || (_cache[0] = [
|
|
701
|
+
createElementVNode(
|
|
702
|
+
"img",
|
|
703
|
+
{
|
|
704
|
+
src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
|
|
705
|
+
class: "dd-notice-bar__close-img"
|
|
706
|
+
},
|
|
707
|
+
null,
|
|
708
|
+
-1
|
|
709
|
+
/* HOISTED */
|
|
710
|
+
)
|
|
711
|
+
]))) : createCommentVNode("v-if", true)
|
|
607
712
|
],
|
|
608
713
|
6
|
|
609
714
|
/* CLASS, STYLE */
|
|
@@ -716,38 +821,39 @@ const transforms$3 = Object.fromEntries(
|
|
|
716
821
|
Object.entries(endpointsList$3).map(([, def]) => [def.path, def.transform])
|
|
717
822
|
);
|
|
718
823
|
|
|
719
|
-
const
|
|
720
|
-
|
|
721
|
-
const appKitOptions = {
|
|
722
|
-
app: () => "",
|
|
723
|
-
tenant: () => "",
|
|
724
|
-
token: () => "",
|
|
725
|
-
tempToken: () => "",
|
|
726
|
-
baseUrl: () => "",
|
|
727
|
-
401() {
|
|
728
|
-
},
|
|
729
|
-
gray: () => ""
|
|
730
|
-
};
|
|
731
|
-
const useAppKitOptions = () => {
|
|
732
|
-
if (!globalData.$appKitOptions) {
|
|
733
|
-
globalData.$appKitOptions = appKitOptions;
|
|
734
|
-
}
|
|
735
|
-
return globalData.$appKitOptions;
|
|
736
|
-
};
|
|
737
|
-
|
|
824
|
+
const logger$3 = useLogger();
|
|
738
825
|
const vendor$3 = {
|
|
739
826
|
async request(config) {
|
|
740
827
|
return new Promise((resolve, reject) => {
|
|
828
|
+
const header = {
|
|
829
|
+
...config.headers,
|
|
830
|
+
traceId: generateUniqueId("appkit")
|
|
831
|
+
};
|
|
832
|
+
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
741
833
|
Taro.request({
|
|
742
834
|
url: config.url,
|
|
743
835
|
method: config.method,
|
|
744
|
-
header
|
|
836
|
+
header,
|
|
745
837
|
data: config.data
|
|
746
838
|
}).then(({ data }) => {
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
839
|
+
if (data.success) {
|
|
840
|
+
resolve({
|
|
841
|
+
status: +data.code,
|
|
842
|
+
message: data.msg,
|
|
843
|
+
data: data.result
|
|
844
|
+
});
|
|
845
|
+
} else if (data.code !== "401") {
|
|
846
|
+
Taro.showToast({
|
|
847
|
+
title: data.msg,
|
|
848
|
+
icon: "none"
|
|
849
|
+
});
|
|
850
|
+
}
|
|
851
|
+
const endTime = (/* @__PURE__ */ new Date()).getTime();
|
|
852
|
+
logger$3.info({
|
|
853
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
854
|
+
receive: JSON.stringify(data),
|
|
855
|
+
traceId: header.traceId,
|
|
856
|
+
duration: endTime - startTime
|
|
751
857
|
});
|
|
752
858
|
}).catch((e) => {
|
|
753
859
|
reject(e);
|
|
@@ -1246,19 +1352,39 @@ const transforms$2 = Object.fromEntries(
|
|
|
1246
1352
|
Object.entries(endpointsList$2).map(([, def]) => [def.path, def.transform])
|
|
1247
1353
|
);
|
|
1248
1354
|
|
|
1355
|
+
const logger$2 = useLogger();
|
|
1249
1356
|
const vendor$2 = {
|
|
1250
1357
|
async request(config) {
|
|
1251
1358
|
return new Promise((resolve, reject) => {
|
|
1359
|
+
const header = {
|
|
1360
|
+
...config.headers,
|
|
1361
|
+
traceId: generateUniqueId("appkit")
|
|
1362
|
+
};
|
|
1363
|
+
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
1252
1364
|
Taro.request({
|
|
1253
1365
|
url: config.url,
|
|
1254
1366
|
method: config.method,
|
|
1255
|
-
header
|
|
1367
|
+
header,
|
|
1256
1368
|
data: config.data
|
|
1257
1369
|
}).then(({ data }) => {
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1370
|
+
if (data.success) {
|
|
1371
|
+
resolve({
|
|
1372
|
+
status: +data.code,
|
|
1373
|
+
message: data.msg,
|
|
1374
|
+
data: data.result
|
|
1375
|
+
});
|
|
1376
|
+
} else if (data.code !== "401") {
|
|
1377
|
+
Taro.showToast({
|
|
1378
|
+
title: data.msg,
|
|
1379
|
+
icon: "none"
|
|
1380
|
+
});
|
|
1381
|
+
}
|
|
1382
|
+
const endTime = (/* @__PURE__ */ new Date()).getTime();
|
|
1383
|
+
logger$2.info({
|
|
1384
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
1385
|
+
receive: JSON.stringify(data),
|
|
1386
|
+
traceId: header.traceId,
|
|
1387
|
+
duration: endTime - startTime
|
|
1262
1388
|
});
|
|
1263
1389
|
}).catch((e) => {
|
|
1264
1390
|
reject(e);
|
|
@@ -1372,10 +1498,10 @@ const services$1 = [
|
|
|
1372
1498
|
invokeRecharge$1
|
|
1373
1499
|
];
|
|
1374
1500
|
|
|
1375
|
-
const _hoisted_1$
|
|
1376
|
-
const _hoisted_2$
|
|
1377
|
-
const _hoisted_3$
|
|
1378
|
-
const _hoisted_4$
|
|
1501
|
+
const _hoisted_1$w = { class: "view recharge-view" };
|
|
1502
|
+
const _hoisted_2$m = { class: "flex-grow" };
|
|
1503
|
+
const _hoisted_3$h = { class: "amount-footer" };
|
|
1504
|
+
const _hoisted_4$d = { class: "agreement" };
|
|
1379
1505
|
var script$A = /* @__PURE__ */ defineComponent({
|
|
1380
1506
|
__name: "RechargeView",
|
|
1381
1507
|
props: {
|
|
@@ -1440,22 +1566,22 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1440
1566
|
return (_ctx, _cache) => {
|
|
1441
1567
|
const _component_nut_checkbox = Checkbox;
|
|
1442
1568
|
const _component_nut_button = Button;
|
|
1443
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1444
|
-
createElementVNode("view", _hoisted_2$
|
|
1569
|
+
return openBlock(), createElementBlock("view", _hoisted_1$w, [
|
|
1570
|
+
createElementVNode("view", _hoisted_2$m, [
|
|
1445
1571
|
createVNode(script$I, {
|
|
1446
1572
|
items: amounts.value,
|
|
1447
1573
|
selected: state.selected,
|
|
1448
1574
|
onChange: onAmountSelect
|
|
1449
1575
|
}, null, 8, ["items", "selected"])
|
|
1450
1576
|
]),
|
|
1451
|
-
createElementVNode("view", _hoisted_3$
|
|
1452
|
-
createElementVNode("view", _hoisted_4$
|
|
1577
|
+
createElementVNode("view", _hoisted_3$h, [
|
|
1578
|
+
createElementVNode("view", _hoisted_4$d, [
|
|
1453
1579
|
createVNode(_component_nut_checkbox, {
|
|
1454
1580
|
modelValue: state.agreed,
|
|
1455
1581
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
|
|
1456
1582
|
}, {
|
|
1457
1583
|
default: withCtx(() => [
|
|
1458
|
-
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1584
|
+
_cache[1] || (_cache[1] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
|
|
1459
1585
|
createElementVNode("a", {
|
|
1460
1586
|
class: "link inline",
|
|
1461
1587
|
onClick: onAgreementLinkClick
|
|
@@ -1472,9 +1598,9 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1472
1598
|
onClick: onPayClick,
|
|
1473
1599
|
class: "recharge-button"
|
|
1474
1600
|
}, {
|
|
1475
|
-
default: withCtx(() => [
|
|
1601
|
+
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
1476
1602
|
createTextVNode("\u7ACB\u5373\u5145\u503C")
|
|
1477
|
-
]),
|
|
1603
|
+
])),
|
|
1478
1604
|
_: 1
|
|
1479
1605
|
/* STABLE */
|
|
1480
1606
|
}, 8, ["loading"])
|
|
@@ -1486,13 +1612,11 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1486
1612
|
|
|
1487
1613
|
script$A.__file = "src/payment/components/RechargeView.vue";
|
|
1488
1614
|
|
|
1489
|
-
const _hoisted_1$
|
|
1490
|
-
const _hoisted_2$u = /* @__PURE__ */ createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96);
|
|
1491
|
-
const _hoisted_98 = [
|
|
1492
|
-
_hoisted_2$u
|
|
1493
|
-
];
|
|
1615
|
+
const _hoisted_1$v = { class: "agreement-doc" };
|
|
1494
1616
|
function render$2(_ctx, _cache) {
|
|
1495
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1617
|
+
return openBlock(), createElementBlock("view", _hoisted_1$v, _cache[0] || (_cache[0] = [
|
|
1618
|
+
createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96)
|
|
1619
|
+
]));
|
|
1496
1620
|
}
|
|
1497
1621
|
|
|
1498
1622
|
/* unplugin-vue-components disabled */const script$z = {};
|
|
@@ -1500,20 +1624,13 @@ function render$2(_ctx, _cache) {
|
|
|
1500
1624
|
script$z.render = render$2;
|
|
1501
1625
|
script$z.__file = "src/payment/components/UserAgreement.vue";
|
|
1502
1626
|
|
|
1503
|
-
const _hoisted_1$
|
|
1504
|
-
const _hoisted_2$
|
|
1505
|
-
const _hoisted_3$
|
|
1506
|
-
"div",
|
|
1507
|
-
{ class: "figure" },
|
|
1508
|
-
null,
|
|
1509
|
-
-1
|
|
1510
|
-
/* HOISTED */
|
|
1511
|
-
);
|
|
1512
|
-
const _hoisted_4$j = {
|
|
1627
|
+
const _hoisted_1$u = { class: "recharge-result" };
|
|
1628
|
+
const _hoisted_2$l = { class: "content" };
|
|
1629
|
+
const _hoisted_3$g = {
|
|
1513
1630
|
key: 0,
|
|
1514
1631
|
class: "caption"
|
|
1515
1632
|
};
|
|
1516
|
-
const
|
|
1633
|
+
const _hoisted_4$c = {
|
|
1517
1634
|
key: 1,
|
|
1518
1635
|
class: "caption"
|
|
1519
1636
|
};
|
|
@@ -1535,9 +1652,15 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1535
1652
|
}
|
|
1536
1653
|
return (_ctx, _cache) => {
|
|
1537
1654
|
const _component_nut_button = Button;
|
|
1538
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1539
|
-
createElementVNode("div", _hoisted_2$
|
|
1540
|
-
|
|
1655
|
+
return openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
1656
|
+
createElementVNode("div", _hoisted_2$l, [
|
|
1657
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
1658
|
+
"div",
|
|
1659
|
+
{ class: "figure" },
|
|
1660
|
+
null,
|
|
1661
|
+
-1
|
|
1662
|
+
/* HOISTED */
|
|
1663
|
+
)),
|
|
1541
1664
|
createElementVNode(
|
|
1542
1665
|
"h2",
|
|
1543
1666
|
null,
|
|
@@ -1545,9 +1668,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1545
1668
|
1
|
|
1546
1669
|
/* TEXT */
|
|
1547
1670
|
),
|
|
1548
|
-
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div",
|
|
1671
|
+
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$g, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
|
|
1549
1672
|
"div",
|
|
1550
|
-
|
|
1673
|
+
_hoisted_4$c,
|
|
1551
1674
|
toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
|
|
1552
1675
|
1
|
|
1553
1676
|
/* TEXT */
|
|
@@ -1557,9 +1680,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1557
1680
|
type: "default",
|
|
1558
1681
|
onClick: onBackClick
|
|
1559
1682
|
}, {
|
|
1560
|
-
default: withCtx(() => [
|
|
1683
|
+
default: withCtx(() => _cache[0] || (_cache[0] = [
|
|
1561
1684
|
createTextVNode("\u8FD4\u56DE")
|
|
1562
|
-
]),
|
|
1685
|
+
])),
|
|
1563
1686
|
_: 1
|
|
1564
1687
|
/* STABLE */
|
|
1565
1688
|
})
|
|
@@ -1571,9 +1694,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1571
1694
|
|
|
1572
1695
|
script$y.__file = "src/payment/components/RechargeResult.vue";
|
|
1573
1696
|
|
|
1574
|
-
const _hoisted_1$
|
|
1575
|
-
const _hoisted_2$
|
|
1576
|
-
const _hoisted_3$
|
|
1697
|
+
const _hoisted_1$t = { class: "tag" };
|
|
1698
|
+
const _hoisted_2$k = { class: "token-line number" };
|
|
1699
|
+
const _hoisted_3$f = { class: "number" };
|
|
1577
1700
|
var script$x = /* @__PURE__ */ defineComponent({
|
|
1578
1701
|
__name: "RightsPicker",
|
|
1579
1702
|
props: {
|
|
@@ -1612,23 +1735,23 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1612
1735
|
default: withCtx(() => [
|
|
1613
1736
|
createElementVNode(
|
|
1614
1737
|
"div",
|
|
1615
|
-
_hoisted_1$
|
|
1738
|
+
_hoisted_1$t,
|
|
1616
1739
|
toDisplayString(amount.paymentDesc),
|
|
1617
1740
|
1
|
|
1618
1741
|
/* TEXT */
|
|
1619
1742
|
),
|
|
1620
1743
|
createElementVNode(
|
|
1621
1744
|
"h4",
|
|
1622
|
-
_hoisted_2$
|
|
1745
|
+
_hoisted_2$k,
|
|
1623
1746
|
toDisplayString(amount.priceRightNum) + "\u7B14",
|
|
1624
1747
|
1
|
|
1625
1748
|
/* TEXT */
|
|
1626
1749
|
),
|
|
1627
1750
|
createElementVNode("h5", null, [
|
|
1628
|
-
createTextVNode("\xA5"),
|
|
1751
|
+
_cache[0] || (_cache[0] = createTextVNode("\xA5")),
|
|
1629
1752
|
createElementVNode(
|
|
1630
1753
|
"span",
|
|
1631
|
-
_hoisted_3$
|
|
1754
|
+
_hoisted_3$f,
|
|
1632
1755
|
toDisplayString(amount.paymentAmount),
|
|
1633
1756
|
1
|
|
1634
1757
|
/* TEXT */
|
|
@@ -1652,48 +1775,34 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1652
1775
|
|
|
1653
1776
|
script$x.__file = "src/payment/components/RightsPicker.vue";
|
|
1654
1777
|
|
|
1655
|
-
const _hoisted_1$
|
|
1656
|
-
const _hoisted_2$
|
|
1657
|
-
const _hoisted_3$
|
|
1778
|
+
const _hoisted_1$s = { class: "view recharge-view2" };
|
|
1779
|
+
const _hoisted_2$j = { class: "flex-grow" };
|
|
1780
|
+
const _hoisted_3$e = {
|
|
1658
1781
|
key: 0,
|
|
1659
1782
|
class: "bean-buy"
|
|
1660
1783
|
};
|
|
1661
|
-
const _hoisted_4$
|
|
1662
|
-
const _hoisted_5$
|
|
1663
|
-
"div",
|
|
1664
|
-
{ class: "title" },
|
|
1665
|
-
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1666
|
-
-1
|
|
1667
|
-
/* HOISTED */
|
|
1668
|
-
);
|
|
1669
|
-
const _hoisted_6$b = {
|
|
1784
|
+
const _hoisted_4$b = { class: "left" };
|
|
1785
|
+
const _hoisted_5$9 = {
|
|
1670
1786
|
key: 0,
|
|
1671
1787
|
class: "amount"
|
|
1672
1788
|
};
|
|
1673
|
-
const
|
|
1789
|
+
const _hoisted_6$4 = {
|
|
1674
1790
|
key: 1,
|
|
1675
1791
|
class: "amount"
|
|
1676
1792
|
};
|
|
1677
|
-
const
|
|
1678
|
-
const
|
|
1679
|
-
const
|
|
1680
|
-
const
|
|
1793
|
+
const _hoisted_7$4 = { class: "amount" };
|
|
1794
|
+
const _hoisted_8$4 = ["src"];
|
|
1795
|
+
const _hoisted_9$3 = { class: "amount-footer" };
|
|
1796
|
+
const _hoisted_10$2 = {
|
|
1681
1797
|
key: 0,
|
|
1682
1798
|
class: "agreement"
|
|
1683
1799
|
};
|
|
1684
|
-
const
|
|
1685
|
-
const
|
|
1686
|
-
const
|
|
1687
|
-
const
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
"\uFFE5",
|
|
1691
|
-
-1
|
|
1692
|
-
/* HOISTED */
|
|
1693
|
-
);
|
|
1694
|
-
const _hoisted_16$3 = { class: "item" };
|
|
1695
|
-
const _hoisted_17$2 = { class: "item" };
|
|
1696
|
-
const _hoisted_18$2 = { class: "item" };
|
|
1800
|
+
const _hoisted_11$2 = { class: "buy-amount" };
|
|
1801
|
+
const _hoisted_12$2 = { class: "left" };
|
|
1802
|
+
const _hoisted_13$2 = { class: "amount" };
|
|
1803
|
+
const _hoisted_14$2 = { class: "item" };
|
|
1804
|
+
const _hoisted_15$2 = { class: "item" };
|
|
1805
|
+
const _hoisted_16$2 = { class: "item" };
|
|
1697
1806
|
var script$w = /* @__PURE__ */ defineComponent({
|
|
1698
1807
|
__name: "TradeView",
|
|
1699
1808
|
props: {
|
|
@@ -1783,25 +1892,31 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1783
1892
|
const _component_nut_checkbox = Checkbox;
|
|
1784
1893
|
const _component_nut_button = Button;
|
|
1785
1894
|
const _component_nut_dialog = Dialog;
|
|
1786
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1787
|
-
createElementVNode("view", _hoisted_2$
|
|
1895
|
+
return openBlock(), createElementBlock("view", _hoisted_1$s, [
|
|
1896
|
+
createElementVNode("view", _hoisted_2$j, [
|
|
1788
1897
|
createVNode(script$x, {
|
|
1789
1898
|
items: amounts.value,
|
|
1790
1899
|
selected: state.selected,
|
|
1791
1900
|
onChange: onAmountSelect
|
|
1792
1901
|
}, null, 8, ["items", "selected"]),
|
|
1793
|
-
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
1794
|
-
createElementVNode("div", _hoisted_4$
|
|
1795
|
-
|
|
1902
|
+
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$e, [
|
|
1903
|
+
createElementVNode("div", _hoisted_4$b, [
|
|
1904
|
+
_cache[4] || (_cache[4] = createElementVNode(
|
|
1905
|
+
"div",
|
|
1906
|
+
{ class: "title" },
|
|
1907
|
+
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1908
|
+
-1
|
|
1909
|
+
/* HOISTED */
|
|
1910
|
+
)),
|
|
1796
1911
|
!selectBean.value ? (openBlock(), createElementBlock(
|
|
1797
1912
|
"div",
|
|
1798
|
-
|
|
1913
|
+
_hoisted_5$9,
|
|
1799
1914
|
"\u4F59\u989D " + toDisplayString(balance.value),
|
|
1800
1915
|
1
|
|
1801
1916
|
/* TEXT */
|
|
1802
1917
|
)) : (openBlock(), createElementBlock(
|
|
1803
1918
|
"div",
|
|
1804
|
-
|
|
1919
|
+
_hoisted_6$4,
|
|
1805
1920
|
"\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1806
1921
|
1
|
|
1807
1922
|
/* TEXT */
|
|
@@ -1814,7 +1929,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1814
1929
|
}, [
|
|
1815
1930
|
createElementVNode(
|
|
1816
1931
|
"div",
|
|
1817
|
-
|
|
1932
|
+
_hoisted_7$4,
|
|
1818
1933
|
"-" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1819
1934
|
1
|
|
1820
1935
|
/* TEXT */
|
|
@@ -1822,18 +1937,18 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1822
1937
|
createElementVNode("img", {
|
|
1823
1938
|
class: "icon",
|
|
1824
1939
|
src: selectBean.value ? "https://cdn.ddjf.com/static/images/appkit/select.svg" : "https://cdn.ddjf.com/static/images/appkit/not-select.svg"
|
|
1825
|
-
}, null, 8,
|
|
1940
|
+
}, null, 8, _hoisted_8$4)
|
|
1826
1941
|
])) : createCommentVNode("v-if", true)
|
|
1827
1942
|
])) : createCommentVNode("v-if", true)
|
|
1828
1943
|
]),
|
|
1829
|
-
createElementVNode("view",
|
|
1830
|
-
!selectBean.value ? (openBlock(), createElementBlock("view",
|
|
1944
|
+
createElementVNode("view", _hoisted_9$3, [
|
|
1945
|
+
!selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_10$2, [
|
|
1831
1946
|
createVNode(_component_nut_checkbox, {
|
|
1832
1947
|
modelValue: state.agreed,
|
|
1833
1948
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
|
|
1834
1949
|
}, {
|
|
1835
1950
|
default: withCtx(() => [
|
|
1836
|
-
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1951
|
+
_cache[5] || (_cache[5] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
|
|
1837
1952
|
createElementVNode("a", {
|
|
1838
1953
|
class: "link inline",
|
|
1839
1954
|
onClick: onAgreementLinkClick
|
|
@@ -1843,11 +1958,17 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1843
1958
|
/* STABLE */
|
|
1844
1959
|
}, 8, ["modelValue"])
|
|
1845
1960
|
])) : createCommentVNode("v-if", true),
|
|
1846
|
-
createElementVNode("div",
|
|
1847
|
-
createElementVNode("div",
|
|
1848
|
-
createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
|
|
1849
|
-
createElementVNode("span",
|
|
1850
|
-
|
|
1961
|
+
createElementVNode("div", _hoisted_11$2, [
|
|
1962
|
+
createElementVNode("div", _hoisted_12$2, [
|
|
1963
|
+
_cache[7] || (_cache[7] = createTextVNode(" \u5F85\u652F\u4ED8\uFF1A ")),
|
|
1964
|
+
createElementVNode("span", _hoisted_13$2, [
|
|
1965
|
+
_cache[6] || (_cache[6] = createElementVNode(
|
|
1966
|
+
"i",
|
|
1967
|
+
null,
|
|
1968
|
+
"\uFFE5",
|
|
1969
|
+
-1
|
|
1970
|
+
/* HOISTED */
|
|
1971
|
+
)),
|
|
1851
1972
|
createTextVNode(
|
|
1852
1973
|
toDisplayString(currentAmount.value),
|
|
1853
1974
|
1
|
|
@@ -1862,9 +1983,9 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1862
1983
|
onClick: onPayClick,
|
|
1863
1984
|
class: "recharge-button"
|
|
1864
1985
|
}, {
|
|
1865
|
-
default: withCtx(() => [
|
|
1986
|
+
default: withCtx(() => _cache[8] || (_cache[8] = [
|
|
1866
1987
|
createTextVNode("\u8D2D\u4E70")
|
|
1867
|
-
]),
|
|
1988
|
+
])),
|
|
1868
1989
|
_: 1
|
|
1869
1990
|
/* STABLE */
|
|
1870
1991
|
}, 8, ["loading"])
|
|
@@ -1885,21 +2006,21 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1885
2006
|
[
|
|
1886
2007
|
createElementVNode(
|
|
1887
2008
|
"div",
|
|
1888
|
-
|
|
2009
|
+
_hoisted_14$2,
|
|
1889
2010
|
"\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1890
2011
|
1
|
|
1891
2012
|
/* TEXT */
|
|
1892
2013
|
),
|
|
1893
2014
|
createElementVNode(
|
|
1894
2015
|
"div",
|
|
1895
|
-
|
|
2016
|
+
_hoisted_15$2,
|
|
1896
2017
|
"\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
|
|
1897
2018
|
1
|
|
1898
2019
|
/* TEXT */
|
|
1899
2020
|
),
|
|
1900
2021
|
createElementVNode(
|
|
1901
2022
|
"div",
|
|
1902
|
-
|
|
2023
|
+
_hoisted_16$2,
|
|
1903
2024
|
"\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1904
2025
|
1
|
|
1905
2026
|
/* TEXT */
|
|
@@ -1927,84 +2048,11 @@ const components = {
|
|
|
1927
2048
|
TradeView: script$w
|
|
1928
2049
|
};
|
|
1929
2050
|
|
|
1930
|
-
const _hoisted_1$
|
|
1931
|
-
const _hoisted_2$
|
|
1932
|
-
const _hoisted_3$
|
|
1933
|
-
const _hoisted_4$
|
|
1934
|
-
const _hoisted_5$
|
|
1935
|
-
"div",
|
|
1936
|
-
{ class: "bean-box" },
|
|
1937
|
-
[
|
|
1938
|
-
/* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
|
|
1939
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
1940
|
-
class: "bean-icon",
|
|
1941
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
1942
|
-
})
|
|
1943
|
-
]),
|
|
1944
|
-
/* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
1945
|
-
],
|
|
1946
|
-
-1
|
|
1947
|
-
/* HOISTED */
|
|
1948
|
-
);
|
|
1949
|
-
const _hoisted_6$a = { class: "bean-nums number" };
|
|
1950
|
-
const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
|
|
1951
|
-
"div",
|
|
1952
|
-
{ class: "account-info-name" },
|
|
1953
|
-
"\u8D26\u6237\u660E\u7EC6",
|
|
1954
|
-
-1
|
|
1955
|
-
/* HOISTED */
|
|
1956
|
-
);
|
|
1957
|
-
const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
|
|
1958
|
-
"div",
|
|
1959
|
-
{ class: "account-info-icon" },
|
|
1960
|
-
[
|
|
1961
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
1962
|
-
class: "icon",
|
|
1963
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
1964
|
-
})
|
|
1965
|
-
],
|
|
1966
|
-
-1
|
|
1967
|
-
/* HOISTED */
|
|
1968
|
-
);
|
|
1969
|
-
const _hoisted_9$4 = [
|
|
1970
|
-
_hoisted_7$8,
|
|
1971
|
-
_hoisted_8$4
|
|
1972
|
-
];
|
|
1973
|
-
const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
|
|
1974
|
-
"div",
|
|
1975
|
-
{ class: "line" },
|
|
1976
|
-
null,
|
|
1977
|
-
-1
|
|
1978
|
-
/* HOISTED */
|
|
1979
|
-
);
|
|
1980
|
-
const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
|
|
1981
|
-
"div",
|
|
1982
|
-
{ class: "card-row-left desc" },
|
|
1983
|
-
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
1984
|
-
-1
|
|
1985
|
-
/* HOISTED */
|
|
1986
|
-
);
|
|
1987
|
-
const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
|
|
1988
|
-
"div",
|
|
1989
|
-
null,
|
|
1990
|
-
"\u5145\u503C",
|
|
1991
|
-
-1
|
|
1992
|
-
/* HOISTED */
|
|
1993
|
-
);
|
|
1994
|
-
const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
|
|
1995
|
-
"img",
|
|
1996
|
-
{
|
|
1997
|
-
class: "pay-icon",
|
|
1998
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
1999
|
-
},
|
|
2000
|
-
null,
|
|
2001
|
-
-1
|
|
2002
|
-
/* HOISTED */
|
|
2003
|
-
);
|
|
2004
|
-
const _hoisted_14$3 = [
|
|
2005
|
-
_hoisted_12$4,
|
|
2006
|
-
_hoisted_13$4
|
|
2007
|
-
];
|
|
2051
|
+
const _hoisted_1$r = { class: "account-card" };
|
|
2052
|
+
const _hoisted_2$i = { class: "card" };
|
|
2053
|
+
const _hoisted_3$d = { class: "card-row" };
|
|
2054
|
+
const _hoisted_4$a = { class: "card-row-left" };
|
|
2055
|
+
const _hoisted_5$8 = { class: "bean-nums number" };
|
|
2008
2056
|
var script$v = /* @__PURE__ */ defineComponent({
|
|
2009
2057
|
__name: "BalanceCard",
|
|
2010
2058
|
props: {
|
|
@@ -2048,14 +2096,28 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2048
2096
|
reload: loadBalance
|
|
2049
2097
|
});
|
|
2050
2098
|
return (_ctx, _cache) => {
|
|
2051
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2052
|
-
createElementVNode("div", _hoisted_2$
|
|
2053
|
-
createElementVNode("div", _hoisted_3$
|
|
2054
|
-
createElementVNode("div", _hoisted_4$
|
|
2055
|
-
|
|
2099
|
+
return openBlock(), createElementBlock("div", _hoisted_1$r, [
|
|
2100
|
+
createElementVNode("div", _hoisted_2$i, [
|
|
2101
|
+
createElementVNode("div", _hoisted_3$d, [
|
|
2102
|
+
createElementVNode("div", _hoisted_4$a, [
|
|
2103
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
2104
|
+
"div",
|
|
2105
|
+
{ class: "bean-box" },
|
|
2106
|
+
[
|
|
2107
|
+
createElementVNode("div", { class: "bean-icon-box" }, [
|
|
2108
|
+
createElementVNode("img", {
|
|
2109
|
+
class: "bean-icon",
|
|
2110
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2111
|
+
})
|
|
2112
|
+
]),
|
|
2113
|
+
createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
2114
|
+
],
|
|
2115
|
+
-1
|
|
2116
|
+
/* HOISTED */
|
|
2117
|
+
)),
|
|
2056
2118
|
createElementVNode(
|
|
2057
2119
|
"div",
|
|
2058
|
-
|
|
2120
|
+
_hoisted_5$8,
|
|
2059
2121
|
toDisplayString(balance.value.total || 0),
|
|
2060
2122
|
1
|
|
2061
2123
|
/* TEXT */
|
|
@@ -2065,17 +2127,67 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2065
2127
|
createElementVNode("div", {
|
|
2066
2128
|
class: "account-info-entry",
|
|
2067
2129
|
onClick: gotoDetail
|
|
2068
|
-
}, [
|
|
2130
|
+
}, _cache[1] || (_cache[1] = [
|
|
2131
|
+
createElementVNode(
|
|
2132
|
+
"div",
|
|
2133
|
+
{ class: "account-info-name" },
|
|
2134
|
+
"\u8D26\u6237\u660E\u7EC6",
|
|
2135
|
+
-1
|
|
2136
|
+
/* HOISTED */
|
|
2137
|
+
),
|
|
2138
|
+
createElementVNode(
|
|
2139
|
+
"div",
|
|
2140
|
+
{ class: "account-info-icon" },
|
|
2141
|
+
[
|
|
2142
|
+
createElementVNode("img", {
|
|
2143
|
+
class: "icon",
|
|
2144
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
2145
|
+
})
|
|
2146
|
+
],
|
|
2147
|
+
-1
|
|
2148
|
+
/* HOISTED */
|
|
2149
|
+
)
|
|
2150
|
+
]))
|
|
2069
2151
|
])
|
|
2070
2152
|
]),
|
|
2071
|
-
|
|
2153
|
+
_cache[4] || (_cache[4] = createElementVNode(
|
|
2154
|
+
"div",
|
|
2155
|
+
{ class: "line" },
|
|
2156
|
+
null,
|
|
2157
|
+
-1
|
|
2158
|
+
/* HOISTED */
|
|
2159
|
+
)),
|
|
2072
2160
|
createElementVNode("div", { class: "card-row" }, [
|
|
2073
|
-
|
|
2161
|
+
_cache[3] || (_cache[3] = createElementVNode(
|
|
2162
|
+
"div",
|
|
2163
|
+
{ class: "card-row-left desc" },
|
|
2164
|
+
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
2165
|
+
-1
|
|
2166
|
+
/* HOISTED */
|
|
2167
|
+
)),
|
|
2074
2168
|
createElementVNode("div", { class: "card-row-right" }, [
|
|
2075
2169
|
createElementVNode("div", {
|
|
2076
2170
|
class: "pay",
|
|
2077
2171
|
onClick: gotoRecharge
|
|
2078
|
-
}, [
|
|
2172
|
+
}, _cache[2] || (_cache[2] = [
|
|
2173
|
+
createElementVNode(
|
|
2174
|
+
"div",
|
|
2175
|
+
null,
|
|
2176
|
+
"\u5145\u503C",
|
|
2177
|
+
-1
|
|
2178
|
+
/* HOISTED */
|
|
2179
|
+
),
|
|
2180
|
+
createElementVNode(
|
|
2181
|
+
"img",
|
|
2182
|
+
{
|
|
2183
|
+
class: "pay-icon",
|
|
2184
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
2185
|
+
},
|
|
2186
|
+
null,
|
|
2187
|
+
-1
|
|
2188
|
+
/* HOISTED */
|
|
2189
|
+
)
|
|
2190
|
+
]))
|
|
2079
2191
|
])
|
|
2080
2192
|
])
|
|
2081
2193
|
])
|
|
@@ -2101,27 +2213,11 @@ const consumptionTypes = [
|
|
|
2101
2213
|
const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
|
|
2102
2214
|
const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
|
|
2103
2215
|
|
|
2104
|
-
const _hoisted_1$
|
|
2105
|
-
const _hoisted_2$
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2110
|
-
],
|
|
2111
|
-
-1
|
|
2112
|
-
/* HOISTED */
|
|
2113
|
-
);
|
|
2114
|
-
const _hoisted_3$l = { class: "consumption-filter-content" };
|
|
2115
|
-
const _hoisted_4$g = { class: "title" };
|
|
2116
|
-
const _hoisted_5$d = { class: "info" };
|
|
2117
|
-
const _hoisted_6$9 = ["onClick"];
|
|
2118
|
-
const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
|
|
2119
|
-
"div",
|
|
2120
|
-
{ class: "consumption-filter-bottom" },
|
|
2121
|
-
null,
|
|
2122
|
-
-1
|
|
2123
|
-
/* HOISTED */
|
|
2124
|
-
);
|
|
2216
|
+
const _hoisted_1$q = { class: "consumption-filter" };
|
|
2217
|
+
const _hoisted_2$h = { class: "consumption-filter-content" };
|
|
2218
|
+
const _hoisted_3$c = { class: "title" };
|
|
2219
|
+
const _hoisted_4$9 = { class: "info" };
|
|
2220
|
+
const _hoisted_5$7 = ["onClick"];
|
|
2125
2221
|
var script$u = /* @__PURE__ */ defineComponent({
|
|
2126
2222
|
__name: "ConsumptionFilter",
|
|
2127
2223
|
props: {
|
|
@@ -2174,9 +2270,17 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2174
2270
|
emit("complete", result);
|
|
2175
2271
|
};
|
|
2176
2272
|
return (_ctx, _cache) => {
|
|
2177
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2178
|
-
|
|
2179
|
-
|
|
2273
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q, [
|
|
2274
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
2275
|
+
"div",
|
|
2276
|
+
{ class: "consumption-filter-title" },
|
|
2277
|
+
[
|
|
2278
|
+
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2279
|
+
],
|
|
2280
|
+
-1
|
|
2281
|
+
/* HOISTED */
|
|
2282
|
+
)),
|
|
2283
|
+
createElementVNode("div", _hoisted_2$h, [
|
|
2180
2284
|
(openBlock(true), createElementBlock(
|
|
2181
2285
|
Fragment,
|
|
2182
2286
|
null,
|
|
@@ -2187,12 +2291,12 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2187
2291
|
[
|
|
2188
2292
|
createElementVNode(
|
|
2189
2293
|
"div",
|
|
2190
|
-
|
|
2294
|
+
_hoisted_3$c,
|
|
2191
2295
|
toDisplayString(item.title),
|
|
2192
2296
|
1
|
|
2193
2297
|
/* TEXT */
|
|
2194
2298
|
),
|
|
2195
|
-
createElementVNode("div",
|
|
2299
|
+
createElementVNode("div", _hoisted_4$9, [
|
|
2196
2300
|
(openBlock(true), createElementBlock(
|
|
2197
2301
|
Fragment,
|
|
2198
2302
|
null,
|
|
@@ -2201,7 +2305,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2201
2305
|
onClick: () => onFilterSectionClick(index, it.code),
|
|
2202
2306
|
class: normalizeClass([getItemClass(index, it.code), "info-item"]),
|
|
2203
2307
|
key: i
|
|
2204
|
-
}, toDisplayString(typeof it === "string" ? it : it.name), 11,
|
|
2308
|
+
}, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$7);
|
|
2205
2309
|
}),
|
|
2206
2310
|
128
|
|
2207
2311
|
/* KEYED_FRAGMENT */
|
|
@@ -2226,7 +2330,13 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2226
2330
|
onClick: onOkClick
|
|
2227
2331
|
}, "\u786E\u5B9A")
|
|
2228
2332
|
]),
|
|
2229
|
-
|
|
2333
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
2334
|
+
"div",
|
|
2335
|
+
{ class: "consumption-filter-bottom" },
|
|
2336
|
+
null,
|
|
2337
|
+
-1
|
|
2338
|
+
/* HOISTED */
|
|
2339
|
+
))
|
|
2230
2340
|
]);
|
|
2231
2341
|
};
|
|
2232
2342
|
}
|
|
@@ -2234,37 +2344,9 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2234
2344
|
|
|
2235
2345
|
script$u.__file = "src/balance/components/ConsumptionFilter.vue";
|
|
2236
2346
|
|
|
2237
|
-
const _hoisted_1$
|
|
2238
|
-
const _hoisted_2$
|
|
2239
|
-
|
|
2240
|
-
{ class: "date-filter-header" },
|
|
2241
|
-
"\u65E5\u671F\u9009\u62E9",
|
|
2242
|
-
-1
|
|
2243
|
-
/* HOISTED */
|
|
2244
|
-
);
|
|
2245
|
-
const _hoisted_3$k = { class: "content" };
|
|
2246
|
-
const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
|
|
2247
|
-
"div",
|
|
2248
|
-
{ class: "title" },
|
|
2249
|
-
"\u81EA\u5B9A\u4E49",
|
|
2250
|
-
-1
|
|
2251
|
-
/* HOISTED */
|
|
2252
|
-
);
|
|
2253
|
-
const _hoisted_5$c = { class: "time" };
|
|
2254
|
-
const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
|
|
2255
|
-
"div",
|
|
2256
|
-
{ class: "line" },
|
|
2257
|
-
"-",
|
|
2258
|
-
-1
|
|
2259
|
-
/* HOISTED */
|
|
2260
|
-
);
|
|
2261
|
-
const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
|
|
2262
|
-
"div",
|
|
2263
|
-
{ class: "bottom" },
|
|
2264
|
-
null,
|
|
2265
|
-
-1
|
|
2266
|
-
/* HOISTED */
|
|
2267
|
-
);
|
|
2347
|
+
const _hoisted_1$p = { class: "appkit-date-filter" };
|
|
2348
|
+
const _hoisted_2$g = { class: "content" };
|
|
2349
|
+
const _hoisted_3$b = { class: "time" };
|
|
2268
2350
|
var script$t = /* @__PURE__ */ defineComponent({
|
|
2269
2351
|
__name: "DateFilter",
|
|
2270
2352
|
props: {
|
|
@@ -2274,7 +2356,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2274
2356
|
emits: ["complete", "reset"],
|
|
2275
2357
|
setup(__props, { emit: __emit }) {
|
|
2276
2358
|
const props = __props;
|
|
2277
|
-
const emit = __emit;
|
|
2359
|
+
const emit = __emit, state = usePopup();
|
|
2278
2360
|
watch(
|
|
2279
2361
|
() => `${props.from}${props.to}`,
|
|
2280
2362
|
() => {
|
|
@@ -2288,6 +2370,10 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2288
2370
|
const minDate = ref();
|
|
2289
2371
|
const maxDate = ref(/* @__PURE__ */ new Date());
|
|
2290
2372
|
const datePickerOpen = ref(false);
|
|
2373
|
+
state.beforeClose = () => {
|
|
2374
|
+
datePickerOpen.value = false;
|
|
2375
|
+
return true;
|
|
2376
|
+
};
|
|
2291
2377
|
function reset() {
|
|
2292
2378
|
emit("reset");
|
|
2293
2379
|
}
|
|
@@ -2306,6 +2392,11 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2306
2392
|
result.to = time;
|
|
2307
2393
|
}
|
|
2308
2394
|
datePickerOpen.value = false;
|
|
2395
|
+
state.couldClose = true;
|
|
2396
|
+
}
|
|
2397
|
+
function onDatePickerCancel() {
|
|
2398
|
+
datePickerOpen.value = false;
|
|
2399
|
+
state.couldClose = true;
|
|
2309
2400
|
}
|
|
2310
2401
|
function switchDateInput(shift) {
|
|
2311
2402
|
if (shift === "from") {
|
|
@@ -2318,15 +2409,28 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2318
2409
|
focusedDate.value = new Date(result[shift]);
|
|
2319
2410
|
focused.value = shift;
|
|
2320
2411
|
datePickerOpen.value = true;
|
|
2412
|
+
state.couldClose = false;
|
|
2321
2413
|
}
|
|
2322
2414
|
return (_ctx, _cache) => {
|
|
2323
2415
|
const _component_nut_date_picker = DatePicker;
|
|
2324
2416
|
const _component_nut_popup = Popup;
|
|
2325
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2417
|
+
return openBlock(), createElementBlock("div", _hoisted_1$p, [
|
|
2418
|
+
_cache[6] || (_cache[6] = createElementVNode(
|
|
2419
|
+
"div",
|
|
2420
|
+
{ class: "date-filter-header" },
|
|
2421
|
+
"\u65E5\u671F\u9009\u62E9",
|
|
2422
|
+
-1
|
|
2423
|
+
/* HOISTED */
|
|
2424
|
+
)),
|
|
2425
|
+
createElementVNode("div", _hoisted_2$g, [
|
|
2426
|
+
_cache[5] || (_cache[5] = createElementVNode(
|
|
2427
|
+
"div",
|
|
2428
|
+
{ class: "title" },
|
|
2429
|
+
"\u81EA\u5B9A\u4E49",
|
|
2430
|
+
-1
|
|
2431
|
+
/* HOISTED */
|
|
2432
|
+
)),
|
|
2433
|
+
createElementVNode("div", _hoisted_3$b, [
|
|
2330
2434
|
createElementVNode(
|
|
2331
2435
|
"div",
|
|
2332
2436
|
{
|
|
@@ -2337,7 +2441,13 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2337
2441
|
3
|
|
2338
2442
|
/* TEXT, CLASS */
|
|
2339
2443
|
),
|
|
2340
|
-
|
|
2444
|
+
_cache[4] || (_cache[4] = createElementVNode(
|
|
2445
|
+
"div",
|
|
2446
|
+
{ class: "line" },
|
|
2447
|
+
"-",
|
|
2448
|
+
-1
|
|
2449
|
+
/* HOISTED */
|
|
2450
|
+
)),
|
|
2341
2451
|
createElementVNode(
|
|
2342
2452
|
"div",
|
|
2343
2453
|
{
|
|
@@ -2360,11 +2470,19 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2360
2470
|
onClick: onOkClick
|
|
2361
2471
|
}, "\u786E\u5B9A")
|
|
2362
2472
|
]),
|
|
2363
|
-
|
|
2473
|
+
_cache[7] || (_cache[7] = createElementVNode(
|
|
2474
|
+
"div",
|
|
2475
|
+
{ class: "bottom" },
|
|
2476
|
+
null,
|
|
2477
|
+
-1
|
|
2478
|
+
/* HOISTED */
|
|
2479
|
+
)),
|
|
2364
2480
|
createVNode(_component_nut_popup, {
|
|
2365
2481
|
visible: datePickerOpen.value,
|
|
2366
|
-
"onUpdate:visible": _cache[
|
|
2367
|
-
|
|
2482
|
+
"onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event),
|
|
2483
|
+
class: "appkit-date-filter-picker-popup",
|
|
2484
|
+
position: "bottom",
|
|
2485
|
+
"overlay-class": "appkit-date-filter-picker-overlay"
|
|
2368
2486
|
}, {
|
|
2369
2487
|
default: withCtx(() => [
|
|
2370
2488
|
createVNode(_component_nut_date_picker, {
|
|
@@ -2374,7 +2492,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2374
2492
|
"max-date": maxDate.value,
|
|
2375
2493
|
"is-show-chinese": false,
|
|
2376
2494
|
"three-dimensional": false,
|
|
2377
|
-
onCancel:
|
|
2495
|
+
onCancel: onDatePickerCancel,
|
|
2378
2496
|
onConfirm: onDatePickerComplete
|
|
2379
2497
|
}, null, 8, ["modelValue", "min-date", "max-date"])
|
|
2380
2498
|
]),
|
|
@@ -2388,38 +2506,36 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2388
2506
|
|
|
2389
2507
|
script$t.__file = "src/balance/components/DateFilter.vue";
|
|
2390
2508
|
|
|
2391
|
-
const _hoisted_1$
|
|
2392
|
-
const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
|
|
2393
|
-
"div",
|
|
2394
|
-
{ class: "title" },
|
|
2395
|
-
"\u89C4\u5219\u8BF4\u660E",
|
|
2396
|
-
-1
|
|
2397
|
-
/* HOISTED */
|
|
2398
|
-
);
|
|
2399
|
-
const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
|
|
2400
|
-
"div",
|
|
2401
|
-
{ class: "desc" },
|
|
2402
|
-
[
|
|
2403
|
-
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2404
|
-
/* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
|
|
2405
|
-
/* @__PURE__ */ createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
|
|
2406
|
-
/* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
|
|
2407
|
-
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2408
|
-
/* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
|
|
2409
|
-
/* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
|
|
2410
|
-
],
|
|
2411
|
-
-1
|
|
2412
|
-
/* HOISTED */
|
|
2413
|
-
);
|
|
2509
|
+
const _hoisted_1$o = { class: "consumption-rules" };
|
|
2414
2510
|
var script$s = /* @__PURE__ */ defineComponent({
|
|
2415
2511
|
__name: "ConsumptionRules",
|
|
2416
2512
|
emits: ["complete"],
|
|
2417
2513
|
setup(__props, { emit: __emit }) {
|
|
2418
2514
|
const emit = __emit;
|
|
2419
2515
|
return (_ctx, _cache) => {
|
|
2420
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2421
|
-
|
|
2422
|
-
|
|
2516
|
+
return openBlock(), createElementBlock("div", _hoisted_1$o, [
|
|
2517
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
2518
|
+
"div",
|
|
2519
|
+
{ class: "title" },
|
|
2520
|
+
"\u89C4\u5219\u8BF4\u660E",
|
|
2521
|
+
-1
|
|
2522
|
+
/* HOISTED */
|
|
2523
|
+
)),
|
|
2524
|
+
_cache[2] || (_cache[2] = createElementVNode(
|
|
2525
|
+
"div",
|
|
2526
|
+
{ class: "desc" },
|
|
2527
|
+
[
|
|
2528
|
+
createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2529
|
+
createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
|
|
2530
|
+
createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
|
|
2531
|
+
createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
|
|
2532
|
+
createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2533
|
+
createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
|
|
2534
|
+
createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
|
|
2535
|
+
],
|
|
2536
|
+
-1
|
|
2537
|
+
/* HOISTED */
|
|
2538
|
+
)),
|
|
2423
2539
|
createElementVNode("div", {
|
|
2424
2540
|
class: "know",
|
|
2425
2541
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
|
|
@@ -2431,30 +2547,27 @@ var script$s = /* @__PURE__ */ defineComponent({
|
|
|
2431
2547
|
|
|
2432
2548
|
script$s.__file = "src/balance/components/ConsumptionRules.vue";
|
|
2433
2549
|
|
|
2434
|
-
const _hoisted_1$
|
|
2435
|
-
const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
|
|
2436
|
-
"img",
|
|
2437
|
-
{
|
|
2438
|
-
class: "empty-view-image",
|
|
2439
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2440
|
-
},
|
|
2441
|
-
null,
|
|
2442
|
-
-1
|
|
2443
|
-
/* HOISTED */
|
|
2444
|
-
);
|
|
2445
|
-
const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
|
|
2446
|
-
"div",
|
|
2447
|
-
{ class: "empty-view-text" },
|
|
2448
|
-
"\u6682\u65E0\u6570\u636E",
|
|
2449
|
-
-1
|
|
2450
|
-
/* HOISTED */
|
|
2451
|
-
);
|
|
2452
|
-
const _hoisted_4$e = [
|
|
2453
|
-
_hoisted_2$m,
|
|
2454
|
-
_hoisted_3$i
|
|
2455
|
-
];
|
|
2550
|
+
const _hoisted_1$n = { class: "empty-view" };
|
|
2456
2551
|
function render$1(_ctx, _cache) {
|
|
2457
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2552
|
+
return openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
|
|
2553
|
+
createElementVNode(
|
|
2554
|
+
"img",
|
|
2555
|
+
{
|
|
2556
|
+
class: "empty-view-image",
|
|
2557
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2558
|
+
},
|
|
2559
|
+
null,
|
|
2560
|
+
-1
|
|
2561
|
+
/* HOISTED */
|
|
2562
|
+
),
|
|
2563
|
+
createElementVNode(
|
|
2564
|
+
"div",
|
|
2565
|
+
{ class: "empty-view-text" },
|
|
2566
|
+
"\u6682\u65E0\u6570\u636E",
|
|
2567
|
+
-1
|
|
2568
|
+
/* HOISTED */
|
|
2569
|
+
)
|
|
2570
|
+
]));
|
|
2458
2571
|
}
|
|
2459
2572
|
|
|
2460
2573
|
/* unplugin-vue-components disabled */const script$r = {};
|
|
@@ -2462,31 +2575,10 @@ function render$1(_ctx, _cache) {
|
|
|
2462
2575
|
script$r.render = render$1;
|
|
2463
2576
|
script$r.__file = "src/shared/components/EmptyView.vue";
|
|
2464
2577
|
|
|
2465
|
-
const _hoisted_1$
|
|
2578
|
+
const _hoisted_1$m = {
|
|
2466
2579
|
key: 0,
|
|
2467
2580
|
class: "tip"
|
|
2468
2581
|
};
|
|
2469
|
-
const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
|
|
2470
|
-
"img",
|
|
2471
|
-
{
|
|
2472
|
-
class: "tip-icon",
|
|
2473
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2474
|
-
},
|
|
2475
|
-
null,
|
|
2476
|
-
-1
|
|
2477
|
-
/* HOISTED */
|
|
2478
|
-
);
|
|
2479
|
-
const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
|
|
2480
|
-
"div",
|
|
2481
|
-
{ class: "tip-content" },
|
|
2482
|
-
"2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
|
|
2483
|
-
-1
|
|
2484
|
-
/* HOISTED */
|
|
2485
|
-
);
|
|
2486
|
-
const _hoisted_4$d = [
|
|
2487
|
-
_hoisted_2$l,
|
|
2488
|
-
_hoisted_3$h
|
|
2489
|
-
];
|
|
2490
2582
|
var script$q = /* @__PURE__ */ defineComponent({
|
|
2491
2583
|
__name: "Tip",
|
|
2492
2584
|
setup(__props) {
|
|
@@ -2499,141 +2591,73 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
2499
2591
|
}
|
|
2500
2592
|
});
|
|
2501
2593
|
return (_ctx, _cache) => {
|
|
2502
|
-
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
2594
|
+
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$m, _cache[0] || (_cache[0] = [
|
|
2595
|
+
createElementVNode(
|
|
2596
|
+
"img",
|
|
2597
|
+
{
|
|
2598
|
+
class: "tip-icon",
|
|
2599
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2600
|
+
},
|
|
2601
|
+
null,
|
|
2602
|
+
-1
|
|
2603
|
+
/* HOISTED */
|
|
2604
|
+
),
|
|
2605
|
+
createElementVNode(
|
|
2606
|
+
"div",
|
|
2607
|
+
{ class: "tip-content" },
|
|
2608
|
+
"2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
|
|
2609
|
+
-1
|
|
2610
|
+
/* HOISTED */
|
|
2611
|
+
)
|
|
2612
|
+
]))) : createCommentVNode("v-if", true);
|
|
2503
2613
|
};
|
|
2504
2614
|
}
|
|
2505
2615
|
});
|
|
2506
2616
|
|
|
2507
2617
|
script$q.__file = "src/balance/components/Tip.vue";
|
|
2508
2618
|
|
|
2509
|
-
const _hoisted_1$
|
|
2510
|
-
const _hoisted_2$
|
|
2511
|
-
const _hoisted_3$
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
/* HOISTED */
|
|
2517
|
-
);
|
|
2518
|
-
const _hoisted_4$c = [
|
|
2519
|
-
_hoisted_3$g
|
|
2520
|
-
];
|
|
2521
|
-
const _hoisted_5$b = { class: "balance" };
|
|
2522
|
-
const _hoisted_6$7 = { class: "bean-box spa-between" };
|
|
2523
|
-
const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
|
|
2524
|
-
"div",
|
|
2525
|
-
{ class: "bean-img" },
|
|
2526
|
-
[
|
|
2527
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
2528
|
-
class: "bean-icon",
|
|
2529
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2530
|
-
}),
|
|
2531
|
-
/* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2532
|
-
],
|
|
2533
|
-
-1
|
|
2534
|
-
/* HOISTED */
|
|
2535
|
-
);
|
|
2536
|
-
const _hoisted_8$3 = { class: "bean-counts spa-between" };
|
|
2537
|
-
const _hoisted_9$3 = { class: "counts number" };
|
|
2538
|
-
const _hoisted_10$3 = {
|
|
2619
|
+
const _hoisted_1$l = { class: "account-view" };
|
|
2620
|
+
const _hoisted_2$f = { class: "scroll-content" };
|
|
2621
|
+
const _hoisted_3$a = { class: "balance" };
|
|
2622
|
+
const _hoisted_4$8 = { class: "bean-box spa-between" };
|
|
2623
|
+
const _hoisted_5$6 = { class: "bean-counts spa-between" };
|
|
2624
|
+
const _hoisted_6$3 = { class: "counts number" };
|
|
2625
|
+
const _hoisted_7$3 = {
|
|
2539
2626
|
key: 0,
|
|
2540
2627
|
class: "rights-card"
|
|
2541
2628
|
};
|
|
2542
|
-
const
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
-1
|
|
2547
|
-
/* HOISTED */
|
|
2548
|
-
);
|
|
2549
|
-
const _hoisted_12$3 = { class: "list" };
|
|
2550
|
-
const _hoisted_13$3 = { class: "item-count" };
|
|
2551
|
-
const _hoisted_14$2 = { class: "item-title" };
|
|
2552
|
-
const _hoisted_15$2 = {
|
|
2629
|
+
const _hoisted_8$3 = { class: "list" };
|
|
2630
|
+
const _hoisted_9$2 = { class: "item-count" };
|
|
2631
|
+
const _hoisted_10$1 = { class: "item-title" };
|
|
2632
|
+
const _hoisted_11$1 = {
|
|
2553
2633
|
key: 0,
|
|
2554
2634
|
class: "item-title-button"
|
|
2555
2635
|
};
|
|
2556
|
-
const
|
|
2557
|
-
const
|
|
2558
|
-
"img",
|
|
2559
|
-
{
|
|
2560
|
-
class: "button-icon",
|
|
2561
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2562
|
-
},
|
|
2563
|
-
null,
|
|
2564
|
-
-1
|
|
2565
|
-
/* HOISTED */
|
|
2566
|
-
);
|
|
2567
|
-
const _hoisted_18$1 = {
|
|
2636
|
+
const _hoisted_12$1 = ["onClick"];
|
|
2637
|
+
const _hoisted_13$1 = {
|
|
2568
2638
|
key: 1,
|
|
2569
2639
|
class: "rights-card"
|
|
2570
2640
|
};
|
|
2571
|
-
const
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
const
|
|
2579
|
-
const _hoisted_21$1 = { class: "item-count" };
|
|
2580
|
-
const _hoisted_22$1 = { class: "item-title" };
|
|
2581
|
-
const _hoisted_23$1 = { class: "operation-box" };
|
|
2582
|
-
const _hoisted_24$1 = { class: "search-time" };
|
|
2583
|
-
const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
|
|
2584
|
-
"div",
|
|
2585
|
-
{ class: "title" },
|
|
2586
|
-
"\u6536\u652F\u660E\u7EC6",
|
|
2587
|
-
-1
|
|
2588
|
-
/* HOISTED */
|
|
2589
|
-
);
|
|
2590
|
-
const _hoisted_26 = { class: "text number" };
|
|
2591
|
-
const _hoisted_27 = /* @__PURE__ */ createElementVNode(
|
|
2592
|
-
"img",
|
|
2593
|
-
{
|
|
2594
|
-
style: { "margin-top": "-2px" },
|
|
2595
|
-
class: "time-icon",
|
|
2596
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
2597
|
-
},
|
|
2598
|
-
null,
|
|
2599
|
-
-1
|
|
2600
|
-
/* HOISTED */
|
|
2601
|
-
);
|
|
2602
|
-
const _hoisted_28 = /* @__PURE__ */ createElementVNode(
|
|
2603
|
-
"span",
|
|
2604
|
-
{ class: "text" },
|
|
2605
|
-
"\u7B5B\u9009",
|
|
2606
|
-
-1
|
|
2607
|
-
/* HOISTED */
|
|
2608
|
-
);
|
|
2609
|
-
const _hoisted_29 = /* @__PURE__ */ createElementVNode(
|
|
2610
|
-
"img",
|
|
2611
|
-
{
|
|
2612
|
-
class: "time-icon",
|
|
2613
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
2614
|
-
},
|
|
2615
|
-
null,
|
|
2616
|
-
-1
|
|
2617
|
-
/* HOISTED */
|
|
2618
|
-
);
|
|
2619
|
-
const _hoisted_30 = [
|
|
2620
|
-
_hoisted_28,
|
|
2621
|
-
_hoisted_29
|
|
2622
|
-
];
|
|
2623
|
-
const _hoisted_31 = { class: "operation-list" };
|
|
2624
|
-
const _hoisted_32 = {
|
|
2641
|
+
const _hoisted_14$1 = { class: "list" };
|
|
2642
|
+
const _hoisted_15$1 = { class: "item-count" };
|
|
2643
|
+
const _hoisted_16$1 = { class: "item-title" };
|
|
2644
|
+
const _hoisted_17$1 = { class: "operation-box" };
|
|
2645
|
+
const _hoisted_18$1 = { class: "search-time" };
|
|
2646
|
+
const _hoisted_19$1 = { class: "text number" };
|
|
2647
|
+
const _hoisted_20$1 = { class: "operation-list" };
|
|
2648
|
+
const _hoisted_21$1 = {
|
|
2625
2649
|
key: 0,
|
|
2626
2650
|
class: "box"
|
|
2627
2651
|
};
|
|
2628
|
-
const
|
|
2629
|
-
const
|
|
2630
|
-
const
|
|
2631
|
-
const
|
|
2632
|
-
const
|
|
2633
|
-
const
|
|
2634
|
-
const
|
|
2635
|
-
const
|
|
2636
|
-
const
|
|
2652
|
+
const _hoisted_22$1 = { class: "title number" };
|
|
2653
|
+
const _hoisted_23 = { class: "item-type" };
|
|
2654
|
+
const _hoisted_24 = { class: "item-detail" };
|
|
2655
|
+
const _hoisted_25 = { class: "item-info spa-between" };
|
|
2656
|
+
const _hoisted_26 = { class: "item-info-type" };
|
|
2657
|
+
const _hoisted_27 = { class: "item-info-title" };
|
|
2658
|
+
const _hoisted_28 = { class: "item-info-amount number" };
|
|
2659
|
+
const _hoisted_29 = { class: "item-detail-remark" };
|
|
2660
|
+
const _hoisted_30 = {
|
|
2637
2661
|
key: 0,
|
|
2638
2662
|
class: "box-not-text"
|
|
2639
2663
|
};
|
|
@@ -2814,8 +2838,8 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2814
2838
|
Fragment,
|
|
2815
2839
|
null,
|
|
2816
2840
|
[
|
|
2817
|
-
createElementVNode("div", _hoisted_1$
|
|
2818
|
-
createElementVNode("div", _hoisted_2$
|
|
2841
|
+
createElementVNode("div", _hoisted_1$l, [
|
|
2842
|
+
createElementVNode("div", _hoisted_2$f, [
|
|
2819
2843
|
createVNode(unref(script$H), {
|
|
2820
2844
|
"color-mode": "dark",
|
|
2821
2845
|
title: "\u6211\u7684\u8D26\u6237",
|
|
@@ -2826,20 +2850,40 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2826
2850
|
createElementVNode("div", {
|
|
2827
2851
|
class: "small-bean-button",
|
|
2828
2852
|
onClick: onSecondBalanceButtonClick
|
|
2829
|
-
}, [
|
|
2853
|
+
}, _cache[7] || (_cache[7] = [
|
|
2854
|
+
createElementVNode(
|
|
2855
|
+
"label",
|
|
2856
|
+
null,
|
|
2857
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
2858
|
+
-1
|
|
2859
|
+
/* HOISTED */
|
|
2860
|
+
)
|
|
2861
|
+
]))
|
|
2830
2862
|
]),
|
|
2831
|
-
createElementVNode("div",
|
|
2832
|
-
createElementVNode("div",
|
|
2833
|
-
|
|
2863
|
+
createElementVNode("div", _hoisted_3$a, [
|
|
2864
|
+
createElementVNode("div", _hoisted_4$8, [
|
|
2865
|
+
_cache[8] || (_cache[8] = createElementVNode(
|
|
2866
|
+
"div",
|
|
2867
|
+
{ class: "bean-img" },
|
|
2868
|
+
[
|
|
2869
|
+
createElementVNode("img", {
|
|
2870
|
+
class: "bean-icon",
|
|
2871
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2872
|
+
}),
|
|
2873
|
+
createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2874
|
+
],
|
|
2875
|
+
-1
|
|
2876
|
+
/* HOISTED */
|
|
2877
|
+
)),
|
|
2834
2878
|
createElementVNode("div", {
|
|
2835
2879
|
class: "rule",
|
|
2836
2880
|
onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
|
|
2837
2881
|
}, "\u89C4\u5219\u8BF4\u660E")
|
|
2838
2882
|
]),
|
|
2839
|
-
createElementVNode("div",
|
|
2883
|
+
createElementVNode("div", _hoisted_5$6, [
|
|
2840
2884
|
createElementVNode(
|
|
2841
2885
|
"div",
|
|
2842
|
-
|
|
2886
|
+
_hoisted_6$3,
|
|
2843
2887
|
toDisplayString(balance.value.total || 0),
|
|
2844
2888
|
1
|
|
2845
2889
|
/* TEXT */
|
|
@@ -2851,9 +2895,15 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2851
2895
|
])
|
|
2852
2896
|
]),
|
|
2853
2897
|
createVNode(script$q),
|
|
2854
|
-
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div",
|
|
2855
|
-
|
|
2856
|
-
|
|
2898
|
+
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
|
|
2899
|
+
_cache[10] || (_cache[10] = createElementVNode(
|
|
2900
|
+
"div",
|
|
2901
|
+
{ class: "title" },
|
|
2902
|
+
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
2903
|
+
-1
|
|
2904
|
+
/* HOISTED */
|
|
2905
|
+
)),
|
|
2906
|
+
createElementVNode("div", _hoisted_8$3, [
|
|
2857
2907
|
(openBlock(true), createElementBlock(
|
|
2858
2908
|
Fragment,
|
|
2859
2909
|
null,
|
|
@@ -2862,7 +2912,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2862
2912
|
class: "item star-item",
|
|
2863
2913
|
key: index
|
|
2864
2914
|
}, [
|
|
2865
|
-
createElementVNode("div",
|
|
2915
|
+
createElementVNode("div", _hoisted_9$2, [
|
|
2866
2916
|
createElementVNode(
|
|
2867
2917
|
"span",
|
|
2868
2918
|
null,
|
|
@@ -2878,7 +2928,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2878
2928
|
/* TEXT */
|
|
2879
2929
|
)
|
|
2880
2930
|
]),
|
|
2881
|
-
createElementVNode("div",
|
|
2931
|
+
createElementVNode("div", _hoisted_10$1, [
|
|
2882
2932
|
createElementVNode(
|
|
2883
2933
|
"div",
|
|
2884
2934
|
null,
|
|
@@ -2886,11 +2936,20 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2886
2936
|
1
|
|
2887
2937
|
/* TEXT */
|
|
2888
2938
|
),
|
|
2889
|
-
item.id ? (openBlock(), createElementBlock("div",
|
|
2939
|
+
item.id ? (openBlock(), createElementBlock("div", _hoisted_11$1, [
|
|
2890
2940
|
createElementVNode("div", {
|
|
2891
2941
|
onClick: ($event) => gotoTrade(item)
|
|
2892
|
-
}, "\u8D85\u503C\u6362\u8D2D", 8,
|
|
2893
|
-
|
|
2942
|
+
}, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_12$1),
|
|
2943
|
+
_cache[9] || (_cache[9] = createElementVNode(
|
|
2944
|
+
"img",
|
|
2945
|
+
{
|
|
2946
|
+
class: "button-icon",
|
|
2947
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2948
|
+
},
|
|
2949
|
+
null,
|
|
2950
|
+
-1
|
|
2951
|
+
/* HOISTED */
|
|
2952
|
+
))
|
|
2894
2953
|
])) : createCommentVNode("v-if", true)
|
|
2895
2954
|
])
|
|
2896
2955
|
]);
|
|
@@ -2900,9 +2959,15 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2900
2959
|
))
|
|
2901
2960
|
])
|
|
2902
2961
|
])) : createCommentVNode("v-if", true),
|
|
2903
|
-
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div",
|
|
2904
|
-
|
|
2905
|
-
|
|
2962
|
+
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_13$1, [
|
|
2963
|
+
_cache[11] || (_cache[11] = createElementVNode(
|
|
2964
|
+
"div",
|
|
2965
|
+
{ class: "title" },
|
|
2966
|
+
"AI\u5BA1\u6279\u6743\u76CA",
|
|
2967
|
+
-1
|
|
2968
|
+
/* HOISTED */
|
|
2969
|
+
)),
|
|
2970
|
+
createElementVNode("div", _hoisted_14$1, [
|
|
2906
2971
|
(openBlock(true), createElementBlock(
|
|
2907
2972
|
Fragment,
|
|
2908
2973
|
null,
|
|
@@ -2913,14 +2978,14 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2913
2978
|
}, [
|
|
2914
2979
|
createElementVNode(
|
|
2915
2980
|
"div",
|
|
2916
|
-
|
|
2981
|
+
_hoisted_15$1,
|
|
2917
2982
|
toDisplayString(item.count) + toDisplayString(item.unit),
|
|
2918
2983
|
1
|
|
2919
2984
|
/* TEXT */
|
|
2920
2985
|
),
|
|
2921
2986
|
createElementVNode(
|
|
2922
2987
|
"div",
|
|
2923
|
-
|
|
2988
|
+
_hoisted_16$1,
|
|
2924
2989
|
toDisplayString(item.title),
|
|
2925
2990
|
1
|
|
2926
2991
|
/* TEXT */
|
|
@@ -2996,15 +3061,21 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2996
3061
|
title: "\u6536\u652F\u660E\u7EC6"
|
|
2997
3062
|
}, {
|
|
2998
3063
|
default: withCtx(() => [
|
|
2999
|
-
createElementVNode("div",
|
|
3064
|
+
createElementVNode("div", _hoisted_17$1, [
|
|
3000
3065
|
createElementVNode(
|
|
3001
3066
|
"div",
|
|
3002
3067
|
{
|
|
3003
3068
|
class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
|
|
3004
3069
|
},
|
|
3005
3070
|
[
|
|
3006
|
-
createElementVNode("div",
|
|
3007
|
-
|
|
3071
|
+
createElementVNode("div", _hoisted_18$1, [
|
|
3072
|
+
_cache[13] || (_cache[13] = createElementVNode(
|
|
3073
|
+
"div",
|
|
3074
|
+
{ class: "title" },
|
|
3075
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
3076
|
+
-1
|
|
3077
|
+
/* HOISTED */
|
|
3078
|
+
)),
|
|
3008
3079
|
withDirectives(createElementVNode(
|
|
3009
3080
|
"div",
|
|
3010
3081
|
{
|
|
@@ -3014,12 +3085,22 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3014
3085
|
[
|
|
3015
3086
|
createElementVNode(
|
|
3016
3087
|
"div",
|
|
3017
|
-
|
|
3088
|
+
_hoisted_19$1,
|
|
3018
3089
|
toDisplayString(dateRangeDisplay.value),
|
|
3019
3090
|
1
|
|
3020
3091
|
/* TEXT */
|
|
3021
3092
|
),
|
|
3022
|
-
|
|
3093
|
+
_cache[12] || (_cache[12] = createElementVNode(
|
|
3094
|
+
"img",
|
|
3095
|
+
{
|
|
3096
|
+
style: { "margin-top": "-2px" },
|
|
3097
|
+
class: "time-icon",
|
|
3098
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3099
|
+
},
|
|
3100
|
+
null,
|
|
3101
|
+
-1
|
|
3102
|
+
/* HOISTED */
|
|
3103
|
+
))
|
|
3023
3104
|
],
|
|
3024
3105
|
512
|
|
3025
3106
|
/* NEED_PATCH */
|
|
@@ -3030,12 +3111,30 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3030
3111
|
createElementVNode("div", {
|
|
3031
3112
|
class: "search",
|
|
3032
3113
|
onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
|
|
3033
|
-
}, [
|
|
3114
|
+
}, _cache[14] || (_cache[14] = [
|
|
3115
|
+
createElementVNode(
|
|
3116
|
+
"span",
|
|
3117
|
+
{ class: "text" },
|
|
3118
|
+
"\u7B5B\u9009",
|
|
3119
|
+
-1
|
|
3120
|
+
/* HOISTED */
|
|
3121
|
+
),
|
|
3122
|
+
createElementVNode(
|
|
3123
|
+
"img",
|
|
3124
|
+
{
|
|
3125
|
+
class: "time-icon",
|
|
3126
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3127
|
+
},
|
|
3128
|
+
null,
|
|
3129
|
+
-1
|
|
3130
|
+
/* HOISTED */
|
|
3131
|
+
)
|
|
3132
|
+
]))
|
|
3034
3133
|
],
|
|
3035
3134
|
2
|
|
3036
3135
|
/* CLASS */
|
|
3037
3136
|
),
|
|
3038
|
-
createElementVNode("div",
|
|
3137
|
+
createElementVNode("div", _hoisted_20$1, [
|
|
3039
3138
|
createVNode(_component_scroll_view, {
|
|
3040
3139
|
class: "operation-scroll",
|
|
3041
3140
|
"scroll-y": true,
|
|
@@ -3044,7 +3143,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3044
3143
|
onScrolltolower: onReachBottom
|
|
3045
3144
|
}, {
|
|
3046
3145
|
default: withCtx(() => [
|
|
3047
|
-
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div",
|
|
3146
|
+
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_21$1, [
|
|
3048
3147
|
(openBlock(true), createElementBlock(
|
|
3049
3148
|
Fragment,
|
|
3050
3149
|
null,
|
|
@@ -3055,7 +3154,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3055
3154
|
}, [
|
|
3056
3155
|
createElementVNode(
|
|
3057
3156
|
"div",
|
|
3058
|
-
|
|
3157
|
+
_hoisted_22$1,
|
|
3059
3158
|
toDisplayString(item.date),
|
|
3060
3159
|
1
|
|
3061
3160
|
/* TEXT */
|
|
@@ -3070,24 +3169,24 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3070
3169
|
}, [
|
|
3071
3170
|
createElementVNode(
|
|
3072
3171
|
"div",
|
|
3073
|
-
|
|
3172
|
+
_hoisted_23,
|
|
3074
3173
|
toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
|
|
3075
3174
|
1
|
|
3076
3175
|
/* TEXT */
|
|
3077
3176
|
),
|
|
3078
|
-
createElementVNode("div",
|
|
3079
|
-
createElementVNode("div",
|
|
3177
|
+
createElementVNode("div", _hoisted_24, [
|
|
3178
|
+
createElementVNode("div", _hoisted_25, [
|
|
3080
3179
|
createElementVNode("div", null, [
|
|
3081
3180
|
createElementVNode(
|
|
3082
3181
|
"div",
|
|
3083
|
-
|
|
3182
|
+
_hoisted_26,
|
|
3084
3183
|
toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
|
|
3085
3184
|
1
|
|
3086
3185
|
/* TEXT */
|
|
3087
3186
|
),
|
|
3088
3187
|
createElementVNode(
|
|
3089
3188
|
"div",
|
|
3090
|
-
|
|
3189
|
+
_hoisted_27,
|
|
3091
3190
|
toDisplayString(it.title),
|
|
3092
3191
|
1
|
|
3093
3192
|
/* TEXT */
|
|
@@ -3095,7 +3194,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3095
3194
|
]),
|
|
3096
3195
|
createElementVNode(
|
|
3097
3196
|
"div",
|
|
3098
|
-
|
|
3197
|
+
_hoisted_28,
|
|
3099
3198
|
toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
|
|
3100
3199
|
1
|
|
3101
3200
|
/* TEXT */
|
|
@@ -3103,7 +3202,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3103
3202
|
]),
|
|
3104
3203
|
createElementVNode(
|
|
3105
3204
|
"div",
|
|
3106
|
-
|
|
3205
|
+
_hoisted_29,
|
|
3107
3206
|
toDisplayString(it.description),
|
|
3108
3207
|
1
|
|
3109
3208
|
/* TEXT */
|
|
@@ -3119,7 +3218,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3119
3218
|
128
|
|
3120
3219
|
/* KEYED_FRAGMENT */
|
|
3121
3220
|
)),
|
|
3122
|
-
reachedLastPage.value ? (openBlock(), createElementBlock("div",
|
|
3221
|
+
reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
3123
3222
|
])) : (openBlock(), createBlock(script$r, { key: 1 }))
|
|
3124
3223
|
]),
|
|
3125
3224
|
_: 1
|
|
@@ -3141,20 +3240,10 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3141
3240
|
|
|
3142
3241
|
script$p.__file = "src/balance/components/AccountView.vue";
|
|
3143
3242
|
|
|
3144
|
-
const _hoisted_1$
|
|
3145
|
-
const _hoisted_2$
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
[
|
|
3149
|
-
/* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3150
|
-
/* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3151
|
-
],
|
|
3152
|
-
-1
|
|
3153
|
-
/* HOISTED */
|
|
3154
|
-
);
|
|
3155
|
-
const _hoisted_3$f = { class: "footer" };
|
|
3156
|
-
const _hoisted_4$b = { class: "col" };
|
|
3157
|
-
const _hoisted_5$a = { class: "col" };
|
|
3243
|
+
const _hoisted_1$k = { class: "balance-reminder" };
|
|
3244
|
+
const _hoisted_2$e = { class: "footer" };
|
|
3245
|
+
const _hoisted_3$9 = { class: "col" };
|
|
3246
|
+
const _hoisted_4$7 = { class: "col" };
|
|
3158
3247
|
var script$o = /* @__PURE__ */ defineComponent({
|
|
3159
3248
|
__name: "BalanceReminder",
|
|
3160
3249
|
props: {
|
|
@@ -3175,23 +3264,32 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3175
3264
|
"close-on-click-overlay": false
|
|
3176
3265
|
}, {
|
|
3177
3266
|
default: withCtx(() => [
|
|
3178
|
-
createElementVNode("div", _hoisted_1$
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3267
|
+
createElementVNode("div", _hoisted_1$k, [
|
|
3268
|
+
_cache[3] || (_cache[3] = createElementVNode(
|
|
3269
|
+
"div",
|
|
3270
|
+
{ class: "body" },
|
|
3271
|
+
[
|
|
3272
|
+
createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3273
|
+
createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3274
|
+
],
|
|
3275
|
+
-1
|
|
3276
|
+
/* HOISTED */
|
|
3277
|
+
)),
|
|
3278
|
+
createElementVNode("div", _hoisted_2$e, [
|
|
3279
|
+
createElementVNode("div", _hoisted_3$9, [
|
|
3182
3280
|
createVNode(_component_nut_button, {
|
|
3183
3281
|
class: "cancel-button",
|
|
3184
3282
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
|
|
3185
3283
|
block: ""
|
|
3186
3284
|
}, {
|
|
3187
|
-
default: withCtx(() => [
|
|
3285
|
+
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
3188
3286
|
createTextVNode("\u53D6\u6D88")
|
|
3189
|
-
]),
|
|
3287
|
+
])),
|
|
3190
3288
|
_: 1
|
|
3191
3289
|
/* STABLE */
|
|
3192
3290
|
})
|
|
3193
3291
|
]),
|
|
3194
|
-
createElementVNode("div",
|
|
3292
|
+
createElementVNode("div", _hoisted_4$7, [
|
|
3195
3293
|
createVNode(_component_nut_button, {
|
|
3196
3294
|
block: "",
|
|
3197
3295
|
class: "recharge-button",
|
|
@@ -3220,18 +3318,7 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3220
3318
|
|
|
3221
3319
|
script$o.__file = "src/balance/components/BalanceReminder.vue";
|
|
3222
3320
|
|
|
3223
|
-
const _hoisted_1$
|
|
3224
|
-
const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
|
|
3225
|
-
"img",
|
|
3226
|
-
{
|
|
3227
|
-
style: { "margin-top": "-2px" },
|
|
3228
|
-
class: "time-icon",
|
|
3229
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3230
|
-
},
|
|
3231
|
-
null,
|
|
3232
|
-
-1
|
|
3233
|
-
/* HOISTED */
|
|
3234
|
-
);
|
|
3321
|
+
const _hoisted_1$j = { class: "text" };
|
|
3235
3322
|
var script$n = /* @__PURE__ */ defineComponent({
|
|
3236
3323
|
__name: "DateRange",
|
|
3237
3324
|
props: {
|
|
@@ -3250,12 +3337,17 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3250
3337
|
const $n = useNutshell();
|
|
3251
3338
|
const model = useModel(__props, "modelValue");
|
|
3252
3339
|
const openDateRangePicker = () => {
|
|
3340
|
+
const child = ref();
|
|
3253
3341
|
$n.sheet({
|
|
3254
3342
|
component: script$t,
|
|
3343
|
+
ref: child,
|
|
3255
3344
|
props: {
|
|
3256
3345
|
from: model.value.from,
|
|
3257
3346
|
to: model.value.to
|
|
3258
3347
|
},
|
|
3348
|
+
modal: true,
|
|
3349
|
+
// 不允许点击 overlay 关闭弹窗
|
|
3350
|
+
mask: true,
|
|
3259
3351
|
onComplete(result) {
|
|
3260
3352
|
model.value = {
|
|
3261
3353
|
from: result.from,
|
|
@@ -3276,12 +3368,22 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3276
3368
|
}, [
|
|
3277
3369
|
createElementVNode(
|
|
3278
3370
|
"div",
|
|
3279
|
-
_hoisted_1$
|
|
3371
|
+
_hoisted_1$j,
|
|
3280
3372
|
toDisplayString(dateRangeDisplay.value),
|
|
3281
3373
|
1
|
|
3282
3374
|
/* TEXT */
|
|
3283
3375
|
),
|
|
3284
|
-
|
|
3376
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
3377
|
+
"img",
|
|
3378
|
+
{
|
|
3379
|
+
style: { "margin-top": "-2px" },
|
|
3380
|
+
class: "time-icon",
|
|
3381
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3382
|
+
},
|
|
3383
|
+
null,
|
|
3384
|
+
-1
|
|
3385
|
+
/* HOISTED */
|
|
3386
|
+
))
|
|
3285
3387
|
]);
|
|
3286
3388
|
};
|
|
3287
3389
|
}
|
|
@@ -3289,27 +3391,11 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3289
3391
|
|
|
3290
3392
|
script$n.__file = "src/balance/components/DateRange.vue";
|
|
3291
3393
|
|
|
3292
|
-
const _hoisted_1$
|
|
3293
|
-
const _hoisted_2$
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3298
|
-
],
|
|
3299
|
-
-1
|
|
3300
|
-
/* HOISTED */
|
|
3301
|
-
);
|
|
3302
|
-
const _hoisted_3$e = { class: "consumption-filter-content" };
|
|
3303
|
-
const _hoisted_4$a = { class: "title" };
|
|
3304
|
-
const _hoisted_5$9 = { class: "info" };
|
|
3305
|
-
const _hoisted_6$6 = ["onClick"];
|
|
3306
|
-
const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
|
|
3307
|
-
"div",
|
|
3308
|
-
{ class: "consumption-filter-bottom" },
|
|
3309
|
-
null,
|
|
3310
|
-
-1
|
|
3311
|
-
/* HOISTED */
|
|
3312
|
-
);
|
|
3394
|
+
const _hoisted_1$i = { class: "list-filter-picker" };
|
|
3395
|
+
const _hoisted_2$d = { class: "consumption-filter-content" };
|
|
3396
|
+
const _hoisted_3$8 = { class: "title" };
|
|
3397
|
+
const _hoisted_4$6 = { class: "info" };
|
|
3398
|
+
const _hoisted_5$5 = ["onClick"];
|
|
3313
3399
|
var script$m = /* @__PURE__ */ defineComponent({
|
|
3314
3400
|
__name: "ListFilterPicker",
|
|
3315
3401
|
props: {
|
|
@@ -3356,9 +3442,17 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3356
3442
|
emit("complete", result);
|
|
3357
3443
|
};
|
|
3358
3444
|
return (_ctx, _cache) => {
|
|
3359
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3360
|
-
|
|
3361
|
-
|
|
3445
|
+
return openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
3446
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
3447
|
+
"div",
|
|
3448
|
+
{ class: "list-filter-picker-title" },
|
|
3449
|
+
[
|
|
3450
|
+
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3451
|
+
],
|
|
3452
|
+
-1
|
|
3453
|
+
/* HOISTED */
|
|
3454
|
+
)),
|
|
3455
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
3362
3456
|
(openBlock(true), createElementBlock(
|
|
3363
3457
|
Fragment,
|
|
3364
3458
|
null,
|
|
@@ -3369,12 +3463,12 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3369
3463
|
[
|
|
3370
3464
|
createElementVNode(
|
|
3371
3465
|
"div",
|
|
3372
|
-
|
|
3466
|
+
_hoisted_3$8,
|
|
3373
3467
|
toDisplayString(item.label),
|
|
3374
3468
|
1
|
|
3375
3469
|
/* TEXT */
|
|
3376
3470
|
),
|
|
3377
|
-
createElementVNode("div",
|
|
3471
|
+
createElementVNode("div", _hoisted_4$6, [
|
|
3378
3472
|
(openBlock(true), createElementBlock(
|
|
3379
3473
|
Fragment,
|
|
3380
3474
|
null,
|
|
@@ -3383,7 +3477,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3383
3477
|
onClick: () => onFilterSectionClick(item.name, it.value),
|
|
3384
3478
|
class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
|
|
3385
3479
|
key: i
|
|
3386
|
-
}, toDisplayString(typeof it === "string" ? it : it.label), 11,
|
|
3480
|
+
}, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$5);
|
|
3387
3481
|
}),
|
|
3388
3482
|
128
|
|
3389
3483
|
/* KEYED_FRAGMENT */
|
|
@@ -3408,7 +3502,13 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3408
3502
|
onClick: onOkClick
|
|
3409
3503
|
}, "\u786E\u5B9A")
|
|
3410
3504
|
]),
|
|
3411
|
-
|
|
3505
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
3506
|
+
"div",
|
|
3507
|
+
{ class: "consumption-filter-bottom" },
|
|
3508
|
+
null,
|
|
3509
|
+
-1
|
|
3510
|
+
/* HOISTED */
|
|
3511
|
+
))
|
|
3412
3512
|
]);
|
|
3413
3513
|
};
|
|
3414
3514
|
}
|
|
@@ -3416,27 +3516,6 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3416
3516
|
|
|
3417
3517
|
script$m.__file = "src/balance/components/ListFilterPicker.vue";
|
|
3418
3518
|
|
|
3419
|
-
const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
|
|
3420
|
-
"span",
|
|
3421
|
-
{ class: "text" },
|
|
3422
|
-
"\u7B5B\u9009",
|
|
3423
|
-
-1
|
|
3424
|
-
/* HOISTED */
|
|
3425
|
-
);
|
|
3426
|
-
const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
|
|
3427
|
-
"img",
|
|
3428
|
-
{
|
|
3429
|
-
class: "icon",
|
|
3430
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3431
|
-
},
|
|
3432
|
-
null,
|
|
3433
|
-
-1
|
|
3434
|
-
/* HOISTED */
|
|
3435
|
-
);
|
|
3436
|
-
const _hoisted_3$d = [
|
|
3437
|
-
_hoisted_1$k,
|
|
3438
|
-
_hoisted_2$g
|
|
3439
|
-
];
|
|
3440
3519
|
var script$l = /* @__PURE__ */ defineComponent({
|
|
3441
3520
|
__name: "ListFilter",
|
|
3442
3521
|
props: {
|
|
@@ -3471,23 +3550,31 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
3471
3550
|
return openBlock(), createElementBlock("div", {
|
|
3472
3551
|
class: "list-filter",
|
|
3473
3552
|
onClick: openPicker
|
|
3474
|
-
}, [
|
|
3553
|
+
}, _cache[0] || (_cache[0] = [
|
|
3554
|
+
createElementVNode(
|
|
3555
|
+
"span",
|
|
3556
|
+
{ class: "text" },
|
|
3557
|
+
"\u7B5B\u9009",
|
|
3558
|
+
-1
|
|
3559
|
+
/* HOISTED */
|
|
3560
|
+
),
|
|
3561
|
+
createElementVNode(
|
|
3562
|
+
"img",
|
|
3563
|
+
{
|
|
3564
|
+
class: "icon",
|
|
3565
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3566
|
+
},
|
|
3567
|
+
null,
|
|
3568
|
+
-1
|
|
3569
|
+
/* HOISTED */
|
|
3570
|
+
)
|
|
3571
|
+
]));
|
|
3475
3572
|
};
|
|
3476
3573
|
}
|
|
3477
3574
|
});
|
|
3478
3575
|
|
|
3479
3576
|
script$l.__file = "src/balance/components/ListFilter.vue";
|
|
3480
3577
|
|
|
3481
|
-
const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
|
|
3482
|
-
"img",
|
|
3483
|
-
{
|
|
3484
|
-
class: "ocr-id__img",
|
|
3485
|
-
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3486
|
-
},
|
|
3487
|
-
null,
|
|
3488
|
-
-1
|
|
3489
|
-
/* HOISTED */
|
|
3490
|
-
);
|
|
3491
3578
|
var script$k = /* @__PURE__ */ defineComponent({
|
|
3492
3579
|
__name: "index",
|
|
3493
3580
|
emits: ["ocr"],
|
|
@@ -3577,7 +3664,16 @@ var script$k = /* @__PURE__ */ defineComponent({
|
|
|
3577
3664
|
onClick: ocrIDCard
|
|
3578
3665
|
}, [
|
|
3579
3666
|
renderSlot(_ctx.$slots, "icon", {}, () => [
|
|
3580
|
-
|
|
3667
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
3668
|
+
"img",
|
|
3669
|
+
{
|
|
3670
|
+
class: "ocr-id__img",
|
|
3671
|
+
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3672
|
+
},
|
|
3673
|
+
null,
|
|
3674
|
+
-1
|
|
3675
|
+
/* HOISTED */
|
|
3676
|
+
))
|
|
3581
3677
|
])
|
|
3582
3678
|
]);
|
|
3583
3679
|
};
|
|
@@ -3616,7 +3712,7 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
3616
3712
|
|
|
3617
3713
|
script$j.__file = "src/components/dd-icon/index.vue";
|
|
3618
3714
|
|
|
3619
|
-
const _hoisted_1$
|
|
3715
|
+
const _hoisted_1$h = { class: "dd-area" };
|
|
3620
3716
|
var script$i = /* @__PURE__ */ defineComponent({
|
|
3621
3717
|
__name: "index",
|
|
3622
3718
|
props: {
|
|
@@ -3776,7 +3872,7 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3776
3872
|
disabled: props.disabled
|
|
3777
3873
|
}, {
|
|
3778
3874
|
default: withCtx(() => [
|
|
3779
|
-
createElementVNode("div", _hoisted_1$
|
|
3875
|
+
createElementVNode("div", _hoisted_1$h, [
|
|
3780
3876
|
createElementVNode(
|
|
3781
3877
|
"div",
|
|
3782
3878
|
{
|
|
@@ -3806,8 +3902,8 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3806
3902
|
|
|
3807
3903
|
script$i.__file = "src/components/dd-area/index.vue";
|
|
3808
3904
|
|
|
3809
|
-
const _hoisted_1$
|
|
3810
|
-
const _hoisted_2$
|
|
3905
|
+
const _hoisted_1$g = { class: "dd-selector" };
|
|
3906
|
+
const _hoisted_2$c = { class: "dd-selector-value" };
|
|
3811
3907
|
var script$h = /* @__PURE__ */ defineComponent({
|
|
3812
3908
|
__name: "index",
|
|
3813
3909
|
props: {
|
|
@@ -3868,8 +3964,8 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3868
3964
|
}, {
|
|
3869
3965
|
default: withCtx(() => [
|
|
3870
3966
|
renderSlot(_ctx.$slots, "content", {}, () => [
|
|
3871
|
-
createElementVNode("div", _hoisted_1$
|
|
3872
|
-
createElementVNode("div", _hoisted_2$
|
|
3967
|
+
createElementVNode("div", _hoisted_1$g, [
|
|
3968
|
+
createElementVNode("div", _hoisted_2$c, [
|
|
3873
3969
|
createElementVNode(
|
|
3874
3970
|
"div",
|
|
3875
3971
|
{
|
|
@@ -3906,11 +4002,11 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3906
4002
|
|
|
3907
4003
|
script$h.__file = "src/components/dd-selector/index.vue";
|
|
3908
4004
|
|
|
3909
|
-
const _hoisted_1$
|
|
3910
|
-
const _hoisted_2$
|
|
3911
|
-
const _hoisted_3$
|
|
3912
|
-
const _hoisted_4$
|
|
3913
|
-
const _hoisted_5$
|
|
4005
|
+
const _hoisted_1$f = { class: "self-registration" };
|
|
4006
|
+
const _hoisted_2$b = { class: "self-registration-body" };
|
|
4007
|
+
const _hoisted_3$7 = ["src"];
|
|
4008
|
+
const _hoisted_4$5 = { class: "self-registration__input" };
|
|
4009
|
+
const _hoisted_5$4 = { class: "self-registration-bottom" };
|
|
3914
4010
|
var script$g = /* @__PURE__ */ defineComponent({
|
|
3915
4011
|
__name: "SelfRegistration",
|
|
3916
4012
|
props: {
|
|
@@ -4013,13 +4109,13 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4013
4109
|
const _component_nut_form_item = FormItem;
|
|
4014
4110
|
const _component_nut_form = Form;
|
|
4015
4111
|
const _component_nut_button = Button;
|
|
4016
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4017
|
-
createElementVNode("div", _hoisted_2$
|
|
4112
|
+
return openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
4113
|
+
createElementVNode("div", _hoisted_2$b, [
|
|
4018
4114
|
createElementVNode("img", {
|
|
4019
4115
|
src: _ctx.banner,
|
|
4020
4116
|
class: "self-registration-banner",
|
|
4021
4117
|
alt: ""
|
|
4022
|
-
}, null, 8, _hoisted_3$
|
|
4118
|
+
}, null, 8, _hoisted_3$7),
|
|
4023
4119
|
createVNode(_component_nut_form, null, {
|
|
4024
4120
|
default: withCtx(() => [
|
|
4025
4121
|
createVNode(_component_nut_form_item, {
|
|
@@ -4035,16 +4131,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4035
4131
|
}, {
|
|
4036
4132
|
default: withCtx(() => [
|
|
4037
4133
|
createVNode(_component_nut_radio, { label: "person" }, {
|
|
4038
|
-
default: withCtx(() => [
|
|
4134
|
+
default: withCtx(() => _cache[7] || (_cache[7] = [
|
|
4039
4135
|
createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
|
|
4040
|
-
]),
|
|
4136
|
+
])),
|
|
4041
4137
|
_: 1
|
|
4042
4138
|
/* STABLE */
|
|
4043
4139
|
}),
|
|
4044
4140
|
createVNode(_component_nut_radio, { label: "company" }, {
|
|
4045
|
-
default: withCtx(() => [
|
|
4141
|
+
default: withCtx(() => _cache[8] || (_cache[8] = [
|
|
4046
4142
|
createTextVNode("\u516C\u53F8\u4F7F\u7528")
|
|
4047
|
-
]),
|
|
4143
|
+
])),
|
|
4048
4144
|
_: 1
|
|
4049
4145
|
/* STABLE */
|
|
4050
4146
|
})
|
|
@@ -4061,7 +4157,7 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4061
4157
|
required: ""
|
|
4062
4158
|
}, {
|
|
4063
4159
|
default: withCtx(() => [
|
|
4064
|
-
createElementVNode("div", _hoisted_4$
|
|
4160
|
+
createElementVNode("div", _hoisted_4$5, [
|
|
4065
4161
|
withDirectives(createElementVNode(
|
|
4066
4162
|
"input",
|
|
4067
4163
|
{
|
|
@@ -4200,16 +4296,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4200
4296
|
/* STABLE */
|
|
4201
4297
|
})
|
|
4202
4298
|
]),
|
|
4203
|
-
createElementVNode("div", _hoisted_5$
|
|
4299
|
+
createElementVNode("div", _hoisted_5$4, [
|
|
4204
4300
|
createVNode(_component_nut_button, {
|
|
4205
4301
|
block: "",
|
|
4206
4302
|
type: "primary",
|
|
4207
4303
|
class: "experience-button",
|
|
4208
4304
|
onClick: submit
|
|
4209
4305
|
}, {
|
|
4210
|
-
default: withCtx(() => [
|
|
4306
|
+
default: withCtx(() => _cache[9] || (_cache[9] = [
|
|
4211
4307
|
createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
|
|
4212
|
-
]),
|
|
4308
|
+
])),
|
|
4213
4309
|
_: 1
|
|
4214
4310
|
/* STABLE */
|
|
4215
4311
|
})
|
|
@@ -4232,19 +4328,39 @@ const transforms$1 = Object.fromEntries(
|
|
|
4232
4328
|
Object.entries(endpointsList$1).map(([, def]) => [def.path, def.transform])
|
|
4233
4329
|
);
|
|
4234
4330
|
|
|
4331
|
+
const logger$1 = useLogger();
|
|
4235
4332
|
const vendor$1 = {
|
|
4236
4333
|
async request(config) {
|
|
4237
4334
|
return new Promise((resolve, reject) => {
|
|
4335
|
+
const header = {
|
|
4336
|
+
...config.headers,
|
|
4337
|
+
traceId: generateUniqueId("appkit")
|
|
4338
|
+
};
|
|
4339
|
+
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
4238
4340
|
Taro.request({
|
|
4239
4341
|
url: config.url,
|
|
4240
4342
|
method: config.method,
|
|
4241
|
-
header
|
|
4343
|
+
header,
|
|
4242
4344
|
data: config.data
|
|
4243
4345
|
}).then(({ data }) => {
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4247
|
-
|
|
4346
|
+
if (data.success) {
|
|
4347
|
+
resolve({
|
|
4348
|
+
status: +data.code,
|
|
4349
|
+
message: data.msg,
|
|
4350
|
+
data: data.result
|
|
4351
|
+
});
|
|
4352
|
+
} else if (data.code !== "401") {
|
|
4353
|
+
Taro.showToast({
|
|
4354
|
+
title: data.msg,
|
|
4355
|
+
icon: "none"
|
|
4356
|
+
});
|
|
4357
|
+
}
|
|
4358
|
+
const endTime = (/* @__PURE__ */ new Date()).getTime();
|
|
4359
|
+
logger$1.info({
|
|
4360
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
4361
|
+
receive: JSON.stringify(data),
|
|
4362
|
+
traceId: header.traceId,
|
|
4363
|
+
duration: endTime - startTime
|
|
4248
4364
|
});
|
|
4249
4365
|
}).catch((e) => {
|
|
4250
4366
|
reject(e);
|
|
@@ -4296,22 +4412,8 @@ function useHttp$1() {
|
|
|
4296
4412
|
return $http;
|
|
4297
4413
|
}
|
|
4298
4414
|
|
|
4299
|
-
const _hoisted_1$
|
|
4300
|
-
|
|
4301
|
-
{ class: "notice-popup-hd" },
|
|
4302
|
-
[
|
|
4303
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
4304
|
-
class: "notice-popup-hd-icon",
|
|
4305
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4306
|
-
alt: ""
|
|
4307
|
-
}),
|
|
4308
|
-
/* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4309
|
-
],
|
|
4310
|
-
-1
|
|
4311
|
-
/* HOISTED */
|
|
4312
|
-
);
|
|
4313
|
-
const _hoisted_2$d = { class: "notice-popup-bd" };
|
|
4314
|
-
const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
|
|
4415
|
+
const _hoisted_1$e = { class: "notice-popup-bd" };
|
|
4416
|
+
const _hoisted_2$a = { style: { "white-space": "pre-wrap" } };
|
|
4315
4417
|
var script$f = /* @__PURE__ */ defineComponent({
|
|
4316
4418
|
__name: "NoticePopup",
|
|
4317
4419
|
props: {
|
|
@@ -4352,11 +4454,24 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
4352
4454
|
round: ""
|
|
4353
4455
|
}, {
|
|
4354
4456
|
default: withCtx(() => [
|
|
4355
|
-
|
|
4356
|
-
|
|
4457
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
4458
|
+
"div",
|
|
4459
|
+
{ class: "notice-popup-hd" },
|
|
4460
|
+
[
|
|
4461
|
+
createElementVNode("img", {
|
|
4462
|
+
class: "notice-popup-hd-icon",
|
|
4463
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4464
|
+
alt: ""
|
|
4465
|
+
}),
|
|
4466
|
+
createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4467
|
+
],
|
|
4468
|
+
-1
|
|
4469
|
+
/* HOISTED */
|
|
4470
|
+
)),
|
|
4471
|
+
createElementVNode("div", _hoisted_1$e, [
|
|
4357
4472
|
createElementVNode(
|
|
4358
4473
|
"div",
|
|
4359
|
-
|
|
4474
|
+
_hoisted_2$a,
|
|
4360
4475
|
toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
|
|
4361
4476
|
1
|
|
4362
4477
|
/* TEXT */
|
|
@@ -4409,19 +4524,8 @@ function useNotice() {
|
|
|
4409
4524
|
};
|
|
4410
4525
|
}
|
|
4411
4526
|
|
|
4412
|
-
const _hoisted_1$
|
|
4413
|
-
|
|
4414
|
-
{
|
|
4415
|
-
class: "notice-banner-icon",
|
|
4416
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4417
|
-
alt: ""
|
|
4418
|
-
},
|
|
4419
|
-
null,
|
|
4420
|
-
-1
|
|
4421
|
-
/* HOISTED */
|
|
4422
|
-
);
|
|
4423
|
-
const _hoisted_2$c = { class: "notice-banner-text" };
|
|
4424
|
-
const _hoisted_3$a = ["onClick"];
|
|
4527
|
+
const _hoisted_1$d = { class: "notice-banner-text" };
|
|
4528
|
+
const _hoisted_2$9 = ["onClick"];
|
|
4425
4529
|
var script$e = /* @__PURE__ */ defineComponent({
|
|
4426
4530
|
__name: "NoticeBanner",
|
|
4427
4531
|
props: {
|
|
@@ -4553,10 +4657,20 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4553
4657
|
onClose: ($event) => unref(onClose)(item, key)
|
|
4554
4658
|
}, {
|
|
4555
4659
|
default: withCtx(() => [
|
|
4556
|
-
|
|
4660
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
4661
|
+
"img",
|
|
4662
|
+
{
|
|
4663
|
+
class: "notice-banner-icon",
|
|
4664
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4665
|
+
alt: ""
|
|
4666
|
+
},
|
|
4667
|
+
null,
|
|
4668
|
+
-1
|
|
4669
|
+
/* HOISTED */
|
|
4670
|
+
)),
|
|
4557
4671
|
createElementVNode(
|
|
4558
4672
|
"div",
|
|
4559
|
-
|
|
4673
|
+
_hoisted_1$d,
|
|
4560
4674
|
toDisplayString(item.context),
|
|
4561
4675
|
1
|
|
4562
4676
|
/* TEXT */
|
|
@@ -4564,7 +4678,7 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4564
4678
|
createElementVNode("div", {
|
|
4565
4679
|
class: "notice-banner-btn",
|
|
4566
4680
|
onClick: ($event) => onDetail(item)
|
|
4567
|
-
}, "\u8BE6\u60C5", 8,
|
|
4681
|
+
}, "\u8BE6\u60C5", 8, _hoisted_2$9)
|
|
4568
4682
|
]),
|
|
4569
4683
|
_: 2
|
|
4570
4684
|
/* DYNAMIC */
|
|
@@ -4602,26 +4716,8 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4602
4716
|
|
|
4603
4717
|
script$e.__file = "src/notice/components/NoticeBanner.vue";
|
|
4604
4718
|
|
|
4605
|
-
const _hoisted_1$
|
|
4606
|
-
const _hoisted_2$
|
|
4607
|
-
"img",
|
|
4608
|
-
{
|
|
4609
|
-
class: "notice-entry-img",
|
|
4610
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4611
|
-
alt: ""
|
|
4612
|
-
},
|
|
4613
|
-
null,
|
|
4614
|
-
-1
|
|
4615
|
-
/* HOISTED */
|
|
4616
|
-
);
|
|
4617
|
-
const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
|
|
4618
|
-
"span",
|
|
4619
|
-
null,
|
|
4620
|
-
"\u901A\u77E5",
|
|
4621
|
-
-1
|
|
4622
|
-
/* HOISTED */
|
|
4623
|
-
);
|
|
4624
|
-
const _hoisted_4$8 = {
|
|
4719
|
+
const _hoisted_1$c = { class: "notice-entry" };
|
|
4720
|
+
const _hoisted_2$8 = {
|
|
4625
4721
|
key: 0,
|
|
4626
4722
|
class: "notice-entry-icon"
|
|
4627
4723
|
};
|
|
@@ -4661,10 +4757,26 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4661
4757
|
});
|
|
4662
4758
|
}
|
|
4663
4759
|
return (_ctx, _cache) => {
|
|
4664
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4665
|
-
|
|
4666
|
-
|
|
4667
|
-
|
|
4760
|
+
return openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
4761
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
4762
|
+
"img",
|
|
4763
|
+
{
|
|
4764
|
+
class: "notice-entry-img",
|
|
4765
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4766
|
+
alt: ""
|
|
4767
|
+
},
|
|
4768
|
+
null,
|
|
4769
|
+
-1
|
|
4770
|
+
/* HOISTED */
|
|
4771
|
+
)),
|
|
4772
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
4773
|
+
"span",
|
|
4774
|
+
null,
|
|
4775
|
+
"\u901A\u77E5",
|
|
4776
|
+
-1
|
|
4777
|
+
/* HOISTED */
|
|
4778
|
+
)),
|
|
4779
|
+
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
|
|
4668
4780
|
]);
|
|
4669
4781
|
};
|
|
4670
4782
|
}
|
|
@@ -4672,34 +4784,9 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4672
4784
|
|
|
4673
4785
|
script$d.__file = "src/notice/components/NoticeEntry.vue";
|
|
4674
4786
|
|
|
4675
|
-
const _hoisted_1$
|
|
4676
|
-
const _hoisted_2$
|
|
4677
|
-
|
|
4678
|
-
{ class: "dd-search__prefix" },
|
|
4679
|
-
[
|
|
4680
|
-
/* @__PURE__ */ createElementVNode("image", {
|
|
4681
|
-
class: "full-img",
|
|
4682
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4683
|
-
})
|
|
4684
|
-
],
|
|
4685
|
-
-1
|
|
4686
|
-
/* HOISTED */
|
|
4687
|
-
);
|
|
4688
|
-
const _hoisted_3$8 = { class: "dd-search__control" };
|
|
4689
|
-
const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
|
|
4690
|
-
const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
|
|
4691
|
-
"image",
|
|
4692
|
-
{
|
|
4693
|
-
class: "full-img",
|
|
4694
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4695
|
-
},
|
|
4696
|
-
null,
|
|
4697
|
-
-1
|
|
4698
|
-
/* HOISTED */
|
|
4699
|
-
);
|
|
4700
|
-
const _hoisted_6$5 = [
|
|
4701
|
-
_hoisted_5$7
|
|
4702
|
-
];
|
|
4787
|
+
const _hoisted_1$b = { class: "dd-search__form" };
|
|
4788
|
+
const _hoisted_2$7 = { class: "dd-search__control" };
|
|
4789
|
+
const _hoisted_3$6 = ["disabled", "placeholder", "focus"];
|
|
4703
4790
|
var script$c = /* @__PURE__ */ defineComponent({
|
|
4704
4791
|
__name: "index",
|
|
4705
4792
|
props: {
|
|
@@ -4753,9 +4840,20 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4753
4840
|
}])
|
|
4754
4841
|
},
|
|
4755
4842
|
[
|
|
4756
|
-
createElementVNode("div", _hoisted_1$
|
|
4757
|
-
|
|
4758
|
-
|
|
4843
|
+
createElementVNode("div", _hoisted_1$b, [
|
|
4844
|
+
_cache[2] || (_cache[2] = createElementVNode(
|
|
4845
|
+
"div",
|
|
4846
|
+
{ class: "dd-search__prefix" },
|
|
4847
|
+
[
|
|
4848
|
+
createElementVNode("image", {
|
|
4849
|
+
class: "full-img",
|
|
4850
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4851
|
+
})
|
|
4852
|
+
],
|
|
4853
|
+
-1
|
|
4854
|
+
/* HOISTED */
|
|
4855
|
+
)),
|
|
4856
|
+
createElementVNode("div", _hoisted_2$7, [
|
|
4759
4857
|
withDirectives(createElementVNode("input", {
|
|
4760
4858
|
class: "dd-search__input",
|
|
4761
4859
|
type: "text",
|
|
@@ -4769,7 +4867,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4769
4867
|
onConfirm,
|
|
4770
4868
|
onFocus: onFoucs,
|
|
4771
4869
|
onBlur
|
|
4772
|
-
}, null, 40,
|
|
4870
|
+
}, null, 40, _hoisted_3$6), [
|
|
4773
4871
|
[vModelText, key.value]
|
|
4774
4872
|
])
|
|
4775
4873
|
]),
|
|
@@ -4779,7 +4877,18 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4779
4877
|
class: "dd-search__suffix",
|
|
4780
4878
|
onTap: onClear
|
|
4781
4879
|
},
|
|
4782
|
-
[
|
|
4880
|
+
_cache[1] || (_cache[1] = [
|
|
4881
|
+
createElementVNode(
|
|
4882
|
+
"image",
|
|
4883
|
+
{
|
|
4884
|
+
class: "full-img",
|
|
4885
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4886
|
+
},
|
|
4887
|
+
null,
|
|
4888
|
+
-1
|
|
4889
|
+
/* HOISTED */
|
|
4890
|
+
)
|
|
4891
|
+
]),
|
|
4783
4892
|
544
|
|
4784
4893
|
/* NEED_HYDRATION, NEED_PATCH */
|
|
4785
4894
|
), [
|
|
@@ -4860,59 +4969,28 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
|
|
|
4860
4969
|
};
|
|
4861
4970
|
}
|
|
4862
4971
|
|
|
4863
|
-
const _hoisted_1$
|
|
4864
|
-
const _hoisted_2$
|
|
4865
|
-
const _hoisted_3$
|
|
4972
|
+
const _hoisted_1$a = { class: "notice-list" };
|
|
4973
|
+
const _hoisted_2$6 = { style: { "flex": "1", "overflow": "hidden" } };
|
|
4974
|
+
const _hoisted_3$5 = {
|
|
4866
4975
|
key: 0,
|
|
4867
4976
|
class: "wrapper"
|
|
4868
4977
|
};
|
|
4869
|
-
const _hoisted_4$
|
|
4870
|
-
const _hoisted_5$
|
|
4871
|
-
|
|
4872
|
-
{ class: "point" },
|
|
4873
|
-
null,
|
|
4874
|
-
-1
|
|
4875
|
-
/* HOISTED */
|
|
4876
|
-
);
|
|
4877
|
-
const _hoisted_6$4 = { class: "time" };
|
|
4878
|
-
const _hoisted_7$3 = {
|
|
4978
|
+
const _hoisted_4$4 = ["onClick"];
|
|
4979
|
+
const _hoisted_5$3 = { class: "time" };
|
|
4980
|
+
const _hoisted_6$2 = {
|
|
4879
4981
|
key: 0,
|
|
4880
4982
|
class: "notice-list-label"
|
|
4881
4983
|
};
|
|
4882
|
-
const
|
|
4883
|
-
const
|
|
4984
|
+
const _hoisted_7$2 = ["onClick"];
|
|
4985
|
+
const _hoisted_8$2 = {
|
|
4884
4986
|
key: 0,
|
|
4885
4987
|
class: "cue-text",
|
|
4886
4988
|
style: { "padding-bottom": "40px" }
|
|
4887
4989
|
};
|
|
4888
|
-
const
|
|
4990
|
+
const _hoisted_9$1 = {
|
|
4889
4991
|
key: 1,
|
|
4890
4992
|
class: "no-data"
|
|
4891
4993
|
};
|
|
4892
|
-
const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
|
|
4893
|
-
"div",
|
|
4894
|
-
{ class: "no-data-img" },
|
|
4895
|
-
[
|
|
4896
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
4897
|
-
style: { "width": "100%", "height": "100%" },
|
|
4898
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
4899
|
-
alt: ""
|
|
4900
|
-
})
|
|
4901
|
-
],
|
|
4902
|
-
-1
|
|
4903
|
-
/* HOISTED */
|
|
4904
|
-
);
|
|
4905
|
-
const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
|
|
4906
|
-
"div",
|
|
4907
|
-
{ class: "text" },
|
|
4908
|
-
"\u6682\u65E0\u8BB0\u5F55",
|
|
4909
|
-
-1
|
|
4910
|
-
/* HOISTED */
|
|
4911
|
-
);
|
|
4912
|
-
const _hoisted_13$2 = [
|
|
4913
|
-
_hoisted_11$2,
|
|
4914
|
-
_hoisted_12$2
|
|
4915
|
-
];
|
|
4916
4994
|
var script$b = /* @__PURE__ */ defineComponent({
|
|
4917
4995
|
__name: "NoticeList",
|
|
4918
4996
|
props: {
|
|
@@ -4987,7 +5065,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4987
5065
|
return (_ctx, _cache) => {
|
|
4988
5066
|
const _component_rich_text = resolveComponent("rich-text");
|
|
4989
5067
|
const _component_scroll_view = resolveComponent("scroll-view");
|
|
4990
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5068
|
+
return openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
4991
5069
|
createVNode(script$c, {
|
|
4992
5070
|
bordered: false,
|
|
4993
5071
|
focus: false,
|
|
@@ -4995,8 +5073,8 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4995
5073
|
placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
|
|
4996
5074
|
onSearch
|
|
4997
5075
|
}, null, 8, ["value"]),
|
|
4998
|
-
createElementVNode("div", _hoisted_2$
|
|
4999
|
-
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
5076
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
5077
|
+
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
|
|
5000
5078
|
createVNode(_component_scroll_view, {
|
|
5001
5079
|
class: "content",
|
|
5002
5080
|
"scroll-y": true,
|
|
@@ -5017,11 +5095,17 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5017
5095
|
key: index,
|
|
5018
5096
|
onClick: ($event) => notifyRead(item, index)
|
|
5019
5097
|
}, [
|
|
5020
|
-
|
|
5098
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
5099
|
+
"div",
|
|
5100
|
+
{ class: "point" },
|
|
5101
|
+
null,
|
|
5102
|
+
-1
|
|
5103
|
+
/* HOISTED */
|
|
5104
|
+
)),
|
|
5021
5105
|
createElementVNode("div", null, [
|
|
5022
5106
|
createElementVNode(
|
|
5023
5107
|
"div",
|
|
5024
|
-
|
|
5108
|
+
_hoisted_5$3,
|
|
5025
5109
|
toDisplayString(formatMinutes(item.receiveTime)),
|
|
5026
5110
|
1
|
|
5027
5111
|
/* TEXT */
|
|
@@ -5041,7 +5125,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5041
5125
|
),
|
|
5042
5126
|
_ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
|
|
5043
5127
|
"div",
|
|
5044
|
-
|
|
5128
|
+
_hoisted_6$2,
|
|
5045
5129
|
toDisplayString(appMap[item.appCode]),
|
|
5046
5130
|
1
|
|
5047
5131
|
/* TEXT */
|
|
@@ -5064,23 +5148,44 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5064
5148
|
key: 0,
|
|
5065
5149
|
class: "notice-list-file",
|
|
5066
5150
|
onClick: ($event) => onNoticeView(item.link)
|
|
5067
|
-
}, " \u67E5\u770B\u9644\u4EF6 ", 8,
|
|
5151
|
+
}, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$2)) : createCommentVNode("v-if", true)
|
|
5068
5152
|
],
|
|
5069
5153
|
2
|
|
5070
5154
|
/* CLASS */
|
|
5071
5155
|
)
|
|
5072
5156
|
])
|
|
5073
|
-
], 10, _hoisted_4$
|
|
5157
|
+
], 10, _hoisted_4$4);
|
|
5074
5158
|
}),
|
|
5075
5159
|
128
|
|
5076
5160
|
/* KEYED_FRAGMENT */
|
|
5077
5161
|
)),
|
|
5078
|
-
unref(isLast) ? (openBlock(), createElementBlock("div",
|
|
5162
|
+
unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_8$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
5079
5163
|
]),
|
|
5080
5164
|
_: 1
|
|
5081
5165
|
/* STABLE */
|
|
5082
5166
|
}, 8, ["refresherTriggered", "onScrolltolower"])
|
|
5083
|
-
])) : (openBlock(), createElementBlock("div",
|
|
5167
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_9$1, _cache[1] || (_cache[1] = [
|
|
5168
|
+
createElementVNode(
|
|
5169
|
+
"div",
|
|
5170
|
+
{ class: "no-data-img" },
|
|
5171
|
+
[
|
|
5172
|
+
createElementVNode("img", {
|
|
5173
|
+
style: { "width": "100%", "height": "100%" },
|
|
5174
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
5175
|
+
alt: ""
|
|
5176
|
+
})
|
|
5177
|
+
],
|
|
5178
|
+
-1
|
|
5179
|
+
/* HOISTED */
|
|
5180
|
+
),
|
|
5181
|
+
createElementVNode(
|
|
5182
|
+
"div",
|
|
5183
|
+
{ class: "text" },
|
|
5184
|
+
"\u6682\u65E0\u8BB0\u5F55",
|
|
5185
|
+
-1
|
|
5186
|
+
/* HOISTED */
|
|
5187
|
+
)
|
|
5188
|
+
])))
|
|
5084
5189
|
])
|
|
5085
5190
|
]);
|
|
5086
5191
|
};
|
|
@@ -5089,24 +5194,10 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5089
5194
|
|
|
5090
5195
|
script$b.__file = "src/notice/components/NoticeList.vue";
|
|
5091
5196
|
|
|
5092
|
-
const _hoisted_1$
|
|
5093
|
-
const _hoisted_2$
|
|
5094
|
-
const _hoisted_3$
|
|
5095
|
-
const _hoisted_4$
|
|
5096
|
-
const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
|
|
5097
|
-
"span",
|
|
5098
|
-
{ class: "user-entry-bd-arrow" },
|
|
5099
|
-
">",
|
|
5100
|
-
-1
|
|
5101
|
-
/* HOISTED */
|
|
5102
|
-
);
|
|
5103
|
-
const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
|
|
5104
|
-
"span",
|
|
5105
|
-
{ class: "user-entry-bd-arrow" },
|
|
5106
|
-
">",
|
|
5107
|
-
-1
|
|
5108
|
-
/* HOISTED */
|
|
5109
|
-
);
|
|
5197
|
+
const _hoisted_1$9 = { class: "user-entry" };
|
|
5198
|
+
const _hoisted_2$5 = { class: "user-entry-head" };
|
|
5199
|
+
const _hoisted_3$4 = ["src"];
|
|
5200
|
+
const _hoisted_4$3 = { class: "user-entry-bd" };
|
|
5110
5201
|
var script$a = /* @__PURE__ */ defineComponent({
|
|
5111
5202
|
__name: "UserEntry",
|
|
5112
5203
|
props: {
|
|
@@ -5129,8 +5220,8 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5129
5220
|
}
|
|
5130
5221
|
const emits = __emit;
|
|
5131
5222
|
return (_ctx, _cache) => {
|
|
5132
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5133
|
-
createElementVNode("div", _hoisted_2$
|
|
5223
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
5224
|
+
createElementVNode("div", _hoisted_2$5, [
|
|
5134
5225
|
_ctx.avatar ? (openBlock(), createElementBlock("img", {
|
|
5135
5226
|
key: 0,
|
|
5136
5227
|
class: "user-entry-head-img",
|
|
@@ -5138,7 +5229,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5138
5229
|
mode: "aspectFit",
|
|
5139
5230
|
src: _ctx.avatar,
|
|
5140
5231
|
alt: ""
|
|
5141
|
-
}, null, 8, _hoisted_3$
|
|
5232
|
+
}, null, 8, _hoisted_3$4)) : (openBlock(), createElementBlock("img", {
|
|
5142
5233
|
key: 1,
|
|
5143
5234
|
class: "user-entry-head-img",
|
|
5144
5235
|
mode: "aspectFit",
|
|
@@ -5147,15 +5238,21 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5147
5238
|
alt: ""
|
|
5148
5239
|
}))
|
|
5149
5240
|
]),
|
|
5150
|
-
createElementVNode("div", _hoisted_4$
|
|
5241
|
+
createElementVNode("div", _hoisted_4$3, [
|
|
5151
5242
|
!_ctx.mobile ? (openBlock(), createElementBlock("div", {
|
|
5152
5243
|
key: 0,
|
|
5153
5244
|
class: "user-entry-bd-bigtxt",
|
|
5154
5245
|
onClick: toLogin
|
|
5155
|
-
}, [
|
|
5246
|
+
}, _cache[0] || (_cache[0] = [
|
|
5156
5247
|
createTextVNode(" \u8BF7\u767B\u5F55 "),
|
|
5157
|
-
|
|
5158
|
-
|
|
5248
|
+
createElementVNode(
|
|
5249
|
+
"span",
|
|
5250
|
+
{ class: "user-entry-bd-arrow" },
|
|
5251
|
+
">",
|
|
5252
|
+
-1
|
|
5253
|
+
/* HOISTED */
|
|
5254
|
+
)
|
|
5255
|
+
]))) : (openBlock(), createElementBlock(
|
|
5159
5256
|
Fragment,
|
|
5160
5257
|
{ key: 1 },
|
|
5161
5258
|
[
|
|
@@ -5168,7 +5265,13 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5168
5265
|
1
|
|
5169
5266
|
/* TEXT */
|
|
5170
5267
|
),
|
|
5171
|
-
|
|
5268
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
5269
|
+
"span",
|
|
5270
|
+
{ class: "user-entry-bd-arrow" },
|
|
5271
|
+
">",
|
|
5272
|
+
-1
|
|
5273
|
+
/* HOISTED */
|
|
5274
|
+
))
|
|
5172
5275
|
]),
|
|
5173
5276
|
createElementVNode(
|
|
5174
5277
|
"div",
|
|
@@ -5192,7 +5295,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5192
5295
|
|
|
5193
5296
|
script$a.__file = "src/user/components/UserEntry.vue";
|
|
5194
5297
|
|
|
5195
|
-
const _hoisted_1$
|
|
5298
|
+
const _hoisted_1$8 = { class: "dd-skeleton" };
|
|
5196
5299
|
var script$9 = /* @__PURE__ */ defineComponent({
|
|
5197
5300
|
__name: "index",
|
|
5198
5301
|
props: {
|
|
@@ -5203,7 +5306,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
5203
5306
|
setup(__props) {
|
|
5204
5307
|
return (_ctx, _cache) => {
|
|
5205
5308
|
const _component_nut_skeleton = Skeleton;
|
|
5206
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5309
|
+
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
5207
5310
|
(openBlock(true), createElementBlock(
|
|
5208
5311
|
Fragment,
|
|
5209
5312
|
null,
|
|
@@ -5249,19 +5352,39 @@ const transforms = Object.fromEntries(
|
|
|
5249
5352
|
Object.entries(endpointsList).map(([, def]) => [def.path, def.transform])
|
|
5250
5353
|
);
|
|
5251
5354
|
|
|
5355
|
+
const logger = useLogger();
|
|
5252
5356
|
const vendor = {
|
|
5253
5357
|
async request(config) {
|
|
5254
5358
|
return new Promise((resolve, reject) => {
|
|
5359
|
+
const header = {
|
|
5360
|
+
...config.headers,
|
|
5361
|
+
traceId: generateUniqueId("appkit")
|
|
5362
|
+
};
|
|
5363
|
+
const startTime = (/* @__PURE__ */ new Date()).getTime();
|
|
5255
5364
|
Taro.request({
|
|
5256
5365
|
url: config.url,
|
|
5257
5366
|
method: config.method,
|
|
5258
|
-
header
|
|
5367
|
+
header,
|
|
5259
5368
|
data: config.data
|
|
5260
5369
|
}).then(({ data }) => {
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5370
|
+
if (data.success) {
|
|
5371
|
+
resolve({
|
|
5372
|
+
status: +data.code,
|
|
5373
|
+
message: data.msg,
|
|
5374
|
+
data: data.result
|
|
5375
|
+
});
|
|
5376
|
+
} else if (data.code !== "401") {
|
|
5377
|
+
Taro.showToast({
|
|
5378
|
+
title: data.msg,
|
|
5379
|
+
icon: "none"
|
|
5380
|
+
});
|
|
5381
|
+
}
|
|
5382
|
+
const endTime = (/* @__PURE__ */ new Date()).getTime();
|
|
5383
|
+
logger.info({
|
|
5384
|
+
send: JSON.stringify({ url: config.url, data: config.data }),
|
|
5385
|
+
receive: JSON.stringify(data),
|
|
5386
|
+
traceId: header.traceId,
|
|
5387
|
+
duration: endTime - startTime
|
|
5265
5388
|
});
|
|
5266
5389
|
}).catch((e) => {
|
|
5267
5390
|
reject(e);
|
|
@@ -5317,77 +5440,49 @@ function useHttp() {
|
|
|
5317
5440
|
return $http;
|
|
5318
5441
|
}
|
|
5319
5442
|
|
|
5320
|
-
const _hoisted_1$
|
|
5443
|
+
const _hoisted_1$7 = {
|
|
5321
5444
|
key: 1,
|
|
5322
5445
|
class: "user-info-wrap"
|
|
5323
5446
|
};
|
|
5324
|
-
const _hoisted_2$
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
"\u8D26\u53F7\u4FE1\u606F",
|
|
5328
|
-
-1
|
|
5329
|
-
/* HOISTED */
|
|
5330
|
-
);
|
|
5331
|
-
const _hoisted_3$5 = { class: "user-info-head" };
|
|
5332
|
-
const _hoisted_4$4 = ["src"];
|
|
5333
|
-
const _hoisted_5$4 = {
|
|
5447
|
+
const _hoisted_2$4 = { class: "user-info-head" };
|
|
5448
|
+
const _hoisted_3$3 = ["src"];
|
|
5449
|
+
const _hoisted_4$2 = {
|
|
5334
5450
|
key: 1,
|
|
5335
5451
|
class: "user-info-head-img",
|
|
5336
5452
|
mode: "aspectFit",
|
|
5337
5453
|
src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
|
|
5338
5454
|
alt: ""
|
|
5339
5455
|
};
|
|
5340
|
-
const
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
/* @__PURE__ */ createElementVNode("img", {
|
|
5345
|
-
class: "user-info-head-upload-icon",
|
|
5346
|
-
mode: "aspectFit",
|
|
5347
|
-
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5348
|
-
alt: ""
|
|
5349
|
-
})
|
|
5350
|
-
],
|
|
5351
|
-
-1
|
|
5352
|
-
/* HOISTED */
|
|
5353
|
-
);
|
|
5354
|
-
const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
|
|
5355
|
-
"div",
|
|
5356
|
-
{ class: "user-info-tit" },
|
|
5357
|
-
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5358
|
-
-1
|
|
5359
|
-
/* HOISTED */
|
|
5360
|
-
);
|
|
5361
|
-
const _hoisted_8$1 = { class: "user-info-team" };
|
|
5362
|
-
const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
|
|
5363
|
-
const _hoisted_10$1 = ["src"];
|
|
5364
|
-
const _hoisted_11$1 = {
|
|
5456
|
+
const _hoisted_5$2 = { class: "user-info-team" };
|
|
5457
|
+
const _hoisted_6$1 = { class: "user-info-team-item-avatar" };
|
|
5458
|
+
const _hoisted_7$1 = ["src"];
|
|
5459
|
+
const _hoisted_8$1 = {
|
|
5365
5460
|
key: 1,
|
|
5366
5461
|
class: "user-info-team-item-avatar-img empty",
|
|
5367
5462
|
mode: "aspectFit",
|
|
5368
5463
|
src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
|
|
5369
5464
|
alt: ""
|
|
5370
5465
|
};
|
|
5371
|
-
const
|
|
5372
|
-
const
|
|
5373
|
-
const
|
|
5466
|
+
const _hoisted_9 = { class: "user-info-team-item-bd" };
|
|
5467
|
+
const _hoisted_10 = { class: "user-info-team-item-title" };
|
|
5468
|
+
const _hoisted_11 = {
|
|
5374
5469
|
key: 0,
|
|
5375
5470
|
class: "user-info-team-item-app"
|
|
5376
5471
|
};
|
|
5377
|
-
const
|
|
5378
|
-
const
|
|
5472
|
+
const _hoisted_12 = ["onClick"];
|
|
5473
|
+
const _hoisted_13 = {
|
|
5379
5474
|
key: 1,
|
|
5380
5475
|
class: "user-info-team-item-role"
|
|
5381
5476
|
};
|
|
5382
|
-
const
|
|
5383
|
-
const
|
|
5384
|
-
const
|
|
5385
|
-
const
|
|
5386
|
-
const
|
|
5387
|
-
const
|
|
5388
|
-
const
|
|
5389
|
-
const
|
|
5390
|
-
const
|
|
5477
|
+
const _hoisted_14 = { class: "user-info-team-item-role-item-name" };
|
|
5478
|
+
const _hoisted_15 = { class: "user-info-team-item-role-item-info" };
|
|
5479
|
+
const _hoisted_16 = { class: "user-info-team-item-user" };
|
|
5480
|
+
const _hoisted_17 = ["onClick"];
|
|
5481
|
+
const _hoisted_18 = { class: "user-info-team-item-dept" };
|
|
5482
|
+
const _hoisted_19 = { class: "user-info-ft" };
|
|
5483
|
+
const _hoisted_20 = { class: "upload-avatar-popup-box" };
|
|
5484
|
+
const _hoisted_21 = ["src"];
|
|
5485
|
+
const _hoisted_22 = {
|
|
5391
5486
|
key: 1,
|
|
5392
5487
|
class: "upload-avatar-popup-avatar",
|
|
5393
5488
|
mode: "aspectFit",
|
|
@@ -5565,9 +5660,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5565
5660
|
firstLoading.value ? (openBlock(), createBlock(script$9, {
|
|
5566
5661
|
key: 0,
|
|
5567
5662
|
row: 3
|
|
5568
|
-
})) : (openBlock(), createElementBlock("div", _hoisted_1$
|
|
5569
|
-
|
|
5570
|
-
|
|
5663
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
5664
|
+
_cache[7] || (_cache[7] = createElementVNode(
|
|
5665
|
+
"div",
|
|
5666
|
+
{ class: "user-info-tit" },
|
|
5667
|
+
"\u8D26\u53F7\u4FE1\u606F",
|
|
5668
|
+
-1
|
|
5669
|
+
/* HOISTED */
|
|
5670
|
+
)),
|
|
5671
|
+
createElementVNode("div", _hoisted_2$4, [
|
|
5571
5672
|
createElementVNode("div", {
|
|
5572
5673
|
class: "user-info-head-avatar",
|
|
5573
5674
|
onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
|
|
@@ -5578,8 +5679,21 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5578
5679
|
mode: "aspectFit",
|
|
5579
5680
|
src: userInfo.value.avatar,
|
|
5580
5681
|
alt: ""
|
|
5581
|
-
}, null, 8,
|
|
5582
|
-
|
|
5682
|
+
}, null, 8, _hoisted_3$3)) : (openBlock(), createElementBlock("img", _hoisted_4$2)),
|
|
5683
|
+
_cache[4] || (_cache[4] = createElementVNode(
|
|
5684
|
+
"div",
|
|
5685
|
+
{ class: "user-info-head-upload" },
|
|
5686
|
+
[
|
|
5687
|
+
createElementVNode("img", {
|
|
5688
|
+
class: "user-info-head-upload-icon",
|
|
5689
|
+
mode: "aspectFit",
|
|
5690
|
+
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5691
|
+
alt: ""
|
|
5692
|
+
})
|
|
5693
|
+
],
|
|
5694
|
+
-1
|
|
5695
|
+
/* HOISTED */
|
|
5696
|
+
))
|
|
5583
5697
|
]),
|
|
5584
5698
|
createVNode(_component_nut_cell, {
|
|
5585
5699
|
title: "\u767B\u5F55\u624B\u673A\u53F7",
|
|
@@ -5588,8 +5702,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5588
5702
|
onClick: toBinding
|
|
5589
5703
|
}, null, 8, ["desc"])
|
|
5590
5704
|
]),
|
|
5591
|
-
|
|
5592
|
-
|
|
5705
|
+
_cache[8] || (_cache[8] = createElementVNode(
|
|
5706
|
+
"div",
|
|
5707
|
+
{ class: "user-info-tit" },
|
|
5708
|
+
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5709
|
+
-1
|
|
5710
|
+
/* HOISTED */
|
|
5711
|
+
)),
|
|
5712
|
+
createElementVNode("div", _hoisted_5$2, [
|
|
5593
5713
|
(openBlock(true), createElementBlock(
|
|
5594
5714
|
Fragment,
|
|
5595
5715
|
null,
|
|
@@ -5598,24 +5718,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5598
5718
|
key,
|
|
5599
5719
|
class: "user-info-team-item"
|
|
5600
5720
|
}, [
|
|
5601
|
-
createElementVNode("div",
|
|
5721
|
+
createElementVNode("div", _hoisted_6$1, [
|
|
5602
5722
|
item.tenantLogo ? (openBlock(), createElementBlock("img", {
|
|
5603
5723
|
key: 0,
|
|
5604
5724
|
class: "user-info-team-item-avatar-img",
|
|
5605
5725
|
mode: "aspectFit",
|
|
5606
5726
|
src: item.tenantLogo,
|
|
5607
5727
|
alt: ""
|
|
5608
|
-
}, null, 8,
|
|
5728
|
+
}, null, 8, _hoisted_7$1)) : (openBlock(), createElementBlock("img", _hoisted_8$1))
|
|
5609
5729
|
]),
|
|
5610
|
-
createElementVNode("div",
|
|
5730
|
+
createElementVNode("div", _hoisted_9, [
|
|
5611
5731
|
createElementVNode(
|
|
5612
5732
|
"div",
|
|
5613
|
-
|
|
5733
|
+
_hoisted_10,
|
|
5614
5734
|
toDisplayString(item.tenantName),
|
|
5615
5735
|
1
|
|
5616
5736
|
/* TEXT */
|
|
5617
5737
|
),
|
|
5618
|
-
item.appRoleInfo ? (openBlock(), createElementBlock("div",
|
|
5738
|
+
item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_11, [
|
|
5619
5739
|
(openBlock(true), createElementBlock(
|
|
5620
5740
|
Fragment,
|
|
5621
5741
|
null,
|
|
@@ -5638,7 +5758,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5638
5758
|
class: "user-info-team-item-role-btn",
|
|
5639
5759
|
onClick: ($event) => toShowRole(item)
|
|
5640
5760
|
}, [
|
|
5641
|
-
createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
|
|
5761
|
+
_cache[5] || (_cache[5] = createTextVNode(" \u89D2\u8272\u8BE6\u60C5 ")),
|
|
5642
5762
|
createElementVNode(
|
|
5643
5763
|
"img",
|
|
5644
5764
|
{
|
|
@@ -5650,9 +5770,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5650
5770
|
2
|
|
5651
5771
|
/* CLASS */
|
|
5652
5772
|
)
|
|
5653
|
-
], 8,
|
|
5773
|
+
], 8, _hoisted_12)
|
|
5654
5774
|
])) : createCommentVNode("v-if", true),
|
|
5655
|
-
item.showRole ? (openBlock(), createElementBlock("div",
|
|
5775
|
+
item.showRole ? (openBlock(), createElementBlock("div", _hoisted_13, [
|
|
5656
5776
|
(openBlock(true), createElementBlock(
|
|
5657
5777
|
Fragment,
|
|
5658
5778
|
null,
|
|
@@ -5663,14 +5783,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5663
5783
|
}, [
|
|
5664
5784
|
createElementVNode(
|
|
5665
5785
|
"div",
|
|
5666
|
-
|
|
5786
|
+
_hoisted_14,
|
|
5667
5787
|
toDisplayString(aitem.appAbbr),
|
|
5668
5788
|
1
|
|
5669
5789
|
/* TEXT */
|
|
5670
5790
|
),
|
|
5671
5791
|
createElementVNode(
|
|
5672
5792
|
"div",
|
|
5673
|
-
|
|
5793
|
+
_hoisted_15,
|
|
5674
5794
|
toDisplayString(aitem.roleName),
|
|
5675
5795
|
1
|
|
5676
5796
|
/* TEXT */
|
|
@@ -5681,7 +5801,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5681
5801
|
/* KEYED_FRAGMENT */
|
|
5682
5802
|
))
|
|
5683
5803
|
])) : createCommentVNode("v-if", true),
|
|
5684
|
-
createElementVNode("div",
|
|
5804
|
+
createElementVNode("div", _hoisted_16, [
|
|
5685
5805
|
createTextVNode(
|
|
5686
5806
|
toDisplayString(item.fullName) + " ",
|
|
5687
5807
|
1
|
|
@@ -5692,9 +5812,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5692
5812
|
class: "user-info-team-item-user-icon",
|
|
5693
5813
|
src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
|
|
5694
5814
|
alt: ""
|
|
5695
|
-
}, null, 8,
|
|
5815
|
+
}, null, 8, _hoisted_17)
|
|
5696
5816
|
]),
|
|
5697
|
-
createElementVNode("div",
|
|
5817
|
+
createElementVNode("div", _hoisted_18, [
|
|
5698
5818
|
(openBlock(true), createElementBlock(
|
|
5699
5819
|
Fragment,
|
|
5700
5820
|
null,
|
|
@@ -5721,7 +5841,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5721
5841
|
/* KEYED_FRAGMENT */
|
|
5722
5842
|
))
|
|
5723
5843
|
]),
|
|
5724
|
-
createElementVNode("div",
|
|
5844
|
+
createElementVNode("div", _hoisted_19, [
|
|
5725
5845
|
createVNode(_component_nut_button, {
|
|
5726
5846
|
class: "user-info-ft-btn",
|
|
5727
5847
|
style: { "width": "100%" },
|
|
@@ -5729,9 +5849,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5729
5849
|
plain: "",
|
|
5730
5850
|
type: "primary"
|
|
5731
5851
|
}, {
|
|
5732
|
-
default: withCtx(() => [
|
|
5852
|
+
default: withCtx(() => _cache[6] || (_cache[6] = [
|
|
5733
5853
|
createTextVNode("\u9000\u51FA\u767B\u5F55")
|
|
5734
|
-
]),
|
|
5854
|
+
])),
|
|
5735
5855
|
_: 1
|
|
5736
5856
|
/* STABLE */
|
|
5737
5857
|
})
|
|
@@ -5756,9 +5876,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5756
5876
|
type: "default",
|
|
5757
5877
|
onClick: onUserNameCancel
|
|
5758
5878
|
}, {
|
|
5759
|
-
default: withCtx(() => [
|
|
5879
|
+
default: withCtx(() => _cache[9] || (_cache[9] = [
|
|
5760
5880
|
createTextVNode(" \u53D6\u6D88 ")
|
|
5761
|
-
]),
|
|
5881
|
+
])),
|
|
5762
5882
|
_: 1
|
|
5763
5883
|
/* STABLE */
|
|
5764
5884
|
}),
|
|
@@ -5767,9 +5887,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5767
5887
|
type: "primary",
|
|
5768
5888
|
onClick: onUserNameOk
|
|
5769
5889
|
}, {
|
|
5770
|
-
default: withCtx(() => [
|
|
5890
|
+
default: withCtx(() => _cache[10] || (_cache[10] = [
|
|
5771
5891
|
createTextVNode(" \u786E\u5B9A ")
|
|
5772
|
-
]),
|
|
5892
|
+
])),
|
|
5773
5893
|
_: 1
|
|
5774
5894
|
/* STABLE */
|
|
5775
5895
|
})
|
|
@@ -5794,14 +5914,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5794
5914
|
"overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
|
|
5795
5915
|
}, {
|
|
5796
5916
|
default: withCtx(() => [
|
|
5797
|
-
createElementVNode("div",
|
|
5917
|
+
createElementVNode("div", _hoisted_20, [
|
|
5798
5918
|
userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
|
|
5799
5919
|
key: 0,
|
|
5800
5920
|
class: "upload-avatar-popup-avatar",
|
|
5801
5921
|
mode: "aspectFit",
|
|
5802
5922
|
src: userInfo.value.avatar,
|
|
5803
5923
|
alt: ""
|
|
5804
|
-
}, null, 8,
|
|
5924
|
+
}, null, 8, _hoisted_21)) : (openBlock(), createElementBlock("img", _hoisted_22)),
|
|
5805
5925
|
createElementVNode("div", {
|
|
5806
5926
|
class: "upload-avatar-popup-btn",
|
|
5807
5927
|
onClick: toUpload
|
|
@@ -5821,15 +5941,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5821
5941
|
|
|
5822
5942
|
script$8.__file = "src/user/components/UserInfo.vue";
|
|
5823
5943
|
|
|
5824
|
-
const _hoisted_1$
|
|
5825
|
-
const _hoisted_2$
|
|
5826
|
-
const _hoisted_3$
|
|
5827
|
-
const _hoisted_4$
|
|
5944
|
+
const _hoisted_1$6 = { class: "user-binding" };
|
|
5945
|
+
const _hoisted_2$3 = { class: "user-binding-layout" };
|
|
5946
|
+
const _hoisted_3$2 = ["src"];
|
|
5947
|
+
const _hoisted_4$1 = {
|
|
5828
5948
|
key: 0,
|
|
5829
5949
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5830
5950
|
style: { "flex": "1" }
|
|
5831
5951
|
};
|
|
5832
|
-
const _hoisted_5$
|
|
5952
|
+
const _hoisted_5$1 = {
|
|
5833
5953
|
key: 1,
|
|
5834
5954
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5835
5955
|
style: { "flex": "1" }
|
|
@@ -5916,28 +6036,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5916
6036
|
const _component_nut_form_item = FormItem;
|
|
5917
6037
|
const _component_nut_button = Button;
|
|
5918
6038
|
const _component_nut_form = Form;
|
|
5919
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5920
|
-
createElementVNode("div", _hoisted_2$
|
|
6039
|
+
return openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
6040
|
+
createElementVNode("div", _hoisted_2$3, [
|
|
5921
6041
|
createElementVNode("img", {
|
|
5922
6042
|
class: "user-binding-img",
|
|
5923
6043
|
src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
|
|
5924
|
-
}, null, 8, _hoisted_3$
|
|
6044
|
+
}, null, 8, _hoisted_3$2),
|
|
5925
6045
|
createVNode(_component_nut_steps, {
|
|
5926
6046
|
current: current.value,
|
|
5927
6047
|
class: "user-binding-steps"
|
|
5928
6048
|
}, {
|
|
5929
6049
|
default: withCtx(() => [
|
|
5930
6050
|
createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
|
|
5931
|
-
default: withCtx(() => [
|
|
6051
|
+
default: withCtx(() => _cache[4] || (_cache[4] = [
|
|
5932
6052
|
createTextVNode("1")
|
|
5933
|
-
]),
|
|
6053
|
+
])),
|
|
5934
6054
|
_: 1
|
|
5935
6055
|
/* STABLE */
|
|
5936
6056
|
}),
|
|
5937
6057
|
createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
|
|
5938
|
-
default: withCtx(() => [
|
|
6058
|
+
default: withCtx(() => _cache[5] || (_cache[5] = [
|
|
5939
6059
|
createTextVNode("2")
|
|
5940
|
-
]),
|
|
6060
|
+
])),
|
|
5941
6061
|
_: 1
|
|
5942
6062
|
/* STABLE */
|
|
5943
6063
|
})
|
|
@@ -5946,7 +6066,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5946
6066
|
/* STABLE */
|
|
5947
6067
|
}, 8, ["current"])
|
|
5948
6068
|
]),
|
|
5949
|
-
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
6069
|
+
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
|
|
5950
6070
|
createVNode(_component_nut_form, null, {
|
|
5951
6071
|
default: withCtx(() => [
|
|
5952
6072
|
createVNode(_component_nut_form_item, {
|
|
@@ -6014,13 +6134,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6014
6134
|
type: "primary",
|
|
6015
6135
|
onClick: onAuth
|
|
6016
6136
|
}, {
|
|
6017
|
-
default: withCtx(() => [
|
|
6137
|
+
default: withCtx(() => _cache[6] || (_cache[6] = [
|
|
6018
6138
|
createTextVNode("\u63D0\u4EA4")
|
|
6019
|
-
]),
|
|
6139
|
+
])),
|
|
6020
6140
|
_: 1
|
|
6021
6141
|
/* STABLE */
|
|
6022
6142
|
}, 8, ["disabled"])
|
|
6023
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_5$
|
|
6143
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_5$1, [
|
|
6024
6144
|
createVNode(_component_nut_form, null, {
|
|
6025
6145
|
default: withCtx(() => [
|
|
6026
6146
|
createVNode(_component_nut_form_item, {
|
|
@@ -6087,9 +6207,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6087
6207
|
type: "primary",
|
|
6088
6208
|
onClick: onBinding
|
|
6089
6209
|
}, {
|
|
6090
|
-
default: withCtx(() => [
|
|
6210
|
+
default: withCtx(() => _cache[7] || (_cache[7] = [
|
|
6091
6211
|
createTextVNode("\u63D0\u4EA4")
|
|
6092
|
-
]),
|
|
6212
|
+
])),
|
|
6093
6213
|
_: 1
|
|
6094
6214
|
/* STABLE */
|
|
6095
6215
|
}, 8, ["disabled"])
|
|
@@ -6101,19 +6221,8 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6101
6221
|
|
|
6102
6222
|
script$7.__file = "src/user/components/UserBinding.vue";
|
|
6103
6223
|
|
|
6104
|
-
const _hoisted_1$
|
|
6105
|
-
const _hoisted_2$
|
|
6106
|
-
"img",
|
|
6107
|
-
{
|
|
6108
|
-
class: "user-binding-success-icon",
|
|
6109
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6110
|
-
alt: ""
|
|
6111
|
-
},
|
|
6112
|
-
null,
|
|
6113
|
-
-1
|
|
6114
|
-
/* HOISTED */
|
|
6115
|
-
);
|
|
6116
|
-
const _hoisted_3$3 = { class: "user-binding-success-info" };
|
|
6224
|
+
const _hoisted_1$5 = { class: "user-binding-success" };
|
|
6225
|
+
const _hoisted_2$2 = { class: "user-binding-success-info" };
|
|
6117
6226
|
var script$6 = /* @__PURE__ */ defineComponent({
|
|
6118
6227
|
__name: "UserBindingSuccess",
|
|
6119
6228
|
emits: ["binding"],
|
|
@@ -6132,11 +6241,21 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6132
6241
|
const emits = __emit;
|
|
6133
6242
|
return (_ctx, _cache) => {
|
|
6134
6243
|
const _component_nut_button = Button;
|
|
6135
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6136
|
-
|
|
6244
|
+
return openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
6245
|
+
_cache[2] || (_cache[2] = createElementVNode(
|
|
6246
|
+
"img",
|
|
6247
|
+
{
|
|
6248
|
+
class: "user-binding-success-icon",
|
|
6249
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6250
|
+
alt: ""
|
|
6251
|
+
},
|
|
6252
|
+
null,
|
|
6253
|
+
-1
|
|
6254
|
+
/* HOISTED */
|
|
6255
|
+
)),
|
|
6137
6256
|
createElementVNode(
|
|
6138
6257
|
"div",
|
|
6139
|
-
|
|
6258
|
+
_hoisted_2$2,
|
|
6140
6259
|
toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
|
|
6141
6260
|
1
|
|
6142
6261
|
/* TEXT */
|
|
@@ -6156,9 +6275,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6156
6275
|
type: "primary",
|
|
6157
6276
|
onClick: toBinding
|
|
6158
6277
|
}, {
|
|
6159
|
-
default: withCtx(() => [
|
|
6278
|
+
default: withCtx(() => _cache[1] || (_cache[1] = [
|
|
6160
6279
|
createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
|
|
6161
|
-
]),
|
|
6280
|
+
])),
|
|
6162
6281
|
_: 1
|
|
6163
6282
|
/* STABLE */
|
|
6164
6283
|
})
|
|
@@ -6776,39 +6895,11 @@ var script$5 = {
|
|
|
6776
6895
|
}
|
|
6777
6896
|
};
|
|
6778
6897
|
|
|
6779
|
-
const _hoisted_1$
|
|
6780
|
-
const _hoisted_2$
|
|
6781
|
-
const _hoisted_3$
|
|
6782
|
-
"view",
|
|
6783
|
-
{ class: "line row row1" },
|
|
6784
|
-
null,
|
|
6785
|
-
-1
|
|
6786
|
-
/* HOISTED */
|
|
6787
|
-
);
|
|
6788
|
-
const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
|
|
6789
|
-
"view",
|
|
6790
|
-
{ class: "line row row2" },
|
|
6791
|
-
null,
|
|
6792
|
-
-1
|
|
6793
|
-
/* HOISTED */
|
|
6794
|
-
);
|
|
6795
|
-
const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
|
|
6796
|
-
"view",
|
|
6797
|
-
{ class: "line col col1" },
|
|
6798
|
-
null,
|
|
6799
|
-
-1
|
|
6800
|
-
/* HOISTED */
|
|
6801
|
-
);
|
|
6802
|
-
const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
|
|
6803
|
-
"view",
|
|
6804
|
-
{ class: "line col col2" },
|
|
6805
|
-
null,
|
|
6806
|
-
-1
|
|
6807
|
-
/* HOISTED */
|
|
6808
|
-
);
|
|
6809
|
-
const _hoisted_7$1 = { class: "slot" };
|
|
6898
|
+
const _hoisted_1$4 = { class: "bt-container" };
|
|
6899
|
+
const _hoisted_2$1 = ["src"];
|
|
6900
|
+
const _hoisted_3$1 = { class: "slot" };
|
|
6810
6901
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6811
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
6902
|
+
return openBlock(), createElementBlock("view", _hoisted_1$4, [
|
|
6812
6903
|
createElementVNode("view", {
|
|
6813
6904
|
class: "iconfont icon-replay",
|
|
6814
6905
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
|
|
@@ -6828,7 +6919,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6828
6919
|
onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
|
|
6829
6920
|
style: normalizeStyle([$options.imageStyle]),
|
|
6830
6921
|
class: "image"
|
|
6831
|
-
}, null, 44, _hoisted_2$
|
|
6922
|
+
}, null, 44, _hoisted_2$1),
|
|
6832
6923
|
$props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
|
|
6833
6924
|
"view",
|
|
6834
6925
|
{
|
|
@@ -6847,10 +6938,34 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6847
6938
|
Fragment,
|
|
6848
6939
|
{ key: 0 },
|
|
6849
6940
|
[
|
|
6850
|
-
|
|
6851
|
-
|
|
6852
|
-
|
|
6853
|
-
|
|
6941
|
+
_cache[12] || (_cache[12] = createElementVNode(
|
|
6942
|
+
"view",
|
|
6943
|
+
{ class: "line row row1" },
|
|
6944
|
+
null,
|
|
6945
|
+
-1
|
|
6946
|
+
/* HOISTED */
|
|
6947
|
+
)),
|
|
6948
|
+
_cache[13] || (_cache[13] = createElementVNode(
|
|
6949
|
+
"view",
|
|
6950
|
+
{ class: "line row row2" },
|
|
6951
|
+
null,
|
|
6952
|
+
-1
|
|
6953
|
+
/* HOISTED */
|
|
6954
|
+
)),
|
|
6955
|
+
_cache[14] || (_cache[14] = createElementVNode(
|
|
6956
|
+
"view",
|
|
6957
|
+
{ class: "line col col1" },
|
|
6958
|
+
null,
|
|
6959
|
+
-1
|
|
6960
|
+
/* HOISTED */
|
|
6961
|
+
)),
|
|
6962
|
+
_cache[15] || (_cache[15] = createElementVNode(
|
|
6963
|
+
"view",
|
|
6964
|
+
{ class: "line col col2" },
|
|
6965
|
+
null,
|
|
6966
|
+
-1
|
|
6967
|
+
/* HOISTED */
|
|
6968
|
+
))
|
|
6854
6969
|
],
|
|
6855
6970
|
64
|
|
6856
6971
|
/* STABLE_FRAGMENT */
|
|
@@ -6959,7 +7074,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6959
7074
|
32
|
|
6960
7075
|
/* NEED_HYDRATION */
|
|
6961
7076
|
),
|
|
6962
|
-
createElementVNode("view",
|
|
7077
|
+
createElementVNode("view", _hoisted_3$1, [
|
|
6963
7078
|
renderSlot(_ctx.$slots, "default")
|
|
6964
7079
|
]),
|
|
6965
7080
|
$options.isWeapp ? (openBlock(), createElementBlock(
|
|
@@ -6998,7 +7113,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6998
7113
|
script$5.render = render;
|
|
6999
7114
|
script$5.__file = "src/components/bt-cropper/index.vue";
|
|
7000
7115
|
|
|
7001
|
-
const _hoisted_1$
|
|
7116
|
+
const _hoisted_1$3 = { class: "user-head-crop" };
|
|
7002
7117
|
var script$4 = /* @__PURE__ */ defineComponent({
|
|
7003
7118
|
__name: "UserHeadCrop",
|
|
7004
7119
|
setup(__props) {
|
|
@@ -7023,7 +7138,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
7023
7138
|
}
|
|
7024
7139
|
}
|
|
7025
7140
|
return (_ctx, _cache) => {
|
|
7026
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7141
|
+
return openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|
7027
7142
|
createVNode(script$5, {
|
|
7028
7143
|
ref_key: "cropperRef",
|
|
7029
7144
|
ref: cropperRef,
|
|
@@ -7052,84 +7167,20 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
7052
7167
|
|
|
7053
7168
|
script$4.__file = "src/user/components/UserHeadCrop.vue";
|
|
7054
7169
|
|
|
7055
|
-
const _hoisted_1$
|
|
7170
|
+
const _hoisted_1$2 = {
|
|
7056
7171
|
key: 0,
|
|
7057
7172
|
class: "user-feedback-wrap"
|
|
7058
7173
|
};
|
|
7059
|
-
const _hoisted_2
|
|
7060
|
-
|
|
7061
|
-
|
|
7062
|
-
|
|
7063
|
-
|
|
7064
|
-
|
|
7065
|
-
|
|
7066
|
-
-1
|
|
7067
|
-
/* HOISTED */
|
|
7068
|
-
);
|
|
7069
|
-
const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
|
|
7070
|
-
"div",
|
|
7071
|
-
{ class: "user-feedback-tit" },
|
|
7072
|
-
"\u8865\u5145\u63CF\u8FF0",
|
|
7073
|
-
-1
|
|
7074
|
-
/* HOISTED */
|
|
7075
|
-
);
|
|
7076
|
-
const _hoisted_4$1 = { class: "user-feedback-body" };
|
|
7077
|
-
const _hoisted_5$1 = { class: "user-feedback-handle" };
|
|
7078
|
-
const _hoisted_6 = ["src"];
|
|
7079
|
-
const _hoisted_7 = ["src"];
|
|
7080
|
-
const _hoisted_8 = ["onClick"];
|
|
7081
|
-
const _hoisted_9 = /* @__PURE__ */ createElementVNode(
|
|
7082
|
-
"img",
|
|
7083
|
-
{
|
|
7084
|
-
class: "user-feedback-handle-item-close-img",
|
|
7085
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7086
|
-
},
|
|
7087
|
-
null,
|
|
7088
|
-
-1
|
|
7089
|
-
/* HOISTED */
|
|
7090
|
-
);
|
|
7091
|
-
const _hoisted_10 = [
|
|
7092
|
-
_hoisted_9
|
|
7093
|
-
];
|
|
7094
|
-
const _hoisted_11 = /* @__PURE__ */ createElementVNode(
|
|
7095
|
-
"img",
|
|
7096
|
-
{
|
|
7097
|
-
class: "user-feedback-handle-item-loading",
|
|
7098
|
-
mode: "aspectFit",
|
|
7099
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7100
|
-
alt: ""
|
|
7101
|
-
},
|
|
7102
|
-
null,
|
|
7103
|
-
-1
|
|
7104
|
-
/* HOISTED */
|
|
7105
|
-
);
|
|
7106
|
-
const _hoisted_12 = { class: "user-feedback-footer" };
|
|
7107
|
-
const _hoisted_13 = {
|
|
7174
|
+
const _hoisted_2 = { class: "user-feedback-body" };
|
|
7175
|
+
const _hoisted_3 = { class: "user-feedback-handle" };
|
|
7176
|
+
const _hoisted_4 = ["src"];
|
|
7177
|
+
const _hoisted_5 = ["src"];
|
|
7178
|
+
const _hoisted_6 = ["onClick"];
|
|
7179
|
+
const _hoisted_7 = { class: "user-feedback-footer" };
|
|
7180
|
+
const _hoisted_8 = {
|
|
7108
7181
|
key: 1,
|
|
7109
7182
|
class: "user-feedback-wrap"
|
|
7110
7183
|
};
|
|
7111
|
-
const _hoisted_14 = /* @__PURE__ */ createElementVNode(
|
|
7112
|
-
"img",
|
|
7113
|
-
{
|
|
7114
|
-
class: "user-feedback-success-img",
|
|
7115
|
-
mode: "aspectFit",
|
|
7116
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7117
|
-
},
|
|
7118
|
-
null,
|
|
7119
|
-
-1
|
|
7120
|
-
/* HOISTED */
|
|
7121
|
-
);
|
|
7122
|
-
const _hoisted_15 = /* @__PURE__ */ createElementVNode(
|
|
7123
|
-
"div",
|
|
7124
|
-
{ class: "user-feedback-success-info" },
|
|
7125
|
-
"\u63D0\u4EA4\u6210\u529F",
|
|
7126
|
-
-1
|
|
7127
|
-
/* HOISTED */
|
|
7128
|
-
);
|
|
7129
|
-
const _hoisted_16 = [
|
|
7130
|
-
_hoisted_14,
|
|
7131
|
-
_hoisted_15
|
|
7132
|
-
];
|
|
7133
7184
|
var script$3 = /* @__PURE__ */ defineComponent({
|
|
7134
7185
|
__name: "UserFeedback",
|
|
7135
7186
|
props: {
|
|
@@ -7302,17 +7353,32 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7302
7353
|
class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
|
|
7303
7354
|
},
|
|
7304
7355
|
[
|
|
7305
|
-
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
7306
|
-
|
|
7307
|
-
|
|
7308
|
-
|
|
7356
|
+
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
|
|
7357
|
+
_cache[4] || (_cache[4] = createElementVNode(
|
|
7358
|
+
"img",
|
|
7359
|
+
{
|
|
7360
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
|
|
7361
|
+
style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
|
|
7362
|
+
},
|
|
7363
|
+
null,
|
|
7364
|
+
-1
|
|
7365
|
+
/* HOISTED */
|
|
7366
|
+
)),
|
|
7367
|
+
_cache[5] || (_cache[5] = createElementVNode(
|
|
7368
|
+
"div",
|
|
7369
|
+
{ class: "user-feedback-tit" },
|
|
7370
|
+
"\u8865\u5145\u63CF\u8FF0",
|
|
7371
|
+
-1
|
|
7372
|
+
/* HOISTED */
|
|
7373
|
+
)),
|
|
7374
|
+
createElementVNode("div", _hoisted_2, [
|
|
7309
7375
|
createVNode(_component_editor, {
|
|
7310
7376
|
id: "myEditor",
|
|
7311
7377
|
"show-img-resize": true,
|
|
7312
7378
|
class: "user-feedback-editor",
|
|
7313
7379
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
|
|
7314
7380
|
}),
|
|
7315
|
-
createElementVNode("div",
|
|
7381
|
+
createElementVNode("div", _hoisted_3, [
|
|
7316
7382
|
(openBlock(true), createElementBlock(
|
|
7317
7383
|
Fragment,
|
|
7318
7384
|
null,
|
|
@@ -7330,20 +7396,42 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7330
7396
|
class: "user-feedback-handle-item-img",
|
|
7331
7397
|
mode: "aspectFit",
|
|
7332
7398
|
src: item.url
|
|
7333
|
-
}, null, 8,
|
|
7399
|
+
}, null, 8, _hoisted_4)) : (openBlock(), createElementBlock("video", {
|
|
7334
7400
|
key: 1,
|
|
7335
7401
|
class: "user-feedback-handle-item-img",
|
|
7336
7402
|
src: item.url
|
|
7337
|
-
}, null, 8,
|
|
7403
|
+
}, null, 8, _hoisted_5)),
|
|
7338
7404
|
createElementVNode("div", {
|
|
7339
7405
|
class: "user-feedback-handle-item-close",
|
|
7340
7406
|
onClick: ($event) => onDelete(key)
|
|
7341
|
-
}, [...
|
|
7407
|
+
}, [..._cache[0] || (_cache[0] = [
|
|
7408
|
+
createElementVNode(
|
|
7409
|
+
"img",
|
|
7410
|
+
{
|
|
7411
|
+
class: "user-feedback-handle-item-close-img",
|
|
7412
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7413
|
+
},
|
|
7414
|
+
null,
|
|
7415
|
+
-1
|
|
7416
|
+
/* HOISTED */
|
|
7417
|
+
)
|
|
7418
|
+
])], 8, _hoisted_6)
|
|
7342
7419
|
],
|
|
7343
7420
|
64
|
|
7344
7421
|
/* STABLE_FRAGMENT */
|
|
7345
7422
|
)) : createCommentVNode("v-if", true),
|
|
7346
|
-
|
|
7423
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
7424
|
+
"img",
|
|
7425
|
+
{
|
|
7426
|
+
class: "user-feedback-handle-item-loading",
|
|
7427
|
+
mode: "aspectFit",
|
|
7428
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7429
|
+
alt: ""
|
|
7430
|
+
},
|
|
7431
|
+
null,
|
|
7432
|
+
-1
|
|
7433
|
+
/* HOISTED */
|
|
7434
|
+
))
|
|
7347
7435
|
]);
|
|
7348
7436
|
}),
|
|
7349
7437
|
128
|
|
@@ -7355,16 +7443,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7355
7443
|
}, "+")
|
|
7356
7444
|
])
|
|
7357
7445
|
]),
|
|
7358
|
-
createElementVNode("div",
|
|
7446
|
+
createElementVNode("div", _hoisted_7, [
|
|
7359
7447
|
createVNode(_component_nut_button, {
|
|
7360
7448
|
class: "user-feedback-footer-btn",
|
|
7361
7449
|
plain: "",
|
|
7362
7450
|
type: "primary",
|
|
7363
7451
|
onClick: onCancel
|
|
7364
7452
|
}, {
|
|
7365
|
-
default: withCtx(() => [
|
|
7453
|
+
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
7366
7454
|
createTextVNode("\u6700\u5C0F\u5316")
|
|
7367
|
-
]),
|
|
7455
|
+
])),
|
|
7368
7456
|
_: 1
|
|
7369
7457
|
/* STABLE */
|
|
7370
7458
|
}),
|
|
@@ -7373,14 +7461,33 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7373
7461
|
type: "primary",
|
|
7374
7462
|
onClick: onOk
|
|
7375
7463
|
}, {
|
|
7376
|
-
default: withCtx(() => [
|
|
7464
|
+
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
7377
7465
|
createTextVNode("\u53CD\u9988")
|
|
7378
|
-
]),
|
|
7466
|
+
])),
|
|
7379
7467
|
_: 1
|
|
7380
7468
|
/* STABLE */
|
|
7381
7469
|
})
|
|
7382
7470
|
])
|
|
7383
|
-
])) : (openBlock(), createElementBlock("div",
|
|
7471
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_8, _cache[6] || (_cache[6] = [
|
|
7472
|
+
createElementVNode(
|
|
7473
|
+
"img",
|
|
7474
|
+
{
|
|
7475
|
+
class: "user-feedback-success-img",
|
|
7476
|
+
mode: "aspectFit",
|
|
7477
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7478
|
+
},
|
|
7479
|
+
null,
|
|
7480
|
+
-1
|
|
7481
|
+
/* HOISTED */
|
|
7482
|
+
),
|
|
7483
|
+
createElementVNode(
|
|
7484
|
+
"div",
|
|
7485
|
+
{ class: "user-feedback-success-info" },
|
|
7486
|
+
"\u63D0\u4EA4\u6210\u529F",
|
|
7487
|
+
-1
|
|
7488
|
+
/* HOISTED */
|
|
7489
|
+
)
|
|
7490
|
+
])))
|
|
7384
7491
|
],
|
|
7385
7492
|
2
|
|
7386
7493
|
/* CLASS */
|
|
@@ -7474,41 +7581,6 @@ function useDragBox() {
|
|
|
7474
7581
|
};
|
|
7475
7582
|
}
|
|
7476
7583
|
|
|
7477
|
-
const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
|
|
7478
|
-
"img",
|
|
7479
|
-
{
|
|
7480
|
-
class: "user-feedback-entry-icon",
|
|
7481
|
-
mode: "aspectFit",
|
|
7482
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7483
|
-
},
|
|
7484
|
-
null,
|
|
7485
|
-
-1
|
|
7486
|
-
/* HOISTED */
|
|
7487
|
-
);
|
|
7488
|
-
const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
|
|
7489
|
-
"div",
|
|
7490
|
-
null,
|
|
7491
|
-
"\u53CD\u9988",
|
|
7492
|
-
-1
|
|
7493
|
-
/* HOISTED */
|
|
7494
|
-
);
|
|
7495
|
-
const _hoisted_3 = [
|
|
7496
|
-
_hoisted_1$2,
|
|
7497
|
-
_hoisted_2$2
|
|
7498
|
-
];
|
|
7499
|
-
const _hoisted_4 = /* @__PURE__ */ createElementVNode(
|
|
7500
|
-
"img",
|
|
7501
|
-
{
|
|
7502
|
-
class: "user-feedback-entry-close-img",
|
|
7503
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7504
|
-
},
|
|
7505
|
-
null,
|
|
7506
|
-
-1
|
|
7507
|
-
/* HOISTED */
|
|
7508
|
-
);
|
|
7509
|
-
const _hoisted_5 = [
|
|
7510
|
-
_hoisted_4
|
|
7511
|
-
];
|
|
7512
7584
|
var script$2 = /* @__PURE__ */ defineComponent({
|
|
7513
7585
|
__name: "UserFeedbackEntry",
|
|
7514
7586
|
props: {
|
|
@@ -7596,7 +7668,26 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7596
7668
|
class: "user-feedback-entry",
|
|
7597
7669
|
onClick: onJump
|
|
7598
7670
|
},
|
|
7599
|
-
[
|
|
7671
|
+
_cache[2] || (_cache[2] = [
|
|
7672
|
+
createElementVNode(
|
|
7673
|
+
"img",
|
|
7674
|
+
{
|
|
7675
|
+
class: "user-feedback-entry-icon",
|
|
7676
|
+
mode: "aspectFit",
|
|
7677
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7678
|
+
},
|
|
7679
|
+
null,
|
|
7680
|
+
-1
|
|
7681
|
+
/* HOISTED */
|
|
7682
|
+
),
|
|
7683
|
+
createElementVNode(
|
|
7684
|
+
"div",
|
|
7685
|
+
null,
|
|
7686
|
+
"\u53CD\u9988",
|
|
7687
|
+
-1
|
|
7688
|
+
/* HOISTED */
|
|
7689
|
+
)
|
|
7690
|
+
]),
|
|
7600
7691
|
36
|
|
7601
7692
|
/* STYLE, NEED_HYDRATION */
|
|
7602
7693
|
)) : (openBlock(), createElementBlock(
|
|
@@ -7620,7 +7711,18 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7620
7711
|
createElementVNode("div", {
|
|
7621
7712
|
class: "user-feedback-entry-close",
|
|
7622
7713
|
onClick: onClose
|
|
7623
|
-
}, [
|
|
7714
|
+
}, _cache[3] || (_cache[3] = [
|
|
7715
|
+
createElementVNode(
|
|
7716
|
+
"img",
|
|
7717
|
+
{
|
|
7718
|
+
class: "user-feedback-entry-close-img",
|
|
7719
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7720
|
+
},
|
|
7721
|
+
null,
|
|
7722
|
+
-1
|
|
7723
|
+
/* HOISTED */
|
|
7724
|
+
)
|
|
7725
|
+
]))
|
|
7624
7726
|
],
|
|
7625
7727
|
36
|
|
7626
7728
|
/* STYLE, NEED_HYDRATION */
|
|
@@ -7631,17 +7733,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7631
7733
|
|
|
7632
7734
|
script$2.__file = "src/user/components/UserFeedbackEntry.vue";
|
|
7633
7735
|
|
|
7634
|
-
const _hoisted_1$1 =
|
|
7635
|
-
"img",
|
|
7636
|
-
{
|
|
7637
|
-
class: "login-setting-img",
|
|
7638
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7639
|
-
},
|
|
7640
|
-
null,
|
|
7641
|
-
-1
|
|
7642
|
-
/* HOISTED */
|
|
7643
|
-
);
|
|
7644
|
-
const _hoisted_2$1 = { class: "login-setting-text" };
|
|
7736
|
+
const _hoisted_1$1 = { class: "login-setting-text" };
|
|
7645
7737
|
var script$1 = /* @__PURE__ */ defineComponent({
|
|
7646
7738
|
__name: "LoginSetting",
|
|
7647
7739
|
props: {
|
|
@@ -7702,10 +7794,19 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7702
7794
|
style: normalizeStyle(style.value)
|
|
7703
7795
|
},
|
|
7704
7796
|
[
|
|
7705
|
-
|
|
7797
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
7798
|
+
"img",
|
|
7799
|
+
{
|
|
7800
|
+
class: "login-setting-img",
|
|
7801
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7802
|
+
},
|
|
7803
|
+
null,
|
|
7804
|
+
-1
|
|
7805
|
+
/* HOISTED */
|
|
7806
|
+
)),
|
|
7706
7807
|
createElementVNode(
|
|
7707
7808
|
"div",
|
|
7708
|
-
|
|
7809
|
+
_hoisted_1$1,
|
|
7709
7810
|
toDisplayString(loginRuleTip.value),
|
|
7710
7811
|
1
|
|
7711
7812
|
/* TEXT */
|
|
@@ -7720,17 +7821,7 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7720
7821
|
|
|
7721
7822
|
script$1.__file = "src/user/components/LoginSetting.vue";
|
|
7722
7823
|
|
|
7723
|
-
const _hoisted_1 =
|
|
7724
|
-
"img",
|
|
7725
|
-
{
|
|
7726
|
-
class: "user-resource-empty-img",
|
|
7727
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7728
|
-
},
|
|
7729
|
-
null,
|
|
7730
|
-
-1
|
|
7731
|
-
/* HOISTED */
|
|
7732
|
-
);
|
|
7733
|
-
const _hoisted_2 = { class: "user-resource-empty-text" };
|
|
7824
|
+
const _hoisted_1 = { class: "user-resource-empty-text" };
|
|
7734
7825
|
var script = /* @__PURE__ */ defineComponent({
|
|
7735
7826
|
__name: "UserResourceEmpty",
|
|
7736
7827
|
props: {
|
|
@@ -7761,10 +7852,19 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
7761
7852
|
style: normalizeStyle(style.value)
|
|
7762
7853
|
},
|
|
7763
7854
|
[
|
|
7764
|
-
|
|
7855
|
+
_cache[0] || (_cache[0] = createElementVNode(
|
|
7856
|
+
"img",
|
|
7857
|
+
{
|
|
7858
|
+
class: "user-resource-empty-img",
|
|
7859
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7860
|
+
},
|
|
7861
|
+
null,
|
|
7862
|
+
-1
|
|
7863
|
+
/* HOISTED */
|
|
7864
|
+
)),
|
|
7765
7865
|
createElementVNode(
|
|
7766
7866
|
"div",
|
|
7767
|
-
|
|
7867
|
+
_hoisted_1,
|
|
7768
7868
|
" \u5E94\u7528\u5DF2\u4E8E" + toDisplayString(unref(dayjs)(_ctx.appInfo.endTime).format("YYYY\u5E74MM\u6708DD\u65E5")) + "\u5230\u671F\uFF0C\u5982\u9700\u7EE7\u7EED\u4F7F\u7528\uFF0C \u8BF7\u8054\u7CFB\u5927\u9053\u5BA2\u6237\u603B\u76D1\u8FDB\u884C\u7EED\u8D39 ",
|
|
7769
7869
|
1
|
|
7770
7870
|
/* TEXT */
|
|
@@ -7832,4 +7932,4 @@ const AppKit = {
|
|
|
7832
7932
|
}
|
|
7833
7933
|
};
|
|
7834
7934
|
|
|
7835
|
-
export { script$p as AccountView, script$I as AmountPicker, script$G as AppDrawer, script$F as AppVerify, script$v as BalanceCard, script$o as BalanceReminder, script$n as DateRange, script$D as DeviceVersion, script$l as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$B as OcrBusinessLicense, script$C as OcrIcon, script$H as PageHeader, script$y as RechargeResult, script$A as RechargeView, script$g as SelfRegistration, script$w as TradeView, script$z as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useSafeArea, useTabbar, useUpload, useValidator };
|
|
7935
|
+
export { script$p as AccountView, script$I as AmountPicker, script$G as AppDrawer, script$F as AppVerify, script$v as BalanceCard, script$o as BalanceReminder, script$n as DateRange, script$D as DeviceVersion, script$l as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$B as OcrBusinessLicense, script$C as OcrIcon, script$H as PageHeader, script$y as RechargeResult, script$A as RechargeView, script$g as SelfRegistration, script$w as TradeView, script$z as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, generateUniqueId, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useLogger, useSafeArea, useTabbar, useUpload, useValidator };
|