@uxda/appkit 4.1.16 → 4.1.19
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 +25 -22
- package/dist/assets/asset-3B_CoPto +1 -0
- package/dist/index.js +1141 -1036
- 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 +72 -65
- package/src/balance/api/endpoints.ts +126 -126
- package/src/balance/api/index.ts +82 -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 -227
- package/src/balance/components/DateRange.vue +80 -77
- 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 +93 -89
- package/src/main.scss +1 -1
- package/src/notice/api/endpoints.ts +17 -17
- package/src/notice/api/index.ts +82 -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 +76 -71
- package/src/payment/components/AmountPicker.vue +93 -93
- package/src/payment/components/RechargeResult.vue +69 -69
- package/src/payment/components/RechargeView.vue +154 -151
- 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 -130
- package/src/shared/components/OcrIcon.vue +133 -132
- package/src/shared/components/PageHeader.vue +79 -79
- package/src/shared/components/index.ts +8 -8
- package/src/shared/composables/index.ts +7 -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/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 +87 -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/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$E = { class: "token-line number" };
|
|
27
|
+
const _hoisted_2$y = { 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$E,
|
|
67
67
|
toDisplayString(amount.token),
|
|
68
68
|
1
|
|
69
69
|
/* TEXT */
|
|
70
70
|
),
|
|
71
71
|
createElementVNode("h5", null, [
|
|
72
|
-
|
|
72
|
+
createTextVNode("\xA5"),
|
|
73
73
|
createElementVNode(
|
|
74
74
|
"span",
|
|
75
|
-
_hoisted_2$
|
|
75
|
+
_hoisted_2$y,
|
|
76
76
|
toDisplayString(amount.amount),
|
|
77
77
|
1
|
|
78
78
|
/* TEXT */
|
|
@@ -316,7 +316,7 @@ function useCrypto(config) {
|
|
|
316
316
|
};
|
|
317
317
|
}
|
|
318
318
|
|
|
319
|
-
const _hoisted_1$
|
|
319
|
+
const _hoisted_1$D = {
|
|
320
320
|
key: 0,
|
|
321
321
|
class: "page-title"
|
|
322
322
|
};
|
|
@@ -350,7 +350,7 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
350
350
|
[
|
|
351
351
|
_ctx.title ? (openBlock(), createElementBlock(
|
|
352
352
|
"h1",
|
|
353
|
-
_hoisted_1$
|
|
353
|
+
_hoisted_1$D,
|
|
354
354
|
toDisplayString(_ctx.title),
|
|
355
355
|
1
|
|
356
356
|
/* TEXT */
|
|
@@ -370,7 +370,7 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
370
370
|
|
|
371
371
|
script$H.__file = "src/shared/components/PageHeader.vue";
|
|
372
372
|
|
|
373
|
-
const _hoisted_1$
|
|
373
|
+
const _hoisted_1$C = { class: "drawer-body" };
|
|
374
374
|
var script$G = /* @__PURE__ */ defineComponent({
|
|
375
375
|
__name: "AppDrawer",
|
|
376
376
|
props: {
|
|
@@ -399,7 +399,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
399
399
|
title: _ctx.title,
|
|
400
400
|
onClose: onPageHeaderClose
|
|
401
401
|
}, null, 8, ["title"]),
|
|
402
|
-
createElementVNode("div", _hoisted_1$
|
|
402
|
+
createElementVNode("div", _hoisted_1$C, [
|
|
403
403
|
renderSlot(_ctx.$slots, "default")
|
|
404
404
|
])
|
|
405
405
|
]),
|
|
@@ -412,15 +412,15 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
412
412
|
|
|
413
413
|
script$G.__file = "src/shared/components/AppDrawer.vue";
|
|
414
414
|
|
|
415
|
-
const _hoisted_1$
|
|
416
|
-
const _hoisted_2$
|
|
417
|
-
const _hoisted_3$
|
|
418
|
-
const _hoisted_4$
|
|
419
|
-
const _hoisted_5$
|
|
415
|
+
const _hoisted_1$B = { class: "app-verify column" };
|
|
416
|
+
const _hoisted_2$x = { class: "caption" };
|
|
417
|
+
const _hoisted_3$s = { class: "number" };
|
|
418
|
+
const _hoisted_4$l = { class: "form-btn" };
|
|
419
|
+
const _hoisted_5$h = {
|
|
420
420
|
key: 1,
|
|
421
421
|
class: "caption"
|
|
422
422
|
};
|
|
423
|
-
const _hoisted_6$
|
|
423
|
+
const _hoisted_6$c = { class: "row buttons" };
|
|
424
424
|
var script$F = /* @__PURE__ */ defineComponent({
|
|
425
425
|
__name: "AppVerify",
|
|
426
426
|
props: {
|
|
@@ -453,7 +453,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
453
453
|
};
|
|
454
454
|
const props = __props;
|
|
455
455
|
return (_ctx, _cache) => {
|
|
456
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
456
|
+
return openBlock(), createElementBlock("div", _hoisted_1$B, [
|
|
457
457
|
createElementVNode(
|
|
458
458
|
"h2",
|
|
459
459
|
null,
|
|
@@ -463,14 +463,14 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
463
463
|
),
|
|
464
464
|
createElementVNode(
|
|
465
465
|
"p",
|
|
466
|
-
_hoisted_2$
|
|
466
|
+
_hoisted_2$x,
|
|
467
467
|
toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
|
|
468
468
|
1
|
|
469
469
|
/* TEXT */
|
|
470
470
|
),
|
|
471
471
|
createElementVNode(
|
|
472
472
|
"p",
|
|
473
|
-
_hoisted_3$
|
|
473
|
+
_hoisted_3$s,
|
|
474
474
|
toDisplayString(_ctx.phone),
|
|
475
475
|
1
|
|
476
476
|
/* TEXT */
|
|
@@ -495,7 +495,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
495
495
|
method: (value) => value.length === 6
|
|
496
496
|
}]
|
|
497
497
|
}, null, 8, ["modelValue", "rules"]),
|
|
498
|
-
createElementVNode("div", _hoisted_4$
|
|
498
|
+
createElementVNode("div", _hoisted_4$l, [
|
|
499
499
|
!sent.value ? (openBlock(), createBlock(unref(NsButton), {
|
|
500
500
|
key: 0,
|
|
501
501
|
size: "xs",
|
|
@@ -506,7 +506,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
506
506
|
})) : createCommentVNode("v-if", true),
|
|
507
507
|
sent.value ? (openBlock(), createElementBlock(
|
|
508
508
|
"div",
|
|
509
|
-
_hoisted_5$
|
|
509
|
+
_hoisted_5$h,
|
|
510
510
|
toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
|
|
511
511
|
1
|
|
512
512
|
/* TEXT */
|
|
@@ -516,15 +516,15 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
516
516
|
_: 1
|
|
517
517
|
/* STABLE */
|
|
518
518
|
}, 8, ["modelValue"]),
|
|
519
|
-
createElementVNode("div", _hoisted_6$
|
|
519
|
+
createElementVNode("div", _hoisted_6$c, [
|
|
520
520
|
createVNode(unref(NsButton), {
|
|
521
521
|
class: "cancel-btn",
|
|
522
522
|
round: "",
|
|
523
523
|
onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
|
|
524
524
|
}, {
|
|
525
|
-
default: withCtx(() =>
|
|
525
|
+
default: withCtx(() => [
|
|
526
526
|
createTextVNode("\u53D6\u6D88")
|
|
527
|
-
])
|
|
527
|
+
]),
|
|
528
528
|
_: 1
|
|
529
529
|
/* STABLE */
|
|
530
530
|
}),
|
|
@@ -533,9 +533,9 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
533
533
|
gradient: "#FFEBC1,#FFD7A7,#FFB875/90",
|
|
534
534
|
onClick: onOk
|
|
535
535
|
}, {
|
|
536
|
-
default: withCtx(() =>
|
|
536
|
+
default: withCtx(() => [
|
|
537
537
|
createTextVNode("\u786E\u8BA4")
|
|
538
|
-
])
|
|
538
|
+
]),
|
|
539
539
|
_: 1
|
|
540
540
|
/* STABLE */
|
|
541
541
|
})
|
|
@@ -547,7 +547,20 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
547
547
|
|
|
548
548
|
script$F.__file = "src/shared/components/AppVerify.vue";
|
|
549
549
|
|
|
550
|
-
const _hoisted_1$
|
|
550
|
+
const _hoisted_1$A = { key: 0 };
|
|
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
|
+
];
|
|
551
564
|
var script$E = /* @__PURE__ */ defineComponent({
|
|
552
565
|
__name: "index",
|
|
553
566
|
props: {
|
|
@@ -579,7 +592,7 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
579
592
|
}, [
|
|
580
593
|
_ctx.text ? (openBlock(), createElementBlock(
|
|
581
594
|
"span",
|
|
582
|
-
_hoisted_1$
|
|
595
|
+
_hoisted_1$A,
|
|
583
596
|
toDisplayString(_ctx.text),
|
|
584
597
|
1
|
|
585
598
|
/* TEXT */
|
|
@@ -590,18 +603,7 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
590
603
|
key: 0,
|
|
591
604
|
class: "dd-notice-bar__close",
|
|
592
605
|
onClick: close
|
|
593
|
-
},
|
|
594
|
-
createElementVNode(
|
|
595
|
-
"img",
|
|
596
|
-
{
|
|
597
|
-
src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
|
|
598
|
-
class: "dd-notice-bar__close-img"
|
|
599
|
-
},
|
|
600
|
-
null,
|
|
601
|
-
-1
|
|
602
|
-
/* HOISTED */
|
|
603
|
-
)
|
|
604
|
-
]))) : createCommentVNode("v-if", true)
|
|
606
|
+
}, [..._hoisted_3$r])) : createCommentVNode("v-if", true)
|
|
605
607
|
],
|
|
606
608
|
6
|
|
607
609
|
/* CLASS, STYLE */
|
|
@@ -721,6 +723,7 @@ const appKitOptions = {
|
|
|
721
723
|
tenant: () => "",
|
|
722
724
|
token: () => "",
|
|
723
725
|
tempToken: () => "",
|
|
726
|
+
tempAppcode: () => "",
|
|
724
727
|
baseUrl: () => "",
|
|
725
728
|
401() {
|
|
726
729
|
},
|
|
@@ -951,7 +954,7 @@ var script$C = /* @__PURE__ */ defineComponent({
|
|
|
951
954
|
onClick: onIconClick
|
|
952
955
|
},
|
|
953
956
|
[
|
|
954
|
-
createVNode(unref(NsIcon), { name: "https://
|
|
957
|
+
createVNode(unref(NsIcon), { name: "https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" })
|
|
955
958
|
],
|
|
956
959
|
2
|
|
957
960
|
/* CLASS */
|
|
@@ -1061,7 +1064,7 @@ var script$B = /* @__PURE__ */ defineComponent({
|
|
|
1061
1064
|
onClick: onIconClick
|
|
1062
1065
|
},
|
|
1063
1066
|
[
|
|
1064
|
-
createVNode(unref(NsIcon), { name: "https://
|
|
1067
|
+
createVNode(unref(NsIcon), { name: "https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" })
|
|
1065
1068
|
],
|
|
1066
1069
|
2
|
|
1067
1070
|
/* CLASS */
|
|
@@ -1264,12 +1267,12 @@ const vendor$2 = {
|
|
|
1264
1267
|
});
|
|
1265
1268
|
}
|
|
1266
1269
|
};
|
|
1267
|
-
function useHttp$2() {
|
|
1270
|
+
function useHttp$2(defaultHeader) {
|
|
1268
1271
|
const appkitOptions = useAppKitOptions();
|
|
1269
1272
|
const headers = {
|
|
1270
1273
|
Token: appkitOptions.tempToken() || appkitOptions.token(),
|
|
1271
|
-
Appcode: appkitOptions.app(),
|
|
1272
|
-
cookie: `tid=${appkitOptions.tenant()}`,
|
|
1274
|
+
Appcode: defaultHeader?.Appcode || appkitOptions.app(),
|
|
1275
|
+
cookie: `tid=${defaultHeader?.Tenant || appkitOptions.tenant()}`,
|
|
1273
1276
|
gray: appkitOptions.gray ? appkitOptions.gray() : "0"
|
|
1274
1277
|
};
|
|
1275
1278
|
const $http = createHttp({
|
|
@@ -1370,10 +1373,10 @@ const services$1 = [
|
|
|
1370
1373
|
invokeRecharge$1
|
|
1371
1374
|
];
|
|
1372
1375
|
|
|
1373
|
-
const _hoisted_1$
|
|
1374
|
-
const _hoisted_2$
|
|
1375
|
-
const _hoisted_3$
|
|
1376
|
-
const _hoisted_4$
|
|
1376
|
+
const _hoisted_1$z = { class: "view recharge-view" };
|
|
1377
|
+
const _hoisted_2$v = { class: "flex-grow" };
|
|
1378
|
+
const _hoisted_3$q = { class: "amount-footer" };
|
|
1379
|
+
const _hoisted_4$k = { class: "agreement" };
|
|
1377
1380
|
var script$A = /* @__PURE__ */ defineComponent({
|
|
1378
1381
|
__name: "RechargeView",
|
|
1379
1382
|
props: {
|
|
@@ -1400,10 +1403,9 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1400
1403
|
state.selected = selected;
|
|
1401
1404
|
};
|
|
1402
1405
|
onMounted(() => {
|
|
1403
|
-
const $http = useHttp$2();
|
|
1406
|
+
const $http = useHttp$2({ Appcode: props.app, Tenant: props.tenant });
|
|
1404
1407
|
$http.get(endpoints.\u83B7\u53D6\u5145\u503C\u91D1\u989D\u5217\u8868, {
|
|
1405
1408
|
app: props.app,
|
|
1406
|
-
// stage: 'aiApproveRecharge', // 支付场景
|
|
1407
1409
|
tenant: props.tenant
|
|
1408
1410
|
}).then((response) => {
|
|
1409
1411
|
amounts.value = response;
|
|
@@ -1439,22 +1441,22 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1439
1441
|
return (_ctx, _cache) => {
|
|
1440
1442
|
const _component_nut_checkbox = Checkbox;
|
|
1441
1443
|
const _component_nut_button = Button;
|
|
1442
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1443
|
-
createElementVNode("view", _hoisted_2$
|
|
1444
|
+
return openBlock(), createElementBlock("view", _hoisted_1$z, [
|
|
1445
|
+
createElementVNode("view", _hoisted_2$v, [
|
|
1444
1446
|
createVNode(script$I, {
|
|
1445
1447
|
items: amounts.value,
|
|
1446
1448
|
selected: state.selected,
|
|
1447
1449
|
onChange: onAmountSelect
|
|
1448
1450
|
}, null, 8, ["items", "selected"])
|
|
1449
1451
|
]),
|
|
1450
|
-
createElementVNode("view", _hoisted_3$
|
|
1451
|
-
createElementVNode("view", _hoisted_4$
|
|
1452
|
+
createElementVNode("view", _hoisted_3$q, [
|
|
1453
|
+
createElementVNode("view", _hoisted_4$k, [
|
|
1452
1454
|
createVNode(_component_nut_checkbox, {
|
|
1453
1455
|
modelValue: state.agreed,
|
|
1454
1456
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
|
|
1455
1457
|
}, {
|
|
1456
1458
|
default: withCtx(() => [
|
|
1457
|
-
|
|
1459
|
+
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1458
1460
|
createElementVNode("a", {
|
|
1459
1461
|
class: "link inline",
|
|
1460
1462
|
onClick: onAgreementLinkClick
|
|
@@ -1471,9 +1473,9 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1471
1473
|
onClick: onPayClick,
|
|
1472
1474
|
class: "recharge-button"
|
|
1473
1475
|
}, {
|
|
1474
|
-
default: withCtx(() =>
|
|
1476
|
+
default: withCtx(() => [
|
|
1475
1477
|
createTextVNode("\u7ACB\u5373\u5145\u503C")
|
|
1476
|
-
])
|
|
1478
|
+
]),
|
|
1477
1479
|
_: 1
|
|
1478
1480
|
/* STABLE */
|
|
1479
1481
|
}, 8, ["loading"])
|
|
@@ -1485,11 +1487,13 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1485
1487
|
|
|
1486
1488
|
script$A.__file = "src/payment/components/RechargeView.vue";
|
|
1487
1489
|
|
|
1488
|
-
const _hoisted_1$
|
|
1490
|
+
const _hoisted_1$y = { class: "agreement-doc" };
|
|
1491
|
+
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);
|
|
1492
|
+
const _hoisted_98 = [
|
|
1493
|
+
_hoisted_2$u
|
|
1494
|
+
];
|
|
1489
1495
|
function render$2(_ctx, _cache) {
|
|
1490
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1491
|
-
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)
|
|
1492
|
-
]));
|
|
1496
|
+
return openBlock(), createElementBlock("view", _hoisted_1$y, [..._hoisted_98]);
|
|
1493
1497
|
}
|
|
1494
1498
|
|
|
1495
1499
|
/* unplugin-vue-components disabled */const script$z = {};
|
|
@@ -1497,13 +1501,20 @@ function render$2(_ctx, _cache) {
|
|
|
1497
1501
|
script$z.render = render$2;
|
|
1498
1502
|
script$z.__file = "src/payment/components/UserAgreement.vue";
|
|
1499
1503
|
|
|
1500
|
-
const _hoisted_1$
|
|
1501
|
-
const _hoisted_2$
|
|
1502
|
-
const _hoisted_3$
|
|
1504
|
+
const _hoisted_1$x = { class: "recharge-result" };
|
|
1505
|
+
const _hoisted_2$t = { class: "content" };
|
|
1506
|
+
const _hoisted_3$p = /* @__PURE__ */ createElementVNode(
|
|
1507
|
+
"div",
|
|
1508
|
+
{ class: "figure" },
|
|
1509
|
+
null,
|
|
1510
|
+
-1
|
|
1511
|
+
/* HOISTED */
|
|
1512
|
+
);
|
|
1513
|
+
const _hoisted_4$j = {
|
|
1503
1514
|
key: 0,
|
|
1504
1515
|
class: "caption"
|
|
1505
1516
|
};
|
|
1506
|
-
const
|
|
1517
|
+
const _hoisted_5$g = {
|
|
1507
1518
|
key: 1,
|
|
1508
1519
|
class: "caption"
|
|
1509
1520
|
};
|
|
@@ -1525,15 +1536,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1525
1536
|
}
|
|
1526
1537
|
return (_ctx, _cache) => {
|
|
1527
1538
|
const _component_nut_button = Button;
|
|
1528
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1529
|
-
createElementVNode("div", _hoisted_2$
|
|
1530
|
-
|
|
1531
|
-
"div",
|
|
1532
|
-
{ class: "figure" },
|
|
1533
|
-
null,
|
|
1534
|
-
-1
|
|
1535
|
-
/* HOISTED */
|
|
1536
|
-
)),
|
|
1539
|
+
return openBlock(), createElementBlock("div", _hoisted_1$x, [
|
|
1540
|
+
createElementVNode("div", _hoisted_2$t, [
|
|
1541
|
+
_hoisted_3$p,
|
|
1537
1542
|
createElementVNode(
|
|
1538
1543
|
"h2",
|
|
1539
1544
|
null,
|
|
@@ -1541,9 +1546,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1541
1546
|
1
|
|
1542
1547
|
/* TEXT */
|
|
1543
1548
|
),
|
|
1544
|
-
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div",
|
|
1549
|
+
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_4$j, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
|
|
1545
1550
|
"div",
|
|
1546
|
-
|
|
1551
|
+
_hoisted_5$g,
|
|
1547
1552
|
toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
|
|
1548
1553
|
1
|
|
1549
1554
|
/* TEXT */
|
|
@@ -1553,9 +1558,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1553
1558
|
type: "default",
|
|
1554
1559
|
onClick: onBackClick
|
|
1555
1560
|
}, {
|
|
1556
|
-
default: withCtx(() =>
|
|
1561
|
+
default: withCtx(() => [
|
|
1557
1562
|
createTextVNode("\u8FD4\u56DE")
|
|
1558
|
-
])
|
|
1563
|
+
]),
|
|
1559
1564
|
_: 1
|
|
1560
1565
|
/* STABLE */
|
|
1561
1566
|
})
|
|
@@ -1567,9 +1572,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1567
1572
|
|
|
1568
1573
|
script$y.__file = "src/payment/components/RechargeResult.vue";
|
|
1569
1574
|
|
|
1570
|
-
const _hoisted_1$
|
|
1571
|
-
const _hoisted_2$
|
|
1572
|
-
const _hoisted_3$
|
|
1575
|
+
const _hoisted_1$w = { class: "tag" };
|
|
1576
|
+
const _hoisted_2$s = { class: "token-line number" };
|
|
1577
|
+
const _hoisted_3$o = { class: "number" };
|
|
1573
1578
|
var script$x = /* @__PURE__ */ defineComponent({
|
|
1574
1579
|
__name: "RightsPicker",
|
|
1575
1580
|
props: {
|
|
@@ -1608,23 +1613,23 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1608
1613
|
default: withCtx(() => [
|
|
1609
1614
|
createElementVNode(
|
|
1610
1615
|
"div",
|
|
1611
|
-
_hoisted_1$
|
|
1616
|
+
_hoisted_1$w,
|
|
1612
1617
|
toDisplayString(amount.paymentDesc),
|
|
1613
1618
|
1
|
|
1614
1619
|
/* TEXT */
|
|
1615
1620
|
),
|
|
1616
1621
|
createElementVNode(
|
|
1617
1622
|
"h4",
|
|
1618
|
-
_hoisted_2$
|
|
1623
|
+
_hoisted_2$s,
|
|
1619
1624
|
toDisplayString(amount.priceRightNum) + "\u7B14",
|
|
1620
1625
|
1
|
|
1621
1626
|
/* TEXT */
|
|
1622
1627
|
),
|
|
1623
1628
|
createElementVNode("h5", null, [
|
|
1624
|
-
|
|
1629
|
+
createTextVNode("\xA5"),
|
|
1625
1630
|
createElementVNode(
|
|
1626
1631
|
"span",
|
|
1627
|
-
_hoisted_3$
|
|
1632
|
+
_hoisted_3$o,
|
|
1628
1633
|
toDisplayString(amount.paymentAmount),
|
|
1629
1634
|
1
|
|
1630
1635
|
/* TEXT */
|
|
@@ -1648,34 +1653,48 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1648
1653
|
|
|
1649
1654
|
script$x.__file = "src/payment/components/RightsPicker.vue";
|
|
1650
1655
|
|
|
1651
|
-
const _hoisted_1$
|
|
1652
|
-
const _hoisted_2$
|
|
1653
|
-
const _hoisted_3$
|
|
1656
|
+
const _hoisted_1$v = { class: "view recharge-view2" };
|
|
1657
|
+
const _hoisted_2$r = { class: "flex-grow" };
|
|
1658
|
+
const _hoisted_3$n = {
|
|
1654
1659
|
key: 0,
|
|
1655
1660
|
class: "bean-buy"
|
|
1656
1661
|
};
|
|
1657
|
-
const _hoisted_4$
|
|
1658
|
-
const _hoisted_5$
|
|
1662
|
+
const _hoisted_4$i = { class: "left" };
|
|
1663
|
+
const _hoisted_5$f = /* @__PURE__ */ createElementVNode(
|
|
1664
|
+
"div",
|
|
1665
|
+
{ class: "title" },
|
|
1666
|
+
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1667
|
+
-1
|
|
1668
|
+
/* HOISTED */
|
|
1669
|
+
);
|
|
1670
|
+
const _hoisted_6$b = {
|
|
1659
1671
|
key: 0,
|
|
1660
1672
|
class: "amount"
|
|
1661
1673
|
};
|
|
1662
|
-
const
|
|
1674
|
+
const _hoisted_7$9 = {
|
|
1663
1675
|
key: 1,
|
|
1664
1676
|
class: "amount"
|
|
1665
1677
|
};
|
|
1666
|
-
const
|
|
1667
|
-
const
|
|
1668
|
-
const
|
|
1669
|
-
const
|
|
1678
|
+
const _hoisted_8$5 = { class: "amount" };
|
|
1679
|
+
const _hoisted_9$5 = ["src"];
|
|
1680
|
+
const _hoisted_10$5 = { class: "amount-footer" };
|
|
1681
|
+
const _hoisted_11$5 = {
|
|
1670
1682
|
key: 0,
|
|
1671
1683
|
class: "agreement"
|
|
1672
1684
|
};
|
|
1673
|
-
const
|
|
1674
|
-
const
|
|
1675
|
-
const
|
|
1676
|
-
const
|
|
1677
|
-
|
|
1678
|
-
|
|
1685
|
+
const _hoisted_12$5 = { class: "buy-amount" };
|
|
1686
|
+
const _hoisted_13$5 = { class: "left" };
|
|
1687
|
+
const _hoisted_14$4 = { class: "amount" };
|
|
1688
|
+
const _hoisted_15$3 = /* @__PURE__ */ createElementVNode(
|
|
1689
|
+
"i",
|
|
1690
|
+
null,
|
|
1691
|
+
"\uFFE5",
|
|
1692
|
+
-1
|
|
1693
|
+
/* HOISTED */
|
|
1694
|
+
);
|
|
1695
|
+
const _hoisted_16$3 = { class: "item" };
|
|
1696
|
+
const _hoisted_17$2 = { class: "item" };
|
|
1697
|
+
const _hoisted_18$2 = { class: "item" };
|
|
1679
1698
|
var script$w = /* @__PURE__ */ defineComponent({
|
|
1680
1699
|
__name: "TradeView",
|
|
1681
1700
|
props: {
|
|
@@ -1765,31 +1784,25 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1765
1784
|
const _component_nut_checkbox = Checkbox;
|
|
1766
1785
|
const _component_nut_button = Button;
|
|
1767
1786
|
const _component_nut_dialog = Dialog;
|
|
1768
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1769
|
-
createElementVNode("view", _hoisted_2$
|
|
1787
|
+
return openBlock(), createElementBlock("view", _hoisted_1$v, [
|
|
1788
|
+
createElementVNode("view", _hoisted_2$r, [
|
|
1770
1789
|
createVNode(script$x, {
|
|
1771
1790
|
items: amounts.value,
|
|
1772
1791
|
selected: state.selected,
|
|
1773
1792
|
onChange: onAmountSelect
|
|
1774
1793
|
}, null, 8, ["items", "selected"]),
|
|
1775
|
-
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
1776
|
-
createElementVNode("div", _hoisted_4$
|
|
1777
|
-
|
|
1778
|
-
"div",
|
|
1779
|
-
{ class: "title" },
|
|
1780
|
-
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1781
|
-
-1
|
|
1782
|
-
/* HOISTED */
|
|
1783
|
-
)),
|
|
1794
|
+
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$n, [
|
|
1795
|
+
createElementVNode("div", _hoisted_4$i, [
|
|
1796
|
+
_hoisted_5$f,
|
|
1784
1797
|
!selectBean.value ? (openBlock(), createElementBlock(
|
|
1785
1798
|
"div",
|
|
1786
|
-
|
|
1799
|
+
_hoisted_6$b,
|
|
1787
1800
|
"\u4F59\u989D " + toDisplayString(balance.value),
|
|
1788
1801
|
1
|
|
1789
1802
|
/* TEXT */
|
|
1790
1803
|
)) : (openBlock(), createElementBlock(
|
|
1791
1804
|
"div",
|
|
1792
|
-
|
|
1805
|
+
_hoisted_7$9,
|
|
1793
1806
|
"\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1794
1807
|
1
|
|
1795
1808
|
/* TEXT */
|
|
@@ -1802,7 +1815,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1802
1815
|
}, [
|
|
1803
1816
|
createElementVNode(
|
|
1804
1817
|
"div",
|
|
1805
|
-
|
|
1818
|
+
_hoisted_8$5,
|
|
1806
1819
|
"-" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1807
1820
|
1
|
|
1808
1821
|
/* TEXT */
|
|
@@ -1810,18 +1823,18 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1810
1823
|
createElementVNode("img", {
|
|
1811
1824
|
class: "icon",
|
|
1812
1825
|
src: selectBean.value ? "https://cdn.ddjf.com/static/images/appkit/select.svg" : "https://cdn.ddjf.com/static/images/appkit/not-select.svg"
|
|
1813
|
-
}, null, 8,
|
|
1826
|
+
}, null, 8, _hoisted_9$5)
|
|
1814
1827
|
])) : createCommentVNode("v-if", true)
|
|
1815
1828
|
])) : createCommentVNode("v-if", true)
|
|
1816
1829
|
]),
|
|
1817
|
-
createElementVNode("view",
|
|
1818
|
-
!selectBean.value ? (openBlock(), createElementBlock("view",
|
|
1830
|
+
createElementVNode("view", _hoisted_10$5, [
|
|
1831
|
+
!selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_11$5, [
|
|
1819
1832
|
createVNode(_component_nut_checkbox, {
|
|
1820
1833
|
modelValue: state.agreed,
|
|
1821
1834
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
|
|
1822
1835
|
}, {
|
|
1823
1836
|
default: withCtx(() => [
|
|
1824
|
-
|
|
1837
|
+
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1825
1838
|
createElementVNode("a", {
|
|
1826
1839
|
class: "link inline",
|
|
1827
1840
|
onClick: onAgreementLinkClick
|
|
@@ -1831,17 +1844,11 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1831
1844
|
/* STABLE */
|
|
1832
1845
|
}, 8, ["modelValue"])
|
|
1833
1846
|
])) : createCommentVNode("v-if", true),
|
|
1834
|
-
createElementVNode("div",
|
|
1835
|
-
createElementVNode("div",
|
|
1836
|
-
|
|
1837
|
-
createElementVNode("span",
|
|
1838
|
-
|
|
1839
|
-
"i",
|
|
1840
|
-
null,
|
|
1841
|
-
"\uFFE5",
|
|
1842
|
-
-1
|
|
1843
|
-
/* HOISTED */
|
|
1844
|
-
)),
|
|
1847
|
+
createElementVNode("div", _hoisted_12$5, [
|
|
1848
|
+
createElementVNode("div", _hoisted_13$5, [
|
|
1849
|
+
createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
|
|
1850
|
+
createElementVNode("span", _hoisted_14$4, [
|
|
1851
|
+
_hoisted_15$3,
|
|
1845
1852
|
createTextVNode(
|
|
1846
1853
|
toDisplayString(currentAmount.value),
|
|
1847
1854
|
1
|
|
@@ -1856,9 +1863,9 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1856
1863
|
onClick: onPayClick,
|
|
1857
1864
|
class: "recharge-button"
|
|
1858
1865
|
}, {
|
|
1859
|
-
default: withCtx(() =>
|
|
1866
|
+
default: withCtx(() => [
|
|
1860
1867
|
createTextVNode("\u8D2D\u4E70")
|
|
1861
|
-
])
|
|
1868
|
+
]),
|
|
1862
1869
|
_: 1
|
|
1863
1870
|
/* STABLE */
|
|
1864
1871
|
}, 8, ["loading"])
|
|
@@ -1879,21 +1886,21 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1879
1886
|
[
|
|
1880
1887
|
createElementVNode(
|
|
1881
1888
|
"div",
|
|
1882
|
-
|
|
1889
|
+
_hoisted_16$3,
|
|
1883
1890
|
"\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1884
1891
|
1
|
|
1885
1892
|
/* TEXT */
|
|
1886
1893
|
),
|
|
1887
1894
|
createElementVNode(
|
|
1888
1895
|
"div",
|
|
1889
|
-
|
|
1896
|
+
_hoisted_17$2,
|
|
1890
1897
|
"\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
|
|
1891
1898
|
1
|
|
1892
1899
|
/* TEXT */
|
|
1893
1900
|
),
|
|
1894
1901
|
createElementVNode(
|
|
1895
1902
|
"div",
|
|
1896
|
-
|
|
1903
|
+
_hoisted_18$2,
|
|
1897
1904
|
"\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1898
1905
|
1
|
|
1899
1906
|
/* TEXT */
|
|
@@ -1921,11 +1928,84 @@ const components = {
|
|
|
1921
1928
|
TradeView: script$w
|
|
1922
1929
|
};
|
|
1923
1930
|
|
|
1924
|
-
const _hoisted_1$
|
|
1925
|
-
const _hoisted_2$
|
|
1926
|
-
const _hoisted_3$
|
|
1927
|
-
const _hoisted_4$
|
|
1928
|
-
const _hoisted_5$
|
|
1931
|
+
const _hoisted_1$u = { class: "account-card" };
|
|
1932
|
+
const _hoisted_2$q = { class: "card" };
|
|
1933
|
+
const _hoisted_3$m = { class: "card-row" };
|
|
1934
|
+
const _hoisted_4$h = { class: "card-row-left" };
|
|
1935
|
+
const _hoisted_5$e = /* @__PURE__ */ createElementVNode(
|
|
1936
|
+
"div",
|
|
1937
|
+
{ class: "bean-box" },
|
|
1938
|
+
[
|
|
1939
|
+
/* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
|
|
1940
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
1941
|
+
class: "bean-icon",
|
|
1942
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
1943
|
+
})
|
|
1944
|
+
]),
|
|
1945
|
+
/* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
1946
|
+
],
|
|
1947
|
+
-1
|
|
1948
|
+
/* HOISTED */
|
|
1949
|
+
);
|
|
1950
|
+
const _hoisted_6$a = { class: "bean-nums number" };
|
|
1951
|
+
const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
|
|
1952
|
+
"div",
|
|
1953
|
+
{ class: "account-info-name" },
|
|
1954
|
+
"\u8D26\u6237\u660E\u7EC6",
|
|
1955
|
+
-1
|
|
1956
|
+
/* HOISTED */
|
|
1957
|
+
);
|
|
1958
|
+
const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
|
|
1959
|
+
"div",
|
|
1960
|
+
{ class: "account-info-icon" },
|
|
1961
|
+
[
|
|
1962
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
1963
|
+
class: "icon",
|
|
1964
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
1965
|
+
})
|
|
1966
|
+
],
|
|
1967
|
+
-1
|
|
1968
|
+
/* HOISTED */
|
|
1969
|
+
);
|
|
1970
|
+
const _hoisted_9$4 = [
|
|
1971
|
+
_hoisted_7$8,
|
|
1972
|
+
_hoisted_8$4
|
|
1973
|
+
];
|
|
1974
|
+
const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
|
|
1975
|
+
"div",
|
|
1976
|
+
{ class: "line" },
|
|
1977
|
+
null,
|
|
1978
|
+
-1
|
|
1979
|
+
/* HOISTED */
|
|
1980
|
+
);
|
|
1981
|
+
const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
|
|
1982
|
+
"div",
|
|
1983
|
+
{ class: "card-row-left desc" },
|
|
1984
|
+
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
1985
|
+
-1
|
|
1986
|
+
/* HOISTED */
|
|
1987
|
+
);
|
|
1988
|
+
const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
|
|
1989
|
+
"div",
|
|
1990
|
+
null,
|
|
1991
|
+
"\u5145\u503C",
|
|
1992
|
+
-1
|
|
1993
|
+
/* HOISTED */
|
|
1994
|
+
);
|
|
1995
|
+
const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
|
|
1996
|
+
"img",
|
|
1997
|
+
{
|
|
1998
|
+
class: "pay-icon",
|
|
1999
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
2000
|
+
},
|
|
2001
|
+
null,
|
|
2002
|
+
-1
|
|
2003
|
+
/* HOISTED */
|
|
2004
|
+
);
|
|
2005
|
+
const _hoisted_14$3 = [
|
|
2006
|
+
_hoisted_12$4,
|
|
2007
|
+
_hoisted_13$4
|
|
2008
|
+
];
|
|
1929
2009
|
var script$v = /* @__PURE__ */ defineComponent({
|
|
1930
2010
|
__name: "BalanceCard",
|
|
1931
2011
|
props: {
|
|
@@ -1969,28 +2049,14 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
1969
2049
|
reload: loadBalance
|
|
1970
2050
|
});
|
|
1971
2051
|
return (_ctx, _cache) => {
|
|
1972
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1973
|
-
createElementVNode("div", _hoisted_2$
|
|
1974
|
-
createElementVNode("div", _hoisted_3$
|
|
1975
|
-
createElementVNode("div", _hoisted_4$
|
|
1976
|
-
|
|
1977
|
-
"div",
|
|
1978
|
-
{ class: "bean-box" },
|
|
1979
|
-
[
|
|
1980
|
-
createElementVNode("div", { class: "bean-icon-box" }, [
|
|
1981
|
-
createElementVNode("img", {
|
|
1982
|
-
class: "bean-icon",
|
|
1983
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
1984
|
-
})
|
|
1985
|
-
]),
|
|
1986
|
-
createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
1987
|
-
],
|
|
1988
|
-
-1
|
|
1989
|
-
/* HOISTED */
|
|
1990
|
-
)),
|
|
2052
|
+
return openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
2053
|
+
createElementVNode("div", _hoisted_2$q, [
|
|
2054
|
+
createElementVNode("div", _hoisted_3$m, [
|
|
2055
|
+
createElementVNode("div", _hoisted_4$h, [
|
|
2056
|
+
_hoisted_5$e,
|
|
1991
2057
|
createElementVNode(
|
|
1992
2058
|
"div",
|
|
1993
|
-
|
|
2059
|
+
_hoisted_6$a,
|
|
1994
2060
|
toDisplayString(balance.value.total || 0),
|
|
1995
2061
|
1
|
|
1996
2062
|
/* TEXT */
|
|
@@ -2000,67 +2066,17 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2000
2066
|
createElementVNode("div", {
|
|
2001
2067
|
class: "account-info-entry",
|
|
2002
2068
|
onClick: gotoDetail
|
|
2003
|
-
},
|
|
2004
|
-
createElementVNode(
|
|
2005
|
-
"div",
|
|
2006
|
-
{ class: "account-info-name" },
|
|
2007
|
-
"\u8D26\u6237\u660E\u7EC6",
|
|
2008
|
-
-1
|
|
2009
|
-
/* HOISTED */
|
|
2010
|
-
),
|
|
2011
|
-
createElementVNode(
|
|
2012
|
-
"div",
|
|
2013
|
-
{ class: "account-info-icon" },
|
|
2014
|
-
[
|
|
2015
|
-
createElementVNode("img", {
|
|
2016
|
-
class: "icon",
|
|
2017
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
2018
|
-
})
|
|
2019
|
-
],
|
|
2020
|
-
-1
|
|
2021
|
-
/* HOISTED */
|
|
2022
|
-
)
|
|
2023
|
-
]))
|
|
2069
|
+
}, [..._hoisted_9$4])
|
|
2024
2070
|
])
|
|
2025
2071
|
]),
|
|
2026
|
-
|
|
2027
|
-
"div",
|
|
2028
|
-
{ class: "line" },
|
|
2029
|
-
null,
|
|
2030
|
-
-1
|
|
2031
|
-
/* HOISTED */
|
|
2032
|
-
)),
|
|
2072
|
+
_hoisted_10$4,
|
|
2033
2073
|
createElementVNode("div", { class: "card-row" }, [
|
|
2034
|
-
|
|
2035
|
-
"div",
|
|
2036
|
-
{ class: "card-row-left desc" },
|
|
2037
|
-
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
2038
|
-
-1
|
|
2039
|
-
/* HOISTED */
|
|
2040
|
-
)),
|
|
2074
|
+
_hoisted_11$4,
|
|
2041
2075
|
createElementVNode("div", { class: "card-row-right" }, [
|
|
2042
2076
|
createElementVNode("div", {
|
|
2043
2077
|
class: "pay",
|
|
2044
2078
|
onClick: gotoRecharge
|
|
2045
|
-
},
|
|
2046
|
-
createElementVNode(
|
|
2047
|
-
"div",
|
|
2048
|
-
null,
|
|
2049
|
-
"\u5145\u503C",
|
|
2050
|
-
-1
|
|
2051
|
-
/* HOISTED */
|
|
2052
|
-
),
|
|
2053
|
-
createElementVNode(
|
|
2054
|
-
"img",
|
|
2055
|
-
{
|
|
2056
|
-
class: "pay-icon",
|
|
2057
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
2058
|
-
},
|
|
2059
|
-
null,
|
|
2060
|
-
-1
|
|
2061
|
-
/* HOISTED */
|
|
2062
|
-
)
|
|
2063
|
-
]))
|
|
2079
|
+
}, [..._hoisted_14$3])
|
|
2064
2080
|
])
|
|
2065
2081
|
])
|
|
2066
2082
|
])
|
|
@@ -2086,11 +2102,27 @@ const consumptionTypes = [
|
|
|
2086
2102
|
const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
|
|
2087
2103
|
const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
|
|
2088
2104
|
|
|
2089
|
-
const _hoisted_1$
|
|
2090
|
-
const _hoisted_2$
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2105
|
+
const _hoisted_1$t = { class: "consumption-filter" };
|
|
2106
|
+
const _hoisted_2$p = /* @__PURE__ */ createElementVNode(
|
|
2107
|
+
"div",
|
|
2108
|
+
{ class: "consumption-filter-title" },
|
|
2109
|
+
[
|
|
2110
|
+
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2111
|
+
],
|
|
2112
|
+
-1
|
|
2113
|
+
/* HOISTED */
|
|
2114
|
+
);
|
|
2115
|
+
const _hoisted_3$l = { class: "consumption-filter-content" };
|
|
2116
|
+
const _hoisted_4$g = { class: "title" };
|
|
2117
|
+
const _hoisted_5$d = { class: "info" };
|
|
2118
|
+
const _hoisted_6$9 = ["onClick"];
|
|
2119
|
+
const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
|
|
2120
|
+
"div",
|
|
2121
|
+
{ class: "consumption-filter-bottom" },
|
|
2122
|
+
null,
|
|
2123
|
+
-1
|
|
2124
|
+
/* HOISTED */
|
|
2125
|
+
);
|
|
2094
2126
|
var script$u = /* @__PURE__ */ defineComponent({
|
|
2095
2127
|
__name: "ConsumptionFilter",
|
|
2096
2128
|
props: {
|
|
@@ -2143,17 +2175,9 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2143
2175
|
emit("complete", result);
|
|
2144
2176
|
};
|
|
2145
2177
|
return (_ctx, _cache) => {
|
|
2146
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
{ class: "consumption-filter-title" },
|
|
2150
|
-
[
|
|
2151
|
-
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2152
|
-
],
|
|
2153
|
-
-1
|
|
2154
|
-
/* HOISTED */
|
|
2155
|
-
)),
|
|
2156
|
-
createElementVNode("div", _hoisted_2$h, [
|
|
2178
|
+
return openBlock(), createElementBlock("div", _hoisted_1$t, [
|
|
2179
|
+
_hoisted_2$p,
|
|
2180
|
+
createElementVNode("div", _hoisted_3$l, [
|
|
2157
2181
|
(openBlock(true), createElementBlock(
|
|
2158
2182
|
Fragment,
|
|
2159
2183
|
null,
|
|
@@ -2164,12 +2188,12 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2164
2188
|
[
|
|
2165
2189
|
createElementVNode(
|
|
2166
2190
|
"div",
|
|
2167
|
-
|
|
2191
|
+
_hoisted_4$g,
|
|
2168
2192
|
toDisplayString(item.title),
|
|
2169
2193
|
1
|
|
2170
2194
|
/* TEXT */
|
|
2171
2195
|
),
|
|
2172
|
-
createElementVNode("div",
|
|
2196
|
+
createElementVNode("div", _hoisted_5$d, [
|
|
2173
2197
|
(openBlock(true), createElementBlock(
|
|
2174
2198
|
Fragment,
|
|
2175
2199
|
null,
|
|
@@ -2178,7 +2202,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2178
2202
|
onClick: () => onFilterSectionClick(index, it.code),
|
|
2179
2203
|
class: normalizeClass([getItemClass(index, it.code), "info-item"]),
|
|
2180
2204
|
key: i
|
|
2181
|
-
}, toDisplayString(typeof it === "string" ? it : it.name), 11,
|
|
2205
|
+
}, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_6$9);
|
|
2182
2206
|
}),
|
|
2183
2207
|
128
|
|
2184
2208
|
/* KEYED_FRAGMENT */
|
|
@@ -2203,13 +2227,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2203
2227
|
onClick: onOkClick
|
|
2204
2228
|
}, "\u786E\u5B9A")
|
|
2205
2229
|
]),
|
|
2206
|
-
|
|
2207
|
-
"div",
|
|
2208
|
-
{ class: "consumption-filter-bottom" },
|
|
2209
|
-
null,
|
|
2210
|
-
-1
|
|
2211
|
-
/* HOISTED */
|
|
2212
|
-
))
|
|
2230
|
+
_hoisted_7$7
|
|
2213
2231
|
]);
|
|
2214
2232
|
};
|
|
2215
2233
|
}
|
|
@@ -2217,9 +2235,37 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2217
2235
|
|
|
2218
2236
|
script$u.__file = "src/balance/components/ConsumptionFilter.vue";
|
|
2219
2237
|
|
|
2220
|
-
const _hoisted_1$
|
|
2221
|
-
const _hoisted_2$
|
|
2222
|
-
|
|
2238
|
+
const _hoisted_1$s = { class: "appkit-date-filter" };
|
|
2239
|
+
const _hoisted_2$o = /* @__PURE__ */ createElementVNode(
|
|
2240
|
+
"div",
|
|
2241
|
+
{ class: "date-filter-header" },
|
|
2242
|
+
"\u65E5\u671F\u9009\u62E9",
|
|
2243
|
+
-1
|
|
2244
|
+
/* HOISTED */
|
|
2245
|
+
);
|
|
2246
|
+
const _hoisted_3$k = { class: "content" };
|
|
2247
|
+
const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
|
|
2248
|
+
"div",
|
|
2249
|
+
{ class: "title" },
|
|
2250
|
+
"\u81EA\u5B9A\u4E49",
|
|
2251
|
+
-1
|
|
2252
|
+
/* HOISTED */
|
|
2253
|
+
);
|
|
2254
|
+
const _hoisted_5$c = { class: "time" };
|
|
2255
|
+
const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
|
|
2256
|
+
"div",
|
|
2257
|
+
{ class: "line" },
|
|
2258
|
+
"-",
|
|
2259
|
+
-1
|
|
2260
|
+
/* HOISTED */
|
|
2261
|
+
);
|
|
2262
|
+
const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
|
|
2263
|
+
"div",
|
|
2264
|
+
{ class: "bottom" },
|
|
2265
|
+
null,
|
|
2266
|
+
-1
|
|
2267
|
+
/* HOISTED */
|
|
2268
|
+
);
|
|
2223
2269
|
var script$t = /* @__PURE__ */ defineComponent({
|
|
2224
2270
|
__name: "DateFilter",
|
|
2225
2271
|
props: {
|
|
@@ -2229,7 +2275,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2229
2275
|
emits: ["complete", "reset"],
|
|
2230
2276
|
setup(__props, { emit: __emit }) {
|
|
2231
2277
|
const props = __props;
|
|
2232
|
-
const emit = __emit;
|
|
2278
|
+
const emit = __emit, state = usePopup();
|
|
2233
2279
|
watch(
|
|
2234
2280
|
() => `${props.from}${props.to}`,
|
|
2235
2281
|
() => {
|
|
@@ -2243,6 +2289,10 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2243
2289
|
const minDate = ref();
|
|
2244
2290
|
const maxDate = ref(/* @__PURE__ */ new Date());
|
|
2245
2291
|
const datePickerOpen = ref(false);
|
|
2292
|
+
state.beforeClose = () => {
|
|
2293
|
+
datePickerOpen.value = false;
|
|
2294
|
+
return true;
|
|
2295
|
+
};
|
|
2246
2296
|
function reset() {
|
|
2247
2297
|
emit("reset");
|
|
2248
2298
|
}
|
|
@@ -2261,6 +2311,11 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2261
2311
|
result.to = time;
|
|
2262
2312
|
}
|
|
2263
2313
|
datePickerOpen.value = false;
|
|
2314
|
+
state.couldClose = true;
|
|
2315
|
+
}
|
|
2316
|
+
function onDatePickerCancel() {
|
|
2317
|
+
datePickerOpen.value = false;
|
|
2318
|
+
state.couldClose = true;
|
|
2264
2319
|
}
|
|
2265
2320
|
function switchDateInput(shift) {
|
|
2266
2321
|
if (shift === "from") {
|
|
@@ -2273,27 +2328,16 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2273
2328
|
focusedDate.value = new Date(result[shift]);
|
|
2274
2329
|
focused.value = shift;
|
|
2275
2330
|
datePickerOpen.value = true;
|
|
2331
|
+
state.couldClose = false;
|
|
2276
2332
|
}
|
|
2277
2333
|
return (_ctx, _cache) => {
|
|
2278
2334
|
const _component_nut_date_picker = DatePicker;
|
|
2279
2335
|
const _component_nut_popup = Popup;
|
|
2280
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
"
|
|
2285
|
-
-1
|
|
2286
|
-
/* HOISTED */
|
|
2287
|
-
)),
|
|
2288
|
-
createElementVNode("div", _hoisted_2$g, [
|
|
2289
|
-
_cache[6] || (_cache[6] = createElementVNode(
|
|
2290
|
-
"div",
|
|
2291
|
-
{ class: "title" },
|
|
2292
|
-
"\u81EA\u5B9A\u4E49",
|
|
2293
|
-
-1
|
|
2294
|
-
/* HOISTED */
|
|
2295
|
-
)),
|
|
2296
|
-
createElementVNode("div", _hoisted_3$b, [
|
|
2336
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
2337
|
+
_hoisted_2$o,
|
|
2338
|
+
createElementVNode("div", _hoisted_3$k, [
|
|
2339
|
+
_hoisted_4$f,
|
|
2340
|
+
createElementVNode("div", _hoisted_5$c, [
|
|
2297
2341
|
createElementVNode(
|
|
2298
2342
|
"div",
|
|
2299
2343
|
{
|
|
@@ -2304,13 +2348,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2304
2348
|
3
|
|
2305
2349
|
/* TEXT, CLASS */
|
|
2306
2350
|
),
|
|
2307
|
-
|
|
2308
|
-
"div",
|
|
2309
|
-
{ class: "line" },
|
|
2310
|
-
"-",
|
|
2311
|
-
-1
|
|
2312
|
-
/* HOISTED */
|
|
2313
|
-
)),
|
|
2351
|
+
_hoisted_6$8,
|
|
2314
2352
|
createElementVNode(
|
|
2315
2353
|
"div",
|
|
2316
2354
|
{
|
|
@@ -2333,17 +2371,13 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2333
2371
|
onClick: onOkClick
|
|
2334
2372
|
}, "\u786E\u5B9A")
|
|
2335
2373
|
]),
|
|
2336
|
-
|
|
2337
|
-
"div",
|
|
2338
|
-
{ class: "bottom" },
|
|
2339
|
-
null,
|
|
2340
|
-
-1
|
|
2341
|
-
/* HOISTED */
|
|
2342
|
-
)),
|
|
2374
|
+
_hoisted_7$6,
|
|
2343
2375
|
createVNode(_component_nut_popup, {
|
|
2344
2376
|
visible: datePickerOpen.value,
|
|
2345
|
-
"onUpdate:visible": _cache[
|
|
2346
|
-
|
|
2377
|
+
"onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event),
|
|
2378
|
+
class: "appkit-date-filter-picker-popup",
|
|
2379
|
+
position: "bottom",
|
|
2380
|
+
"overlay-class": "appkit-date-filter-picker-overlay"
|
|
2347
2381
|
}, {
|
|
2348
2382
|
default: withCtx(() => [
|
|
2349
2383
|
createVNode(_component_nut_date_picker, {
|
|
@@ -2353,7 +2387,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2353
2387
|
"max-date": maxDate.value,
|
|
2354
2388
|
"is-show-chinese": false,
|
|
2355
2389
|
"three-dimensional": false,
|
|
2356
|
-
onCancel:
|
|
2390
|
+
onCancel: onDatePickerCancel,
|
|
2357
2391
|
onConfirm: onDatePickerComplete
|
|
2358
2392
|
}, null, 8, ["modelValue", "min-date", "max-date"])
|
|
2359
2393
|
]),
|
|
@@ -2367,36 +2401,38 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2367
2401
|
|
|
2368
2402
|
script$t.__file = "src/balance/components/DateFilter.vue";
|
|
2369
2403
|
|
|
2370
|
-
const _hoisted_1$
|
|
2404
|
+
const _hoisted_1$r = { class: "consumption-rules" };
|
|
2405
|
+
const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
|
|
2406
|
+
"div",
|
|
2407
|
+
{ class: "title" },
|
|
2408
|
+
"\u89C4\u5219\u8BF4\u660E",
|
|
2409
|
+
-1
|
|
2410
|
+
/* HOISTED */
|
|
2411
|
+
);
|
|
2412
|
+
const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
|
|
2413
|
+
"div",
|
|
2414
|
+
{ class: "desc" },
|
|
2415
|
+
[
|
|
2416
|
+
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2417
|
+
/* @__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 "),
|
|
2418
|
+
/* @__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 "),
|
|
2419
|
+
/* @__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 "),
|
|
2420
|
+
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2421
|
+
/* @__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 "),
|
|
2422
|
+
/* @__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 ")
|
|
2423
|
+
],
|
|
2424
|
+
-1
|
|
2425
|
+
/* HOISTED */
|
|
2426
|
+
);
|
|
2371
2427
|
var script$s = /* @__PURE__ */ defineComponent({
|
|
2372
2428
|
__name: "ConsumptionRules",
|
|
2373
2429
|
emits: ["complete"],
|
|
2374
2430
|
setup(__props, { emit: __emit }) {
|
|
2375
2431
|
const emit = __emit;
|
|
2376
2432
|
return (_ctx, _cache) => {
|
|
2377
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
{ class: "title" },
|
|
2381
|
-
"\u89C4\u5219\u8BF4\u660E",
|
|
2382
|
-
-1
|
|
2383
|
-
/* HOISTED */
|
|
2384
|
-
)),
|
|
2385
|
-
_cache[2] || (_cache[2] = createElementVNode(
|
|
2386
|
-
"div",
|
|
2387
|
-
{ class: "desc" },
|
|
2388
|
-
[
|
|
2389
|
-
createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2390
|
-
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 "),
|
|
2391
|
-
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 "),
|
|
2392
|
-
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 "),
|
|
2393
|
-
createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2394
|
-
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 "),
|
|
2395
|
-
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 ")
|
|
2396
|
-
],
|
|
2397
|
-
-1
|
|
2398
|
-
/* HOISTED */
|
|
2399
|
-
)),
|
|
2433
|
+
return openBlock(), createElementBlock("div", _hoisted_1$r, [
|
|
2434
|
+
_hoisted_2$n,
|
|
2435
|
+
_hoisted_3$j,
|
|
2400
2436
|
createElementVNode("div", {
|
|
2401
2437
|
class: "know",
|
|
2402
2438
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
|
|
@@ -2408,27 +2444,30 @@ var script$s = /* @__PURE__ */ defineComponent({
|
|
|
2408
2444
|
|
|
2409
2445
|
script$s.__file = "src/balance/components/ConsumptionRules.vue";
|
|
2410
2446
|
|
|
2411
|
-
const _hoisted_1$
|
|
2447
|
+
const _hoisted_1$q = { class: "empty-view" };
|
|
2448
|
+
const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
|
|
2449
|
+
"img",
|
|
2450
|
+
{
|
|
2451
|
+
class: "empty-view-image",
|
|
2452
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2453
|
+
},
|
|
2454
|
+
null,
|
|
2455
|
+
-1
|
|
2456
|
+
/* HOISTED */
|
|
2457
|
+
);
|
|
2458
|
+
const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
|
|
2459
|
+
"div",
|
|
2460
|
+
{ class: "empty-view-text" },
|
|
2461
|
+
"\u6682\u65E0\u6570\u636E",
|
|
2462
|
+
-1
|
|
2463
|
+
/* HOISTED */
|
|
2464
|
+
);
|
|
2465
|
+
const _hoisted_4$e = [
|
|
2466
|
+
_hoisted_2$m,
|
|
2467
|
+
_hoisted_3$i
|
|
2468
|
+
];
|
|
2412
2469
|
function render$1(_ctx, _cache) {
|
|
2413
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2414
|
-
createElementVNode(
|
|
2415
|
-
"img",
|
|
2416
|
-
{
|
|
2417
|
-
class: "empty-view-image",
|
|
2418
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2419
|
-
},
|
|
2420
|
-
null,
|
|
2421
|
-
-1
|
|
2422
|
-
/* HOISTED */
|
|
2423
|
-
),
|
|
2424
|
-
createElementVNode(
|
|
2425
|
-
"div",
|
|
2426
|
-
{ class: "empty-view-text" },
|
|
2427
|
-
"\u6682\u65E0\u6570\u636E",
|
|
2428
|
-
-1
|
|
2429
|
-
/* HOISTED */
|
|
2430
|
-
)
|
|
2431
|
-
]));
|
|
2470
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q, [..._hoisted_4$e]);
|
|
2432
2471
|
}
|
|
2433
2472
|
|
|
2434
2473
|
/* unplugin-vue-components disabled */const script$r = {};
|
|
@@ -2436,10 +2475,31 @@ function render$1(_ctx, _cache) {
|
|
|
2436
2475
|
script$r.render = render$1;
|
|
2437
2476
|
script$r.__file = "src/shared/components/EmptyView.vue";
|
|
2438
2477
|
|
|
2439
|
-
const _hoisted_1$
|
|
2478
|
+
const _hoisted_1$p = {
|
|
2440
2479
|
key: 0,
|
|
2441
2480
|
class: "tip"
|
|
2442
2481
|
};
|
|
2482
|
+
const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
|
|
2483
|
+
"img",
|
|
2484
|
+
{
|
|
2485
|
+
class: "tip-icon",
|
|
2486
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2487
|
+
},
|
|
2488
|
+
null,
|
|
2489
|
+
-1
|
|
2490
|
+
/* HOISTED */
|
|
2491
|
+
);
|
|
2492
|
+
const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
|
|
2493
|
+
"div",
|
|
2494
|
+
{ class: "tip-content" },
|
|
2495
|
+
"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",
|
|
2496
|
+
-1
|
|
2497
|
+
/* HOISTED */
|
|
2498
|
+
);
|
|
2499
|
+
const _hoisted_4$d = [
|
|
2500
|
+
_hoisted_2$l,
|
|
2501
|
+
_hoisted_3$h
|
|
2502
|
+
];
|
|
2443
2503
|
var script$q = /* @__PURE__ */ defineComponent({
|
|
2444
2504
|
__name: "Tip",
|
|
2445
2505
|
setup(__props) {
|
|
@@ -2452,73 +2512,141 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
2452
2512
|
}
|
|
2453
2513
|
});
|
|
2454
2514
|
return (_ctx, _cache) => {
|
|
2455
|
-
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
2456
|
-
createElementVNode(
|
|
2457
|
-
"img",
|
|
2458
|
-
{
|
|
2459
|
-
class: "tip-icon",
|
|
2460
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2461
|
-
},
|
|
2462
|
-
null,
|
|
2463
|
-
-1
|
|
2464
|
-
/* HOISTED */
|
|
2465
|
-
),
|
|
2466
|
-
createElementVNode(
|
|
2467
|
-
"div",
|
|
2468
|
-
{ class: "tip-content" },
|
|
2469
|
-
"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",
|
|
2470
|
-
-1
|
|
2471
|
-
/* HOISTED */
|
|
2472
|
-
)
|
|
2473
|
-
]))) : createCommentVNode("v-if", true);
|
|
2515
|
+
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$p, [..._hoisted_4$d])) : createCommentVNode("v-if", true);
|
|
2474
2516
|
};
|
|
2475
2517
|
}
|
|
2476
2518
|
});
|
|
2477
2519
|
|
|
2478
2520
|
script$q.__file = "src/balance/components/Tip.vue";
|
|
2479
2521
|
|
|
2480
|
-
const _hoisted_1$
|
|
2481
|
-
const _hoisted_2$
|
|
2482
|
-
const _hoisted_3$
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2522
|
+
const _hoisted_1$o = { class: "account-view" };
|
|
2523
|
+
const _hoisted_2$k = { class: "scroll-content" };
|
|
2524
|
+
const _hoisted_3$g = /* @__PURE__ */ createElementVNode(
|
|
2525
|
+
"label",
|
|
2526
|
+
null,
|
|
2527
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
2528
|
+
-1
|
|
2529
|
+
/* HOISTED */
|
|
2530
|
+
);
|
|
2531
|
+
const _hoisted_4$c = [
|
|
2532
|
+
_hoisted_3$g
|
|
2533
|
+
];
|
|
2534
|
+
const _hoisted_5$b = { class: "balance" };
|
|
2535
|
+
const _hoisted_6$7 = { class: "bean-box spa-between" };
|
|
2536
|
+
const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
|
|
2537
|
+
"div",
|
|
2538
|
+
{ class: "bean-img" },
|
|
2539
|
+
[
|
|
2540
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
2541
|
+
class: "bean-icon",
|
|
2542
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2543
|
+
}),
|
|
2544
|
+
/* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2545
|
+
],
|
|
2546
|
+
-1
|
|
2547
|
+
/* HOISTED */
|
|
2548
|
+
);
|
|
2549
|
+
const _hoisted_8$3 = { class: "bean-counts spa-between" };
|
|
2550
|
+
const _hoisted_9$3 = { class: "counts number" };
|
|
2551
|
+
const _hoisted_10$3 = {
|
|
2487
2552
|
key: 0,
|
|
2488
2553
|
class: "rights-card"
|
|
2489
2554
|
};
|
|
2490
|
-
const
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2555
|
+
const _hoisted_11$3 = /* @__PURE__ */ createElementVNode(
|
|
2556
|
+
"div",
|
|
2557
|
+
{ class: "title" },
|
|
2558
|
+
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
2559
|
+
-1
|
|
2560
|
+
/* HOISTED */
|
|
2561
|
+
);
|
|
2562
|
+
const _hoisted_12$3 = { class: "list" };
|
|
2563
|
+
const _hoisted_13$3 = { class: "item-count" };
|
|
2564
|
+
const _hoisted_14$2 = { class: "item-title" };
|
|
2565
|
+
const _hoisted_15$2 = {
|
|
2494
2566
|
key: 0,
|
|
2495
2567
|
class: "item-title-button"
|
|
2496
2568
|
};
|
|
2497
|
-
const
|
|
2498
|
-
const
|
|
2569
|
+
const _hoisted_16$2 = ["onClick"];
|
|
2570
|
+
const _hoisted_17$1 = /* @__PURE__ */ createElementVNode(
|
|
2571
|
+
"img",
|
|
2572
|
+
{
|
|
2573
|
+
class: "button-icon",
|
|
2574
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2575
|
+
},
|
|
2576
|
+
null,
|
|
2577
|
+
-1
|
|
2578
|
+
/* HOISTED */
|
|
2579
|
+
);
|
|
2580
|
+
const _hoisted_18$1 = {
|
|
2499
2581
|
key: 1,
|
|
2500
2582
|
class: "rights-card"
|
|
2501
2583
|
};
|
|
2502
|
-
const
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
const
|
|
2584
|
+
const _hoisted_19$1 = /* @__PURE__ */ createElementVNode(
|
|
2585
|
+
"div",
|
|
2586
|
+
{ class: "title" },
|
|
2587
|
+
"AI\u5BA1\u6279\u6743\u76CA",
|
|
2588
|
+
-1
|
|
2589
|
+
/* HOISTED */
|
|
2590
|
+
);
|
|
2591
|
+
const _hoisted_20$1 = { class: "list" };
|
|
2592
|
+
const _hoisted_21$1 = { class: "item-count" };
|
|
2593
|
+
const _hoisted_22$1 = { class: "item-title" };
|
|
2594
|
+
const _hoisted_23$1 = { class: "operation-box" };
|
|
2595
|
+
const _hoisted_24$1 = { class: "search-time" };
|
|
2596
|
+
const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
|
|
2597
|
+
"div",
|
|
2598
|
+
{ class: "title" },
|
|
2599
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
2600
|
+
-1
|
|
2601
|
+
/* HOISTED */
|
|
2602
|
+
);
|
|
2603
|
+
const _hoisted_26 = { class: "text number" };
|
|
2604
|
+
const _hoisted_27 = /* @__PURE__ */ createElementVNode(
|
|
2605
|
+
"img",
|
|
2606
|
+
{
|
|
2607
|
+
style: { "margin-top": "-2px" },
|
|
2608
|
+
class: "time-icon",
|
|
2609
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
2610
|
+
},
|
|
2611
|
+
null,
|
|
2612
|
+
-1
|
|
2613
|
+
/* HOISTED */
|
|
2614
|
+
);
|
|
2615
|
+
const _hoisted_28 = /* @__PURE__ */ createElementVNode(
|
|
2616
|
+
"span",
|
|
2617
|
+
{ class: "text" },
|
|
2618
|
+
"\u7B5B\u9009",
|
|
2619
|
+
-1
|
|
2620
|
+
/* HOISTED */
|
|
2621
|
+
);
|
|
2622
|
+
const _hoisted_29 = /* @__PURE__ */ createElementVNode(
|
|
2623
|
+
"img",
|
|
2624
|
+
{
|
|
2625
|
+
class: "time-icon",
|
|
2626
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
2627
|
+
},
|
|
2628
|
+
null,
|
|
2629
|
+
-1
|
|
2630
|
+
/* HOISTED */
|
|
2631
|
+
);
|
|
2632
|
+
const _hoisted_30 = [
|
|
2633
|
+
_hoisted_28,
|
|
2634
|
+
_hoisted_29
|
|
2635
|
+
];
|
|
2636
|
+
const _hoisted_31 = { class: "operation-list" };
|
|
2637
|
+
const _hoisted_32 = {
|
|
2510
2638
|
key: 0,
|
|
2511
2639
|
class: "box"
|
|
2512
2640
|
};
|
|
2513
|
-
const
|
|
2514
|
-
const
|
|
2515
|
-
const
|
|
2516
|
-
const
|
|
2517
|
-
const
|
|
2518
|
-
const
|
|
2519
|
-
const
|
|
2520
|
-
const
|
|
2521
|
-
const
|
|
2641
|
+
const _hoisted_33 = { class: "title number" };
|
|
2642
|
+
const _hoisted_34 = { class: "item-type" };
|
|
2643
|
+
const _hoisted_35 = { class: "item-detail" };
|
|
2644
|
+
const _hoisted_36 = { class: "item-info spa-between" };
|
|
2645
|
+
const _hoisted_37 = { class: "item-info-type" };
|
|
2646
|
+
const _hoisted_38 = { class: "item-info-title" };
|
|
2647
|
+
const _hoisted_39 = { class: "item-info-amount number" };
|
|
2648
|
+
const _hoisted_40 = { class: "item-detail-remark" };
|
|
2649
|
+
const _hoisted_41 = {
|
|
2522
2650
|
key: 0,
|
|
2523
2651
|
class: "box-not-text"
|
|
2524
2652
|
};
|
|
@@ -2699,8 +2827,8 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2699
2827
|
Fragment,
|
|
2700
2828
|
null,
|
|
2701
2829
|
[
|
|
2702
|
-
createElementVNode("div", _hoisted_1$
|
|
2703
|
-
createElementVNode("div", _hoisted_2$
|
|
2830
|
+
createElementVNode("div", _hoisted_1$o, [
|
|
2831
|
+
createElementVNode("div", _hoisted_2$k, [
|
|
2704
2832
|
createVNode(unref(script$H), {
|
|
2705
2833
|
"color-mode": "dark",
|
|
2706
2834
|
title: "\u6211\u7684\u8D26\u6237",
|
|
@@ -2711,40 +2839,20 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2711
2839
|
createElementVNode("div", {
|
|
2712
2840
|
class: "small-bean-button",
|
|
2713
2841
|
onClick: onSecondBalanceButtonClick
|
|
2714
|
-
},
|
|
2715
|
-
createElementVNode(
|
|
2716
|
-
"label",
|
|
2717
|
-
null,
|
|
2718
|
-
"\u6536\u652F\u660E\u7EC6",
|
|
2719
|
-
-1
|
|
2720
|
-
/* HOISTED */
|
|
2721
|
-
)
|
|
2722
|
-
]))
|
|
2842
|
+
}, [..._hoisted_4$c])
|
|
2723
2843
|
]),
|
|
2724
|
-
createElementVNode("div",
|
|
2725
|
-
createElementVNode("div",
|
|
2726
|
-
|
|
2727
|
-
"div",
|
|
2728
|
-
{ class: "bean-img" },
|
|
2729
|
-
[
|
|
2730
|
-
createElementVNode("img", {
|
|
2731
|
-
class: "bean-icon",
|
|
2732
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2733
|
-
}),
|
|
2734
|
-
createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2735
|
-
],
|
|
2736
|
-
-1
|
|
2737
|
-
/* HOISTED */
|
|
2738
|
-
)),
|
|
2844
|
+
createElementVNode("div", _hoisted_5$b, [
|
|
2845
|
+
createElementVNode("div", _hoisted_6$7, [
|
|
2846
|
+
_hoisted_7$5,
|
|
2739
2847
|
createElementVNode("div", {
|
|
2740
2848
|
class: "rule",
|
|
2741
2849
|
onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
|
|
2742
2850
|
}, "\u89C4\u5219\u8BF4\u660E")
|
|
2743
2851
|
]),
|
|
2744
|
-
createElementVNode("div",
|
|
2852
|
+
createElementVNode("div", _hoisted_8$3, [
|
|
2745
2853
|
createElementVNode(
|
|
2746
2854
|
"div",
|
|
2747
|
-
|
|
2855
|
+
_hoisted_9$3,
|
|
2748
2856
|
toDisplayString(balance.value.total || 0),
|
|
2749
2857
|
1
|
|
2750
2858
|
/* TEXT */
|
|
@@ -2756,15 +2864,9 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2756
2864
|
])
|
|
2757
2865
|
]),
|
|
2758
2866
|
createVNode(script$q),
|
|
2759
|
-
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div",
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
{ class: "title" },
|
|
2763
|
-
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
2764
|
-
-1
|
|
2765
|
-
/* HOISTED */
|
|
2766
|
-
)),
|
|
2767
|
-
createElementVNode("div", _hoisted_8$3, [
|
|
2867
|
+
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_10$3, [
|
|
2868
|
+
_hoisted_11$3,
|
|
2869
|
+
createElementVNode("div", _hoisted_12$3, [
|
|
2768
2870
|
(openBlock(true), createElementBlock(
|
|
2769
2871
|
Fragment,
|
|
2770
2872
|
null,
|
|
@@ -2773,7 +2875,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2773
2875
|
class: "item star-item",
|
|
2774
2876
|
key: index
|
|
2775
2877
|
}, [
|
|
2776
|
-
createElementVNode("div",
|
|
2878
|
+
createElementVNode("div", _hoisted_13$3, [
|
|
2777
2879
|
createElementVNode(
|
|
2778
2880
|
"span",
|
|
2779
2881
|
null,
|
|
@@ -2789,7 +2891,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2789
2891
|
/* TEXT */
|
|
2790
2892
|
)
|
|
2791
2893
|
]),
|
|
2792
|
-
createElementVNode("div",
|
|
2894
|
+
createElementVNode("div", _hoisted_14$2, [
|
|
2793
2895
|
createElementVNode(
|
|
2794
2896
|
"div",
|
|
2795
2897
|
null,
|
|
@@ -2797,20 +2899,11 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2797
2899
|
1
|
|
2798
2900
|
/* TEXT */
|
|
2799
2901
|
),
|
|
2800
|
-
item.id ? (openBlock(), createElementBlock("div",
|
|
2902
|
+
item.id ? (openBlock(), createElementBlock("div", _hoisted_15$2, [
|
|
2801
2903
|
createElementVNode("div", {
|
|
2802
2904
|
onClick: ($event) => gotoTrade(item)
|
|
2803
|
-
}, "\u8D85\u503C\u6362\u8D2D", 8,
|
|
2804
|
-
|
|
2805
|
-
"img",
|
|
2806
|
-
{
|
|
2807
|
-
class: "button-icon",
|
|
2808
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2809
|
-
},
|
|
2810
|
-
null,
|
|
2811
|
-
-1
|
|
2812
|
-
/* HOISTED */
|
|
2813
|
-
))
|
|
2905
|
+
}, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_16$2),
|
|
2906
|
+
_hoisted_17$1
|
|
2814
2907
|
])) : createCommentVNode("v-if", true)
|
|
2815
2908
|
])
|
|
2816
2909
|
]);
|
|
@@ -2820,15 +2913,9 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2820
2913
|
))
|
|
2821
2914
|
])
|
|
2822
2915
|
])) : createCommentVNode("v-if", true),
|
|
2823
|
-
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div",
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
{ class: "title" },
|
|
2827
|
-
"AI\u5BA1\u6279\u6743\u76CA",
|
|
2828
|
-
-1
|
|
2829
|
-
/* HOISTED */
|
|
2830
|
-
)),
|
|
2831
|
-
createElementVNode("div", _hoisted_14$1, [
|
|
2916
|
+
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
2917
|
+
_hoisted_19$1,
|
|
2918
|
+
createElementVNode("div", _hoisted_20$1, [
|
|
2832
2919
|
(openBlock(true), createElementBlock(
|
|
2833
2920
|
Fragment,
|
|
2834
2921
|
null,
|
|
@@ -2839,14 +2926,14 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2839
2926
|
}, [
|
|
2840
2927
|
createElementVNode(
|
|
2841
2928
|
"div",
|
|
2842
|
-
|
|
2929
|
+
_hoisted_21$1,
|
|
2843
2930
|
toDisplayString(item.count) + toDisplayString(item.unit),
|
|
2844
2931
|
1
|
|
2845
2932
|
/* TEXT */
|
|
2846
2933
|
),
|
|
2847
2934
|
createElementVNode(
|
|
2848
2935
|
"div",
|
|
2849
|
-
|
|
2936
|
+
_hoisted_22$1,
|
|
2850
2937
|
toDisplayString(item.title),
|
|
2851
2938
|
1
|
|
2852
2939
|
/* TEXT */
|
|
@@ -2922,21 +3009,15 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2922
3009
|
title: "\u6536\u652F\u660E\u7EC6"
|
|
2923
3010
|
}, {
|
|
2924
3011
|
default: withCtx(() => [
|
|
2925
|
-
createElementVNode("div",
|
|
3012
|
+
createElementVNode("div", _hoisted_23$1, [
|
|
2926
3013
|
createElementVNode(
|
|
2927
3014
|
"div",
|
|
2928
3015
|
{
|
|
2929
3016
|
class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
|
|
2930
3017
|
},
|
|
2931
3018
|
[
|
|
2932
|
-
createElementVNode("div",
|
|
2933
|
-
|
|
2934
|
-
"div",
|
|
2935
|
-
{ class: "title" },
|
|
2936
|
-
"\u6536\u652F\u660E\u7EC6",
|
|
2937
|
-
-1
|
|
2938
|
-
/* HOISTED */
|
|
2939
|
-
)),
|
|
3019
|
+
createElementVNode("div", _hoisted_24$1, [
|
|
3020
|
+
_hoisted_25$1,
|
|
2940
3021
|
withDirectives(createElementVNode(
|
|
2941
3022
|
"div",
|
|
2942
3023
|
{
|
|
@@ -2946,22 +3027,12 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2946
3027
|
[
|
|
2947
3028
|
createElementVNode(
|
|
2948
3029
|
"div",
|
|
2949
|
-
|
|
3030
|
+
_hoisted_26,
|
|
2950
3031
|
toDisplayString(dateRangeDisplay.value),
|
|
2951
3032
|
1
|
|
2952
3033
|
/* TEXT */
|
|
2953
3034
|
),
|
|
2954
|
-
|
|
2955
|
-
"img",
|
|
2956
|
-
{
|
|
2957
|
-
style: { "margin-top": "-2px" },
|
|
2958
|
-
class: "time-icon",
|
|
2959
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
2960
|
-
},
|
|
2961
|
-
null,
|
|
2962
|
-
-1
|
|
2963
|
-
/* HOISTED */
|
|
2964
|
-
))
|
|
3035
|
+
_hoisted_27
|
|
2965
3036
|
],
|
|
2966
3037
|
512
|
|
2967
3038
|
/* NEED_PATCH */
|
|
@@ -2972,30 +3043,12 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2972
3043
|
createElementVNode("div", {
|
|
2973
3044
|
class: "search",
|
|
2974
3045
|
onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
|
|
2975
|
-
},
|
|
2976
|
-
createElementVNode(
|
|
2977
|
-
"span",
|
|
2978
|
-
{ class: "text" },
|
|
2979
|
-
"\u7B5B\u9009",
|
|
2980
|
-
-1
|
|
2981
|
-
/* HOISTED */
|
|
2982
|
-
),
|
|
2983
|
-
createElementVNode(
|
|
2984
|
-
"img",
|
|
2985
|
-
{
|
|
2986
|
-
class: "time-icon",
|
|
2987
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
2988
|
-
},
|
|
2989
|
-
null,
|
|
2990
|
-
-1
|
|
2991
|
-
/* HOISTED */
|
|
2992
|
-
)
|
|
2993
|
-
]))
|
|
3046
|
+
}, [..._hoisted_30])
|
|
2994
3047
|
],
|
|
2995
3048
|
2
|
|
2996
3049
|
/* CLASS */
|
|
2997
3050
|
),
|
|
2998
|
-
createElementVNode("div",
|
|
3051
|
+
createElementVNode("div", _hoisted_31, [
|
|
2999
3052
|
createVNode(_component_scroll_view, {
|
|
3000
3053
|
class: "operation-scroll",
|
|
3001
3054
|
"scroll-y": true,
|
|
@@ -3004,7 +3057,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3004
3057
|
onScrolltolower: onReachBottom
|
|
3005
3058
|
}, {
|
|
3006
3059
|
default: withCtx(() => [
|
|
3007
|
-
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div",
|
|
3060
|
+
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_32, [
|
|
3008
3061
|
(openBlock(true), createElementBlock(
|
|
3009
3062
|
Fragment,
|
|
3010
3063
|
null,
|
|
@@ -3015,7 +3068,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3015
3068
|
}, [
|
|
3016
3069
|
createElementVNode(
|
|
3017
3070
|
"div",
|
|
3018
|
-
|
|
3071
|
+
_hoisted_33,
|
|
3019
3072
|
toDisplayString(item.date),
|
|
3020
3073
|
1
|
|
3021
3074
|
/* TEXT */
|
|
@@ -3030,24 +3083,24 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3030
3083
|
}, [
|
|
3031
3084
|
createElementVNode(
|
|
3032
3085
|
"div",
|
|
3033
|
-
|
|
3086
|
+
_hoisted_34,
|
|
3034
3087
|
toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
|
|
3035
3088
|
1
|
|
3036
3089
|
/* TEXT */
|
|
3037
3090
|
),
|
|
3038
|
-
createElementVNode("div",
|
|
3039
|
-
createElementVNode("div",
|
|
3091
|
+
createElementVNode("div", _hoisted_35, [
|
|
3092
|
+
createElementVNode("div", _hoisted_36, [
|
|
3040
3093
|
createElementVNode("div", null, [
|
|
3041
3094
|
createElementVNode(
|
|
3042
3095
|
"div",
|
|
3043
|
-
|
|
3096
|
+
_hoisted_37,
|
|
3044
3097
|
toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
|
|
3045
3098
|
1
|
|
3046
3099
|
/* TEXT */
|
|
3047
3100
|
),
|
|
3048
3101
|
createElementVNode(
|
|
3049
3102
|
"div",
|
|
3050
|
-
|
|
3103
|
+
_hoisted_38,
|
|
3051
3104
|
toDisplayString(it.title),
|
|
3052
3105
|
1
|
|
3053
3106
|
/* TEXT */
|
|
@@ -3055,7 +3108,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3055
3108
|
]),
|
|
3056
3109
|
createElementVNode(
|
|
3057
3110
|
"div",
|
|
3058
|
-
|
|
3111
|
+
_hoisted_39,
|
|
3059
3112
|
toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
|
|
3060
3113
|
1
|
|
3061
3114
|
/* TEXT */
|
|
@@ -3063,7 +3116,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3063
3116
|
]),
|
|
3064
3117
|
createElementVNode(
|
|
3065
3118
|
"div",
|
|
3066
|
-
|
|
3119
|
+
_hoisted_40,
|
|
3067
3120
|
toDisplayString(it.description),
|
|
3068
3121
|
1
|
|
3069
3122
|
/* TEXT */
|
|
@@ -3079,7 +3132,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3079
3132
|
128
|
|
3080
3133
|
/* KEYED_FRAGMENT */
|
|
3081
3134
|
)),
|
|
3082
|
-
reachedLastPage.value ? (openBlock(), createElementBlock("div",
|
|
3135
|
+
reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_41, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
3083
3136
|
])) : (openBlock(), createBlock(script$r, { key: 1 }))
|
|
3084
3137
|
]),
|
|
3085
3138
|
_: 1
|
|
@@ -3101,10 +3154,20 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3101
3154
|
|
|
3102
3155
|
script$p.__file = "src/balance/components/AccountView.vue";
|
|
3103
3156
|
|
|
3104
|
-
const _hoisted_1$
|
|
3105
|
-
const _hoisted_2$
|
|
3106
|
-
|
|
3107
|
-
|
|
3157
|
+
const _hoisted_1$n = { class: "balance-reminder" };
|
|
3158
|
+
const _hoisted_2$j = /* @__PURE__ */ createElementVNode(
|
|
3159
|
+
"div",
|
|
3160
|
+
{ class: "body" },
|
|
3161
|
+
[
|
|
3162
|
+
/* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3163
|
+
/* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3164
|
+
],
|
|
3165
|
+
-1
|
|
3166
|
+
/* HOISTED */
|
|
3167
|
+
);
|
|
3168
|
+
const _hoisted_3$f = { class: "footer" };
|
|
3169
|
+
const _hoisted_4$b = { class: "col" };
|
|
3170
|
+
const _hoisted_5$a = { class: "col" };
|
|
3108
3171
|
var script$o = /* @__PURE__ */ defineComponent({
|
|
3109
3172
|
__name: "BalanceReminder",
|
|
3110
3173
|
props: {
|
|
@@ -3125,32 +3188,23 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3125
3188
|
"close-on-click-overlay": false
|
|
3126
3189
|
}, {
|
|
3127
3190
|
default: withCtx(() => [
|
|
3128
|
-
createElementVNode("div", _hoisted_1$
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
[
|
|
3133
|
-
createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3134
|
-
createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3135
|
-
],
|
|
3136
|
-
-1
|
|
3137
|
-
/* HOISTED */
|
|
3138
|
-
)),
|
|
3139
|
-
createElementVNode("div", _hoisted_2$e, [
|
|
3140
|
-
createElementVNode("div", _hoisted_3$9, [
|
|
3191
|
+
createElementVNode("div", _hoisted_1$n, [
|
|
3192
|
+
_hoisted_2$j,
|
|
3193
|
+
createElementVNode("div", _hoisted_3$f, [
|
|
3194
|
+
createElementVNode("div", _hoisted_4$b, [
|
|
3141
3195
|
createVNode(_component_nut_button, {
|
|
3142
3196
|
class: "cancel-button",
|
|
3143
3197
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
|
|
3144
3198
|
block: ""
|
|
3145
3199
|
}, {
|
|
3146
|
-
default: withCtx(() =>
|
|
3200
|
+
default: withCtx(() => [
|
|
3147
3201
|
createTextVNode("\u53D6\u6D88")
|
|
3148
|
-
])
|
|
3202
|
+
]),
|
|
3149
3203
|
_: 1
|
|
3150
3204
|
/* STABLE */
|
|
3151
3205
|
})
|
|
3152
3206
|
]),
|
|
3153
|
-
createElementVNode("div",
|
|
3207
|
+
createElementVNode("div", _hoisted_5$a, [
|
|
3154
3208
|
createVNode(_component_nut_button, {
|
|
3155
3209
|
block: "",
|
|
3156
3210
|
class: "recharge-button",
|
|
@@ -3179,7 +3233,18 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3179
3233
|
|
|
3180
3234
|
script$o.__file = "src/balance/components/BalanceReminder.vue";
|
|
3181
3235
|
|
|
3182
|
-
const _hoisted_1$
|
|
3236
|
+
const _hoisted_1$m = { class: "text" };
|
|
3237
|
+
const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
|
|
3238
|
+
"img",
|
|
3239
|
+
{
|
|
3240
|
+
style: { "margin-top": "-2px" },
|
|
3241
|
+
class: "time-icon",
|
|
3242
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3243
|
+
},
|
|
3244
|
+
null,
|
|
3245
|
+
-1
|
|
3246
|
+
/* HOISTED */
|
|
3247
|
+
);
|
|
3183
3248
|
var script$n = /* @__PURE__ */ defineComponent({
|
|
3184
3249
|
__name: "DateRange",
|
|
3185
3250
|
props: {
|
|
@@ -3198,14 +3263,18 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3198
3263
|
const $n = useNutshell();
|
|
3199
3264
|
const model = useModel(__props, "modelValue");
|
|
3200
3265
|
const openDateRangePicker = () => {
|
|
3266
|
+
const child = ref();
|
|
3201
3267
|
$n.sheet({
|
|
3202
3268
|
component: script$t,
|
|
3269
|
+
ref: child,
|
|
3203
3270
|
props: {
|
|
3204
3271
|
from: model.value.from,
|
|
3205
3272
|
to: model.value.to
|
|
3206
3273
|
},
|
|
3274
|
+
modal: true,
|
|
3275
|
+
// 不允许点击 overlay 关闭弹窗
|
|
3276
|
+
mask: true,
|
|
3207
3277
|
onComplete(result) {
|
|
3208
|
-
console.log("===openDateFilter complete", result);
|
|
3209
3278
|
model.value = {
|
|
3210
3279
|
from: result.from,
|
|
3211
3280
|
to: result.to
|
|
@@ -3225,22 +3294,12 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3225
3294
|
}, [
|
|
3226
3295
|
createElementVNode(
|
|
3227
3296
|
"div",
|
|
3228
|
-
_hoisted_1$
|
|
3297
|
+
_hoisted_1$m,
|
|
3229
3298
|
toDisplayString(dateRangeDisplay.value),
|
|
3230
3299
|
1
|
|
3231
3300
|
/* TEXT */
|
|
3232
3301
|
),
|
|
3233
|
-
|
|
3234
|
-
"img",
|
|
3235
|
-
{
|
|
3236
|
-
style: { "margin-top": "-2px" },
|
|
3237
|
-
class: "time-icon",
|
|
3238
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3239
|
-
},
|
|
3240
|
-
null,
|
|
3241
|
-
-1
|
|
3242
|
-
/* HOISTED */
|
|
3243
|
-
))
|
|
3302
|
+
_hoisted_2$i
|
|
3244
3303
|
]);
|
|
3245
3304
|
};
|
|
3246
3305
|
}
|
|
@@ -3248,11 +3307,27 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3248
3307
|
|
|
3249
3308
|
script$n.__file = "src/balance/components/DateRange.vue";
|
|
3250
3309
|
|
|
3251
|
-
const _hoisted_1$
|
|
3252
|
-
const _hoisted_2$
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3310
|
+
const _hoisted_1$l = { class: "list-filter-picker" };
|
|
3311
|
+
const _hoisted_2$h = /* @__PURE__ */ createElementVNode(
|
|
3312
|
+
"div",
|
|
3313
|
+
{ class: "list-filter-picker-title" },
|
|
3314
|
+
[
|
|
3315
|
+
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3316
|
+
],
|
|
3317
|
+
-1
|
|
3318
|
+
/* HOISTED */
|
|
3319
|
+
);
|
|
3320
|
+
const _hoisted_3$e = { class: "consumption-filter-content" };
|
|
3321
|
+
const _hoisted_4$a = { class: "title" };
|
|
3322
|
+
const _hoisted_5$9 = { class: "info" };
|
|
3323
|
+
const _hoisted_6$6 = ["onClick"];
|
|
3324
|
+
const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
|
|
3325
|
+
"div",
|
|
3326
|
+
{ class: "consumption-filter-bottom" },
|
|
3327
|
+
null,
|
|
3328
|
+
-1
|
|
3329
|
+
/* HOISTED */
|
|
3330
|
+
);
|
|
3256
3331
|
var script$m = /* @__PURE__ */ defineComponent({
|
|
3257
3332
|
__name: "ListFilterPicker",
|
|
3258
3333
|
props: {
|
|
@@ -3299,17 +3374,9 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3299
3374
|
emit("complete", result);
|
|
3300
3375
|
};
|
|
3301
3376
|
return (_ctx, _cache) => {
|
|
3302
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3303
|
-
|
|
3304
|
-
|
|
3305
|
-
{ class: "list-filter-picker-title" },
|
|
3306
|
-
[
|
|
3307
|
-
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3308
|
-
],
|
|
3309
|
-
-1
|
|
3310
|
-
/* HOISTED */
|
|
3311
|
-
)),
|
|
3312
|
-
createElementVNode("div", _hoisted_2$d, [
|
|
3377
|
+
return openBlock(), createElementBlock("div", _hoisted_1$l, [
|
|
3378
|
+
_hoisted_2$h,
|
|
3379
|
+
createElementVNode("div", _hoisted_3$e, [
|
|
3313
3380
|
(openBlock(true), createElementBlock(
|
|
3314
3381
|
Fragment,
|
|
3315
3382
|
null,
|
|
@@ -3320,12 +3387,12 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3320
3387
|
[
|
|
3321
3388
|
createElementVNode(
|
|
3322
3389
|
"div",
|
|
3323
|
-
|
|
3390
|
+
_hoisted_4$a,
|
|
3324
3391
|
toDisplayString(item.label),
|
|
3325
3392
|
1
|
|
3326
3393
|
/* TEXT */
|
|
3327
3394
|
),
|
|
3328
|
-
createElementVNode("div",
|
|
3395
|
+
createElementVNode("div", _hoisted_5$9, [
|
|
3329
3396
|
(openBlock(true), createElementBlock(
|
|
3330
3397
|
Fragment,
|
|
3331
3398
|
null,
|
|
@@ -3334,7 +3401,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3334
3401
|
onClick: () => onFilterSectionClick(item.name, it.value),
|
|
3335
3402
|
class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
|
|
3336
3403
|
key: i
|
|
3337
|
-
}, toDisplayString(typeof it === "string" ? it : it.label), 11,
|
|
3404
|
+
}, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_6$6);
|
|
3338
3405
|
}),
|
|
3339
3406
|
128
|
|
3340
3407
|
/* KEYED_FRAGMENT */
|
|
@@ -3359,13 +3426,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3359
3426
|
onClick: onOkClick
|
|
3360
3427
|
}, "\u786E\u5B9A")
|
|
3361
3428
|
]),
|
|
3362
|
-
|
|
3363
|
-
"div",
|
|
3364
|
-
{ class: "consumption-filter-bottom" },
|
|
3365
|
-
null,
|
|
3366
|
-
-1
|
|
3367
|
-
/* HOISTED */
|
|
3368
|
-
))
|
|
3429
|
+
_hoisted_7$4
|
|
3369
3430
|
]);
|
|
3370
3431
|
};
|
|
3371
3432
|
}
|
|
@@ -3373,6 +3434,27 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3373
3434
|
|
|
3374
3435
|
script$m.__file = "src/balance/components/ListFilterPicker.vue";
|
|
3375
3436
|
|
|
3437
|
+
const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
|
|
3438
|
+
"span",
|
|
3439
|
+
{ class: "text" },
|
|
3440
|
+
"\u7B5B\u9009",
|
|
3441
|
+
-1
|
|
3442
|
+
/* HOISTED */
|
|
3443
|
+
);
|
|
3444
|
+
const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
|
|
3445
|
+
"img",
|
|
3446
|
+
{
|
|
3447
|
+
class: "icon",
|
|
3448
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3449
|
+
},
|
|
3450
|
+
null,
|
|
3451
|
+
-1
|
|
3452
|
+
/* HOISTED */
|
|
3453
|
+
);
|
|
3454
|
+
const _hoisted_3$d = [
|
|
3455
|
+
_hoisted_1$k,
|
|
3456
|
+
_hoisted_2$g
|
|
3457
|
+
];
|
|
3376
3458
|
var script$l = /* @__PURE__ */ defineComponent({
|
|
3377
3459
|
__name: "ListFilter",
|
|
3378
3460
|
props: {
|
|
@@ -3407,31 +3489,23 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
3407
3489
|
return openBlock(), createElementBlock("div", {
|
|
3408
3490
|
class: "list-filter",
|
|
3409
3491
|
onClick: openPicker
|
|
3410
|
-
},
|
|
3411
|
-
createElementVNode(
|
|
3412
|
-
"span",
|
|
3413
|
-
{ class: "text" },
|
|
3414
|
-
"\u7B5B\u9009",
|
|
3415
|
-
-1
|
|
3416
|
-
/* HOISTED */
|
|
3417
|
-
),
|
|
3418
|
-
createElementVNode(
|
|
3419
|
-
"img",
|
|
3420
|
-
{
|
|
3421
|
-
class: "icon",
|
|
3422
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3423
|
-
},
|
|
3424
|
-
null,
|
|
3425
|
-
-1
|
|
3426
|
-
/* HOISTED */
|
|
3427
|
-
)
|
|
3428
|
-
]));
|
|
3492
|
+
}, [..._hoisted_3$d]);
|
|
3429
3493
|
};
|
|
3430
3494
|
}
|
|
3431
3495
|
});
|
|
3432
3496
|
|
|
3433
3497
|
script$l.__file = "src/balance/components/ListFilter.vue";
|
|
3434
3498
|
|
|
3499
|
+
const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
|
|
3500
|
+
"img",
|
|
3501
|
+
{
|
|
3502
|
+
class: "ocr-id__img",
|
|
3503
|
+
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3504
|
+
},
|
|
3505
|
+
null,
|
|
3506
|
+
-1
|
|
3507
|
+
/* HOISTED */
|
|
3508
|
+
);
|
|
3435
3509
|
var script$k = /* @__PURE__ */ defineComponent({
|
|
3436
3510
|
__name: "index",
|
|
3437
3511
|
emits: ["ocr"],
|
|
@@ -3521,16 +3595,7 @@ var script$k = /* @__PURE__ */ defineComponent({
|
|
|
3521
3595
|
onClick: ocrIDCard
|
|
3522
3596
|
}, [
|
|
3523
3597
|
renderSlot(_ctx.$slots, "icon", {}, () => [
|
|
3524
|
-
|
|
3525
|
-
"img",
|
|
3526
|
-
{
|
|
3527
|
-
class: "ocr-id__img",
|
|
3528
|
-
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3529
|
-
},
|
|
3530
|
-
null,
|
|
3531
|
-
-1
|
|
3532
|
-
/* HOISTED */
|
|
3533
|
-
))
|
|
3598
|
+
_hoisted_1$j
|
|
3534
3599
|
])
|
|
3535
3600
|
]);
|
|
3536
3601
|
};
|
|
@@ -3569,7 +3634,7 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
3569
3634
|
|
|
3570
3635
|
script$j.__file = "src/components/dd-icon/index.vue";
|
|
3571
3636
|
|
|
3572
|
-
const _hoisted_1$
|
|
3637
|
+
const _hoisted_1$i = { class: "dd-area" };
|
|
3573
3638
|
var script$i = /* @__PURE__ */ defineComponent({
|
|
3574
3639
|
__name: "index",
|
|
3575
3640
|
props: {
|
|
@@ -3729,7 +3794,7 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3729
3794
|
disabled: props.disabled
|
|
3730
3795
|
}, {
|
|
3731
3796
|
default: withCtx(() => [
|
|
3732
|
-
createElementVNode("div", _hoisted_1$
|
|
3797
|
+
createElementVNode("div", _hoisted_1$i, [
|
|
3733
3798
|
createElementVNode(
|
|
3734
3799
|
"div",
|
|
3735
3800
|
{
|
|
@@ -3759,8 +3824,8 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3759
3824
|
|
|
3760
3825
|
script$i.__file = "src/components/dd-area/index.vue";
|
|
3761
3826
|
|
|
3762
|
-
const _hoisted_1$
|
|
3763
|
-
const _hoisted_2$
|
|
3827
|
+
const _hoisted_1$h = { class: "dd-selector" };
|
|
3828
|
+
const _hoisted_2$f = { class: "dd-selector-value" };
|
|
3764
3829
|
var script$h = /* @__PURE__ */ defineComponent({
|
|
3765
3830
|
__name: "index",
|
|
3766
3831
|
props: {
|
|
@@ -3821,8 +3886,8 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3821
3886
|
}, {
|
|
3822
3887
|
default: withCtx(() => [
|
|
3823
3888
|
renderSlot(_ctx.$slots, "content", {}, () => [
|
|
3824
|
-
createElementVNode("div", _hoisted_1$
|
|
3825
|
-
createElementVNode("div", _hoisted_2$
|
|
3889
|
+
createElementVNode("div", _hoisted_1$h, [
|
|
3890
|
+
createElementVNode("div", _hoisted_2$f, [
|
|
3826
3891
|
createElementVNode(
|
|
3827
3892
|
"div",
|
|
3828
3893
|
{
|
|
@@ -3859,11 +3924,11 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3859
3924
|
|
|
3860
3925
|
script$h.__file = "src/components/dd-selector/index.vue";
|
|
3861
3926
|
|
|
3862
|
-
const _hoisted_1$
|
|
3863
|
-
const _hoisted_2$
|
|
3864
|
-
const _hoisted_3$
|
|
3865
|
-
const _hoisted_4$
|
|
3866
|
-
const _hoisted_5$
|
|
3927
|
+
const _hoisted_1$g = { class: "self-registration" };
|
|
3928
|
+
const _hoisted_2$e = { class: "self-registration-body" };
|
|
3929
|
+
const _hoisted_3$c = ["src"];
|
|
3930
|
+
const _hoisted_4$9 = { class: "self-registration__input" };
|
|
3931
|
+
const _hoisted_5$8 = { class: "self-registration-bottom" };
|
|
3867
3932
|
var script$g = /* @__PURE__ */ defineComponent({
|
|
3868
3933
|
__name: "SelfRegistration",
|
|
3869
3934
|
props: {
|
|
@@ -3966,13 +4031,13 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
3966
4031
|
const _component_nut_form_item = FormItem;
|
|
3967
4032
|
const _component_nut_form = Form;
|
|
3968
4033
|
const _component_nut_button = Button;
|
|
3969
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3970
|
-
createElementVNode("div", _hoisted_2$
|
|
4034
|
+
return openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
4035
|
+
createElementVNode("div", _hoisted_2$e, [
|
|
3971
4036
|
createElementVNode("img", {
|
|
3972
4037
|
src: _ctx.banner,
|
|
3973
4038
|
class: "self-registration-banner",
|
|
3974
4039
|
alt: ""
|
|
3975
|
-
}, null, 8, _hoisted_3$
|
|
4040
|
+
}, null, 8, _hoisted_3$c),
|
|
3976
4041
|
createVNode(_component_nut_form, null, {
|
|
3977
4042
|
default: withCtx(() => [
|
|
3978
4043
|
createVNode(_component_nut_form_item, {
|
|
@@ -3988,16 +4053,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
3988
4053
|
}, {
|
|
3989
4054
|
default: withCtx(() => [
|
|
3990
4055
|
createVNode(_component_nut_radio, { label: "person" }, {
|
|
3991
|
-
default: withCtx(() =>
|
|
4056
|
+
default: withCtx(() => [
|
|
3992
4057
|
createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
|
|
3993
|
-
])
|
|
4058
|
+
]),
|
|
3994
4059
|
_: 1
|
|
3995
4060
|
/* STABLE */
|
|
3996
4061
|
}),
|
|
3997
4062
|
createVNode(_component_nut_radio, { label: "company" }, {
|
|
3998
|
-
default: withCtx(() =>
|
|
4063
|
+
default: withCtx(() => [
|
|
3999
4064
|
createTextVNode("\u516C\u53F8\u4F7F\u7528")
|
|
4000
|
-
])
|
|
4065
|
+
]),
|
|
4001
4066
|
_: 1
|
|
4002
4067
|
/* STABLE */
|
|
4003
4068
|
})
|
|
@@ -4014,7 +4079,7 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4014
4079
|
required: ""
|
|
4015
4080
|
}, {
|
|
4016
4081
|
default: withCtx(() => [
|
|
4017
|
-
createElementVNode("div", _hoisted_4$
|
|
4082
|
+
createElementVNode("div", _hoisted_4$9, [
|
|
4018
4083
|
withDirectives(createElementVNode(
|
|
4019
4084
|
"input",
|
|
4020
4085
|
{
|
|
@@ -4153,16 +4218,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4153
4218
|
/* STABLE */
|
|
4154
4219
|
})
|
|
4155
4220
|
]),
|
|
4156
|
-
createElementVNode("div", _hoisted_5$
|
|
4221
|
+
createElementVNode("div", _hoisted_5$8, [
|
|
4157
4222
|
createVNode(_component_nut_button, {
|
|
4158
4223
|
block: "",
|
|
4159
4224
|
type: "primary",
|
|
4160
4225
|
class: "experience-button",
|
|
4161
4226
|
onClick: submit
|
|
4162
4227
|
}, {
|
|
4163
|
-
default: withCtx(() =>
|
|
4228
|
+
default: withCtx(() => [
|
|
4164
4229
|
createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
|
|
4165
|
-
])
|
|
4230
|
+
]),
|
|
4166
4231
|
_: 1
|
|
4167
4232
|
/* STABLE */
|
|
4168
4233
|
})
|
|
@@ -4249,8 +4314,22 @@ function useHttp$1() {
|
|
|
4249
4314
|
return $http;
|
|
4250
4315
|
}
|
|
4251
4316
|
|
|
4252
|
-
const _hoisted_1$
|
|
4253
|
-
|
|
4317
|
+
const _hoisted_1$f = /* @__PURE__ */ createElementVNode(
|
|
4318
|
+
"div",
|
|
4319
|
+
{ class: "notice-popup-hd" },
|
|
4320
|
+
[
|
|
4321
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
4322
|
+
class: "notice-popup-hd-icon",
|
|
4323
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4324
|
+
alt: ""
|
|
4325
|
+
}),
|
|
4326
|
+
/* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4327
|
+
],
|
|
4328
|
+
-1
|
|
4329
|
+
/* HOISTED */
|
|
4330
|
+
);
|
|
4331
|
+
const _hoisted_2$d = { class: "notice-popup-bd" };
|
|
4332
|
+
const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
|
|
4254
4333
|
var script$f = /* @__PURE__ */ defineComponent({
|
|
4255
4334
|
__name: "NoticePopup",
|
|
4256
4335
|
props: {
|
|
@@ -4291,24 +4370,11 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
4291
4370
|
round: ""
|
|
4292
4371
|
}, {
|
|
4293
4372
|
default: withCtx(() => [
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
{ class: "notice-popup-hd" },
|
|
4297
|
-
[
|
|
4298
|
-
createElementVNode("img", {
|
|
4299
|
-
class: "notice-popup-hd-icon",
|
|
4300
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4301
|
-
alt: ""
|
|
4302
|
-
}),
|
|
4303
|
-
createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4304
|
-
],
|
|
4305
|
-
-1
|
|
4306
|
-
/* HOISTED */
|
|
4307
|
-
)),
|
|
4308
|
-
createElementVNode("div", _hoisted_1$e, [
|
|
4373
|
+
_hoisted_1$f,
|
|
4374
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
4309
4375
|
createElementVNode(
|
|
4310
4376
|
"div",
|
|
4311
|
-
|
|
4377
|
+
_hoisted_3$b,
|
|
4312
4378
|
toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
|
|
4313
4379
|
1
|
|
4314
4380
|
/* TEXT */
|
|
@@ -4361,8 +4427,19 @@ function useNotice() {
|
|
|
4361
4427
|
};
|
|
4362
4428
|
}
|
|
4363
4429
|
|
|
4364
|
-
const _hoisted_1$
|
|
4365
|
-
|
|
4430
|
+
const _hoisted_1$e = /* @__PURE__ */ createElementVNode(
|
|
4431
|
+
"img",
|
|
4432
|
+
{
|
|
4433
|
+
class: "notice-banner-icon",
|
|
4434
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4435
|
+
alt: ""
|
|
4436
|
+
},
|
|
4437
|
+
null,
|
|
4438
|
+
-1
|
|
4439
|
+
/* HOISTED */
|
|
4440
|
+
);
|
|
4441
|
+
const _hoisted_2$c = { class: "notice-banner-text" };
|
|
4442
|
+
const _hoisted_3$a = ["onClick"];
|
|
4366
4443
|
var script$e = /* @__PURE__ */ defineComponent({
|
|
4367
4444
|
__name: "NoticeBanner",
|
|
4368
4445
|
props: {
|
|
@@ -4494,20 +4571,10 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4494
4571
|
onClose: ($event) => unref(onClose)(item, key)
|
|
4495
4572
|
}, {
|
|
4496
4573
|
default: withCtx(() => [
|
|
4497
|
-
|
|
4498
|
-
"img",
|
|
4499
|
-
{
|
|
4500
|
-
class: "notice-banner-icon",
|
|
4501
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4502
|
-
alt: ""
|
|
4503
|
-
},
|
|
4504
|
-
null,
|
|
4505
|
-
-1
|
|
4506
|
-
/* HOISTED */
|
|
4507
|
-
)),
|
|
4574
|
+
_hoisted_1$e,
|
|
4508
4575
|
createElementVNode(
|
|
4509
4576
|
"div",
|
|
4510
|
-
|
|
4577
|
+
_hoisted_2$c,
|
|
4511
4578
|
toDisplayString(item.context),
|
|
4512
4579
|
1
|
|
4513
4580
|
/* TEXT */
|
|
@@ -4515,7 +4582,7 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4515
4582
|
createElementVNode("div", {
|
|
4516
4583
|
class: "notice-banner-btn",
|
|
4517
4584
|
onClick: ($event) => onDetail(item)
|
|
4518
|
-
}, "\u8BE6\u60C5", 8,
|
|
4585
|
+
}, "\u8BE6\u60C5", 8, _hoisted_3$a)
|
|
4519
4586
|
]),
|
|
4520
4587
|
_: 2
|
|
4521
4588
|
/* DYNAMIC */
|
|
@@ -4553,8 +4620,26 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4553
4620
|
|
|
4554
4621
|
script$e.__file = "src/notice/components/NoticeBanner.vue";
|
|
4555
4622
|
|
|
4556
|
-
const _hoisted_1$
|
|
4557
|
-
const _hoisted_2$
|
|
4623
|
+
const _hoisted_1$d = { class: "notice-entry" };
|
|
4624
|
+
const _hoisted_2$b = /* @__PURE__ */ createElementVNode(
|
|
4625
|
+
"img",
|
|
4626
|
+
{
|
|
4627
|
+
class: "notice-entry-img",
|
|
4628
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4629
|
+
alt: ""
|
|
4630
|
+
},
|
|
4631
|
+
null,
|
|
4632
|
+
-1
|
|
4633
|
+
/* HOISTED */
|
|
4634
|
+
);
|
|
4635
|
+
const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
|
|
4636
|
+
"span",
|
|
4637
|
+
null,
|
|
4638
|
+
"\u901A\u77E5",
|
|
4639
|
+
-1
|
|
4640
|
+
/* HOISTED */
|
|
4641
|
+
);
|
|
4642
|
+
const _hoisted_4$8 = {
|
|
4558
4643
|
key: 0,
|
|
4559
4644
|
class: "notice-entry-icon"
|
|
4560
4645
|
};
|
|
@@ -4594,26 +4679,10 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4594
4679
|
});
|
|
4595
4680
|
}
|
|
4596
4681
|
return (_ctx, _cache) => {
|
|
4597
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
class: "notice-entry-img",
|
|
4602
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4603
|
-
alt: ""
|
|
4604
|
-
},
|
|
4605
|
-
null,
|
|
4606
|
-
-1
|
|
4607
|
-
/* HOISTED */
|
|
4608
|
-
)),
|
|
4609
|
-
_cache[1] || (_cache[1] = createElementVNode(
|
|
4610
|
-
"span",
|
|
4611
|
-
null,
|
|
4612
|
-
"\u901A\u77E5",
|
|
4613
|
-
-1
|
|
4614
|
-
/* HOISTED */
|
|
4615
|
-
)),
|
|
4616
|
-
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
|
|
4682
|
+
return openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
4683
|
+
_hoisted_2$b,
|
|
4684
|
+
_hoisted_3$9,
|
|
4685
|
+
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_4$8)) : createCommentVNode("v-if", true)
|
|
4617
4686
|
]);
|
|
4618
4687
|
};
|
|
4619
4688
|
}
|
|
@@ -4621,9 +4690,34 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4621
4690
|
|
|
4622
4691
|
script$d.__file = "src/notice/components/NoticeEntry.vue";
|
|
4623
4692
|
|
|
4624
|
-
const _hoisted_1$
|
|
4625
|
-
const _hoisted_2$
|
|
4626
|
-
|
|
4693
|
+
const _hoisted_1$c = { class: "dd-search__form" };
|
|
4694
|
+
const _hoisted_2$a = /* @__PURE__ */ createElementVNode(
|
|
4695
|
+
"div",
|
|
4696
|
+
{ class: "dd-search__prefix" },
|
|
4697
|
+
[
|
|
4698
|
+
/* @__PURE__ */ createElementVNode("image", {
|
|
4699
|
+
class: "full-img",
|
|
4700
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4701
|
+
})
|
|
4702
|
+
],
|
|
4703
|
+
-1
|
|
4704
|
+
/* HOISTED */
|
|
4705
|
+
);
|
|
4706
|
+
const _hoisted_3$8 = { class: "dd-search__control" };
|
|
4707
|
+
const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
|
|
4708
|
+
const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
|
|
4709
|
+
"image",
|
|
4710
|
+
{
|
|
4711
|
+
class: "full-img",
|
|
4712
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4713
|
+
},
|
|
4714
|
+
null,
|
|
4715
|
+
-1
|
|
4716
|
+
/* HOISTED */
|
|
4717
|
+
);
|
|
4718
|
+
const _hoisted_6$5 = [
|
|
4719
|
+
_hoisted_5$7
|
|
4720
|
+
];
|
|
4627
4721
|
var script$c = /* @__PURE__ */ defineComponent({
|
|
4628
4722
|
__name: "index",
|
|
4629
4723
|
props: {
|
|
@@ -4677,20 +4771,9 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4677
4771
|
}])
|
|
4678
4772
|
},
|
|
4679
4773
|
[
|
|
4680
|
-
createElementVNode("div", _hoisted_1$
|
|
4681
|
-
|
|
4682
|
-
|
|
4683
|
-
{ class: "dd-search__prefix" },
|
|
4684
|
-
[
|
|
4685
|
-
createElementVNode("image", {
|
|
4686
|
-
class: "full-img",
|
|
4687
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4688
|
-
})
|
|
4689
|
-
],
|
|
4690
|
-
-1
|
|
4691
|
-
/* HOISTED */
|
|
4692
|
-
)),
|
|
4693
|
-
createElementVNode("div", _hoisted_2$7, [
|
|
4774
|
+
createElementVNode("div", _hoisted_1$c, [
|
|
4775
|
+
_hoisted_2$a,
|
|
4776
|
+
createElementVNode("div", _hoisted_3$8, [
|
|
4694
4777
|
withDirectives(createElementVNode("input", {
|
|
4695
4778
|
class: "dd-search__input",
|
|
4696
4779
|
type: "text",
|
|
@@ -4704,7 +4787,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4704
4787
|
onConfirm,
|
|
4705
4788
|
onFocus: onFoucs,
|
|
4706
4789
|
onBlur
|
|
4707
|
-
}, null, 40,
|
|
4790
|
+
}, null, 40, _hoisted_4$7), [
|
|
4708
4791
|
[vModelText, key.value]
|
|
4709
4792
|
])
|
|
4710
4793
|
]),
|
|
@@ -4714,18 +4797,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4714
4797
|
class: "dd-search__suffix",
|
|
4715
4798
|
onTap: onClear
|
|
4716
4799
|
},
|
|
4717
|
-
|
|
4718
|
-
createElementVNode(
|
|
4719
|
-
"image",
|
|
4720
|
-
{
|
|
4721
|
-
class: "full-img",
|
|
4722
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4723
|
-
},
|
|
4724
|
-
null,
|
|
4725
|
-
-1
|
|
4726
|
-
/* HOISTED */
|
|
4727
|
-
)
|
|
4728
|
-
]),
|
|
4800
|
+
[..._hoisted_6$5],
|
|
4729
4801
|
544
|
|
4730
4802
|
/* NEED_HYDRATION, NEED_PATCH */
|
|
4731
4803
|
), [
|
|
@@ -4806,28 +4878,59 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
|
|
|
4806
4878
|
};
|
|
4807
4879
|
}
|
|
4808
4880
|
|
|
4809
|
-
const _hoisted_1$
|
|
4810
|
-
const _hoisted_2$
|
|
4811
|
-
const _hoisted_3$
|
|
4881
|
+
const _hoisted_1$b = { class: "notice-list" };
|
|
4882
|
+
const _hoisted_2$9 = { style: { "flex": "1", "overflow": "hidden" } };
|
|
4883
|
+
const _hoisted_3$7 = {
|
|
4812
4884
|
key: 0,
|
|
4813
4885
|
class: "wrapper"
|
|
4814
4886
|
};
|
|
4815
|
-
const _hoisted_4$
|
|
4816
|
-
const _hoisted_5$
|
|
4817
|
-
|
|
4887
|
+
const _hoisted_4$6 = ["onClick"];
|
|
4888
|
+
const _hoisted_5$6 = /* @__PURE__ */ createElementVNode(
|
|
4889
|
+
"div",
|
|
4890
|
+
{ class: "point" },
|
|
4891
|
+
null,
|
|
4892
|
+
-1
|
|
4893
|
+
/* HOISTED */
|
|
4894
|
+
);
|
|
4895
|
+
const _hoisted_6$4 = { class: "time" };
|
|
4896
|
+
const _hoisted_7$3 = {
|
|
4818
4897
|
key: 0,
|
|
4819
4898
|
class: "notice-list-label"
|
|
4820
4899
|
};
|
|
4821
|
-
const
|
|
4822
|
-
const
|
|
4900
|
+
const _hoisted_8$2 = ["onClick"];
|
|
4901
|
+
const _hoisted_9$2 = {
|
|
4823
4902
|
key: 0,
|
|
4824
4903
|
class: "cue-text",
|
|
4825
4904
|
style: { "padding-bottom": "40px" }
|
|
4826
4905
|
};
|
|
4827
|
-
const
|
|
4906
|
+
const _hoisted_10$2 = {
|
|
4828
4907
|
key: 1,
|
|
4829
4908
|
class: "no-data"
|
|
4830
4909
|
};
|
|
4910
|
+
const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
|
|
4911
|
+
"div",
|
|
4912
|
+
{ class: "no-data-img" },
|
|
4913
|
+
[
|
|
4914
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
4915
|
+
style: { "width": "100%", "height": "100%" },
|
|
4916
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
4917
|
+
alt: ""
|
|
4918
|
+
})
|
|
4919
|
+
],
|
|
4920
|
+
-1
|
|
4921
|
+
/* HOISTED */
|
|
4922
|
+
);
|
|
4923
|
+
const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
|
|
4924
|
+
"div",
|
|
4925
|
+
{ class: "text" },
|
|
4926
|
+
"\u6682\u65E0\u8BB0\u5F55",
|
|
4927
|
+
-1
|
|
4928
|
+
/* HOISTED */
|
|
4929
|
+
);
|
|
4930
|
+
const _hoisted_13$2 = [
|
|
4931
|
+
_hoisted_11$2,
|
|
4932
|
+
_hoisted_12$2
|
|
4933
|
+
];
|
|
4831
4934
|
var script$b = /* @__PURE__ */ defineComponent({
|
|
4832
4935
|
__name: "NoticeList",
|
|
4833
4936
|
props: {
|
|
@@ -4902,7 +5005,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4902
5005
|
return (_ctx, _cache) => {
|
|
4903
5006
|
const _component_rich_text = resolveComponent("rich-text");
|
|
4904
5007
|
const _component_scroll_view = resolveComponent("scroll-view");
|
|
4905
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5008
|
+
return openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
4906
5009
|
createVNode(script$c, {
|
|
4907
5010
|
bordered: false,
|
|
4908
5011
|
focus: false,
|
|
@@ -4910,8 +5013,8 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4910
5013
|
placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
|
|
4911
5014
|
onSearch
|
|
4912
5015
|
}, null, 8, ["value"]),
|
|
4913
|
-
createElementVNode("div", _hoisted_2$
|
|
4914
|
-
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
5016
|
+
createElementVNode("div", _hoisted_2$9, [
|
|
5017
|
+
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
|
|
4915
5018
|
createVNode(_component_scroll_view, {
|
|
4916
5019
|
class: "content",
|
|
4917
5020
|
"scroll-y": true,
|
|
@@ -4932,17 +5035,11 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4932
5035
|
key: index,
|
|
4933
5036
|
onClick: ($event) => notifyRead(item, index)
|
|
4934
5037
|
}, [
|
|
4935
|
-
|
|
4936
|
-
"div",
|
|
4937
|
-
{ class: "point" },
|
|
4938
|
-
null,
|
|
4939
|
-
-1
|
|
4940
|
-
/* HOISTED */
|
|
4941
|
-
)),
|
|
5038
|
+
_hoisted_5$6,
|
|
4942
5039
|
createElementVNode("div", null, [
|
|
4943
5040
|
createElementVNode(
|
|
4944
5041
|
"div",
|
|
4945
|
-
|
|
5042
|
+
_hoisted_6$4,
|
|
4946
5043
|
toDisplayString(formatMinutes(item.receiveTime)),
|
|
4947
5044
|
1
|
|
4948
5045
|
/* TEXT */
|
|
@@ -4962,7 +5059,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4962
5059
|
),
|
|
4963
5060
|
_ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
|
|
4964
5061
|
"div",
|
|
4965
|
-
|
|
5062
|
+
_hoisted_7$3,
|
|
4966
5063
|
toDisplayString(appMap[item.appCode]),
|
|
4967
5064
|
1
|
|
4968
5065
|
/* TEXT */
|
|
@@ -4985,44 +5082,23 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4985
5082
|
key: 0,
|
|
4986
5083
|
class: "notice-list-file",
|
|
4987
5084
|
onClick: ($event) => onNoticeView(item.link)
|
|
4988
|
-
}, " \u67E5\u770B\u9644\u4EF6 ", 8,
|
|
5085
|
+
}, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_8$2)) : createCommentVNode("v-if", true)
|
|
4989
5086
|
],
|
|
4990
5087
|
2
|
|
4991
5088
|
/* CLASS */
|
|
4992
5089
|
)
|
|
4993
5090
|
])
|
|
4994
|
-
], 10, _hoisted_4$
|
|
5091
|
+
], 10, _hoisted_4$6);
|
|
4995
5092
|
}),
|
|
4996
5093
|
128
|
|
4997
5094
|
/* KEYED_FRAGMENT */
|
|
4998
5095
|
)),
|
|
4999
|
-
unref(isLast) ? (openBlock(), createElementBlock("div",
|
|
5096
|
+
unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_9$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
5000
5097
|
]),
|
|
5001
5098
|
_: 1
|
|
5002
5099
|
/* STABLE */
|
|
5003
5100
|
}, 8, ["refresherTriggered", "onScrolltolower"])
|
|
5004
|
-
])) : (openBlock(), createElementBlock("div",
|
|
5005
|
-
createElementVNode(
|
|
5006
|
-
"div",
|
|
5007
|
-
{ class: "no-data-img" },
|
|
5008
|
-
[
|
|
5009
|
-
createElementVNode("img", {
|
|
5010
|
-
style: { "width": "100%", "height": "100%" },
|
|
5011
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
5012
|
-
alt: ""
|
|
5013
|
-
})
|
|
5014
|
-
],
|
|
5015
|
-
-1
|
|
5016
|
-
/* HOISTED */
|
|
5017
|
-
),
|
|
5018
|
-
createElementVNode(
|
|
5019
|
-
"div",
|
|
5020
|
-
{ class: "text" },
|
|
5021
|
-
"\u6682\u65E0\u8BB0\u5F55",
|
|
5022
|
-
-1
|
|
5023
|
-
/* HOISTED */
|
|
5024
|
-
)
|
|
5025
|
-
])))
|
|
5101
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_10$2, [..._hoisted_13$2]))
|
|
5026
5102
|
])
|
|
5027
5103
|
]);
|
|
5028
5104
|
};
|
|
@@ -5031,10 +5107,24 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5031
5107
|
|
|
5032
5108
|
script$b.__file = "src/notice/components/NoticeList.vue";
|
|
5033
5109
|
|
|
5034
|
-
const _hoisted_1$
|
|
5035
|
-
const _hoisted_2$
|
|
5036
|
-
const _hoisted_3$
|
|
5037
|
-
const _hoisted_4$
|
|
5110
|
+
const _hoisted_1$a = { class: "user-entry" };
|
|
5111
|
+
const _hoisted_2$8 = { class: "user-entry-head" };
|
|
5112
|
+
const _hoisted_3$6 = ["src"];
|
|
5113
|
+
const _hoisted_4$5 = { class: "user-entry-bd" };
|
|
5114
|
+
const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
|
|
5115
|
+
"span",
|
|
5116
|
+
{ class: "user-entry-bd-arrow" },
|
|
5117
|
+
">",
|
|
5118
|
+
-1
|
|
5119
|
+
/* HOISTED */
|
|
5120
|
+
);
|
|
5121
|
+
const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
|
|
5122
|
+
"span",
|
|
5123
|
+
{ class: "user-entry-bd-arrow" },
|
|
5124
|
+
">",
|
|
5125
|
+
-1
|
|
5126
|
+
/* HOISTED */
|
|
5127
|
+
);
|
|
5038
5128
|
var script$a = /* @__PURE__ */ defineComponent({
|
|
5039
5129
|
__name: "UserEntry",
|
|
5040
5130
|
props: {
|
|
@@ -5057,8 +5147,8 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5057
5147
|
}
|
|
5058
5148
|
const emits = __emit;
|
|
5059
5149
|
return (_ctx, _cache) => {
|
|
5060
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5061
|
-
createElementVNode("div", _hoisted_2$
|
|
5150
|
+
return openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
5151
|
+
createElementVNode("div", _hoisted_2$8, [
|
|
5062
5152
|
_ctx.avatar ? (openBlock(), createElementBlock("img", {
|
|
5063
5153
|
key: 0,
|
|
5064
5154
|
class: "user-entry-head-img",
|
|
@@ -5066,7 +5156,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5066
5156
|
mode: "aspectFit",
|
|
5067
5157
|
src: _ctx.avatar,
|
|
5068
5158
|
alt: ""
|
|
5069
|
-
}, null, 8, _hoisted_3$
|
|
5159
|
+
}, null, 8, _hoisted_3$6)) : (openBlock(), createElementBlock("img", {
|
|
5070
5160
|
key: 1,
|
|
5071
5161
|
class: "user-entry-head-img",
|
|
5072
5162
|
mode: "aspectFit",
|
|
@@ -5075,21 +5165,15 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5075
5165
|
alt: ""
|
|
5076
5166
|
}))
|
|
5077
5167
|
]),
|
|
5078
|
-
createElementVNode("div", _hoisted_4$
|
|
5168
|
+
createElementVNode("div", _hoisted_4$5, [
|
|
5079
5169
|
!_ctx.mobile ? (openBlock(), createElementBlock("div", {
|
|
5080
5170
|
key: 0,
|
|
5081
5171
|
class: "user-entry-bd-bigtxt",
|
|
5082
5172
|
onClick: toLogin
|
|
5083
|
-
},
|
|
5173
|
+
}, [
|
|
5084
5174
|
createTextVNode(" \u8BF7\u767B\u5F55 "),
|
|
5085
|
-
|
|
5086
|
-
|
|
5087
|
-
{ class: "user-entry-bd-arrow" },
|
|
5088
|
-
">",
|
|
5089
|
-
-1
|
|
5090
|
-
/* HOISTED */
|
|
5091
|
-
)
|
|
5092
|
-
]))) : (openBlock(), createElementBlock(
|
|
5175
|
+
_hoisted_5$5
|
|
5176
|
+
])) : (openBlock(), createElementBlock(
|
|
5093
5177
|
Fragment,
|
|
5094
5178
|
{ key: 1 },
|
|
5095
5179
|
[
|
|
@@ -5102,13 +5186,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5102
5186
|
1
|
|
5103
5187
|
/* TEXT */
|
|
5104
5188
|
),
|
|
5105
|
-
|
|
5106
|
-
"span",
|
|
5107
|
-
{ class: "user-entry-bd-arrow" },
|
|
5108
|
-
">",
|
|
5109
|
-
-1
|
|
5110
|
-
/* HOISTED */
|
|
5111
|
-
))
|
|
5189
|
+
_hoisted_6$3
|
|
5112
5190
|
]),
|
|
5113
5191
|
createElementVNode(
|
|
5114
5192
|
"div",
|
|
@@ -5132,7 +5210,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5132
5210
|
|
|
5133
5211
|
script$a.__file = "src/user/components/UserEntry.vue";
|
|
5134
5212
|
|
|
5135
|
-
const _hoisted_1$
|
|
5213
|
+
const _hoisted_1$9 = { class: "dd-skeleton" };
|
|
5136
5214
|
var script$9 = /* @__PURE__ */ defineComponent({
|
|
5137
5215
|
__name: "index",
|
|
5138
5216
|
props: {
|
|
@@ -5143,7 +5221,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
5143
5221
|
setup(__props) {
|
|
5144
5222
|
return (_ctx, _cache) => {
|
|
5145
5223
|
const _component_nut_skeleton = Skeleton;
|
|
5146
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5224
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
5147
5225
|
(openBlock(true), createElementBlock(
|
|
5148
5226
|
Fragment,
|
|
5149
5227
|
null,
|
|
@@ -5257,49 +5335,77 @@ function useHttp() {
|
|
|
5257
5335
|
return $http;
|
|
5258
5336
|
}
|
|
5259
5337
|
|
|
5260
|
-
const _hoisted_1$
|
|
5338
|
+
const _hoisted_1$8 = {
|
|
5261
5339
|
key: 1,
|
|
5262
5340
|
class: "user-info-wrap"
|
|
5263
5341
|
};
|
|
5264
|
-
const _hoisted_2$
|
|
5265
|
-
|
|
5266
|
-
|
|
5342
|
+
const _hoisted_2$7 = /* @__PURE__ */ createElementVNode(
|
|
5343
|
+
"div",
|
|
5344
|
+
{ class: "user-info-tit" },
|
|
5345
|
+
"\u8D26\u53F7\u4FE1\u606F",
|
|
5346
|
+
-1
|
|
5347
|
+
/* HOISTED */
|
|
5348
|
+
);
|
|
5349
|
+
const _hoisted_3$5 = { class: "user-info-head" };
|
|
5350
|
+
const _hoisted_4$4 = ["src"];
|
|
5351
|
+
const _hoisted_5$4 = {
|
|
5267
5352
|
key: 1,
|
|
5268
5353
|
class: "user-info-head-img",
|
|
5269
5354
|
mode: "aspectFit",
|
|
5270
5355
|
src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
|
|
5271
5356
|
alt: ""
|
|
5272
5357
|
};
|
|
5273
|
-
const
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5358
|
+
const _hoisted_6$2 = /* @__PURE__ */ createElementVNode(
|
|
5359
|
+
"div",
|
|
5360
|
+
{ class: "user-info-head-upload" },
|
|
5361
|
+
[
|
|
5362
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
5363
|
+
class: "user-info-head-upload-icon",
|
|
5364
|
+
mode: "aspectFit",
|
|
5365
|
+
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5366
|
+
alt: ""
|
|
5367
|
+
})
|
|
5368
|
+
],
|
|
5369
|
+
-1
|
|
5370
|
+
/* HOISTED */
|
|
5371
|
+
);
|
|
5372
|
+
const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
|
|
5373
|
+
"div",
|
|
5374
|
+
{ class: "user-info-tit" },
|
|
5375
|
+
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5376
|
+
-1
|
|
5377
|
+
/* HOISTED */
|
|
5378
|
+
);
|
|
5379
|
+
const _hoisted_8$1 = { class: "user-info-team" };
|
|
5380
|
+
const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
|
|
5381
|
+
const _hoisted_10$1 = ["src"];
|
|
5382
|
+
const _hoisted_11$1 = {
|
|
5277
5383
|
key: 1,
|
|
5278
5384
|
class: "user-info-team-item-avatar-img empty",
|
|
5279
5385
|
mode: "aspectFit",
|
|
5280
5386
|
src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
|
|
5281
5387
|
alt: ""
|
|
5282
5388
|
};
|
|
5283
|
-
const
|
|
5284
|
-
const
|
|
5285
|
-
const
|
|
5389
|
+
const _hoisted_12$1 = { class: "user-info-team-item-bd" };
|
|
5390
|
+
const _hoisted_13$1 = { class: "user-info-team-item-title" };
|
|
5391
|
+
const _hoisted_14$1 = {
|
|
5286
5392
|
key: 0,
|
|
5287
5393
|
class: "user-info-team-item-app"
|
|
5288
5394
|
};
|
|
5289
|
-
const
|
|
5290
|
-
const
|
|
5395
|
+
const _hoisted_15$1 = ["onClick"];
|
|
5396
|
+
const _hoisted_16$1 = {
|
|
5291
5397
|
key: 1,
|
|
5292
5398
|
class: "user-info-team-item-role"
|
|
5293
5399
|
};
|
|
5294
|
-
const
|
|
5295
|
-
const
|
|
5296
|
-
const
|
|
5297
|
-
const
|
|
5298
|
-
const
|
|
5299
|
-
const
|
|
5300
|
-
const
|
|
5301
|
-
const
|
|
5302
|
-
const
|
|
5400
|
+
const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
|
|
5401
|
+
const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
|
|
5402
|
+
const _hoisted_19 = { class: "user-info-team-item-user" };
|
|
5403
|
+
const _hoisted_20 = ["onClick"];
|
|
5404
|
+
const _hoisted_21 = { class: "user-info-team-item-dept" };
|
|
5405
|
+
const _hoisted_22 = { class: "user-info-ft" };
|
|
5406
|
+
const _hoisted_23 = { class: "upload-avatar-popup-box" };
|
|
5407
|
+
const _hoisted_24 = ["src"];
|
|
5408
|
+
const _hoisted_25 = {
|
|
5303
5409
|
key: 1,
|
|
5304
5410
|
class: "upload-avatar-popup-avatar",
|
|
5305
5411
|
mode: "aspectFit",
|
|
@@ -5477,15 +5583,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5477
5583
|
firstLoading.value ? (openBlock(), createBlock(script$9, {
|
|
5478
5584
|
key: 0,
|
|
5479
5585
|
row: 3
|
|
5480
|
-
})) : (openBlock(), createElementBlock("div", _hoisted_1$
|
|
5481
|
-
|
|
5482
|
-
|
|
5483
|
-
{ class: "user-info-tit" },
|
|
5484
|
-
"\u8D26\u53F7\u4FE1\u606F",
|
|
5485
|
-
-1
|
|
5486
|
-
/* HOISTED */
|
|
5487
|
-
)),
|
|
5488
|
-
createElementVNode("div", _hoisted_2$4, [
|
|
5586
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
5587
|
+
_hoisted_2$7,
|
|
5588
|
+
createElementVNode("div", _hoisted_3$5, [
|
|
5489
5589
|
createElementVNode("div", {
|
|
5490
5590
|
class: "user-info-head-avatar",
|
|
5491
5591
|
onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
|
|
@@ -5496,21 +5596,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5496
5596
|
mode: "aspectFit",
|
|
5497
5597
|
src: userInfo.value.avatar,
|
|
5498
5598
|
alt: ""
|
|
5499
|
-
}, null, 8,
|
|
5500
|
-
|
|
5501
|
-
"div",
|
|
5502
|
-
{ class: "user-info-head-upload" },
|
|
5503
|
-
[
|
|
5504
|
-
createElementVNode("img", {
|
|
5505
|
-
class: "user-info-head-upload-icon",
|
|
5506
|
-
mode: "aspectFit",
|
|
5507
|
-
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5508
|
-
alt: ""
|
|
5509
|
-
})
|
|
5510
|
-
],
|
|
5511
|
-
-1
|
|
5512
|
-
/* HOISTED */
|
|
5513
|
-
))
|
|
5599
|
+
}, null, 8, _hoisted_4$4)) : (openBlock(), createElementBlock("img", _hoisted_5$4)),
|
|
5600
|
+
_hoisted_6$2
|
|
5514
5601
|
]),
|
|
5515
5602
|
createVNode(_component_nut_cell, {
|
|
5516
5603
|
title: "\u767B\u5F55\u624B\u673A\u53F7",
|
|
@@ -5519,14 +5606,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5519
5606
|
onClick: toBinding
|
|
5520
5607
|
}, null, 8, ["desc"])
|
|
5521
5608
|
]),
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
{ class: "user-info-tit" },
|
|
5525
|
-
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5526
|
-
-1
|
|
5527
|
-
/* HOISTED */
|
|
5528
|
-
)),
|
|
5529
|
-
createElementVNode("div", _hoisted_5$2, [
|
|
5609
|
+
_hoisted_7$2,
|
|
5610
|
+
createElementVNode("div", _hoisted_8$1, [
|
|
5530
5611
|
(openBlock(true), createElementBlock(
|
|
5531
5612
|
Fragment,
|
|
5532
5613
|
null,
|
|
@@ -5535,24 +5616,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5535
5616
|
key,
|
|
5536
5617
|
class: "user-info-team-item"
|
|
5537
5618
|
}, [
|
|
5538
|
-
createElementVNode("div",
|
|
5619
|
+
createElementVNode("div", _hoisted_9$1, [
|
|
5539
5620
|
item.tenantLogo ? (openBlock(), createElementBlock("img", {
|
|
5540
5621
|
key: 0,
|
|
5541
5622
|
class: "user-info-team-item-avatar-img",
|
|
5542
5623
|
mode: "aspectFit",
|
|
5543
5624
|
src: item.tenantLogo,
|
|
5544
5625
|
alt: ""
|
|
5545
|
-
}, null, 8,
|
|
5626
|
+
}, null, 8, _hoisted_10$1)) : (openBlock(), createElementBlock("img", _hoisted_11$1))
|
|
5546
5627
|
]),
|
|
5547
|
-
createElementVNode("div",
|
|
5628
|
+
createElementVNode("div", _hoisted_12$1, [
|
|
5548
5629
|
createElementVNode(
|
|
5549
5630
|
"div",
|
|
5550
|
-
|
|
5631
|
+
_hoisted_13$1,
|
|
5551
5632
|
toDisplayString(item.tenantName),
|
|
5552
5633
|
1
|
|
5553
5634
|
/* TEXT */
|
|
5554
5635
|
),
|
|
5555
|
-
item.appRoleInfo ? (openBlock(), createElementBlock("div",
|
|
5636
|
+
item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
|
|
5556
5637
|
(openBlock(true), createElementBlock(
|
|
5557
5638
|
Fragment,
|
|
5558
5639
|
null,
|
|
@@ -5575,7 +5656,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5575
5656
|
class: "user-info-team-item-role-btn",
|
|
5576
5657
|
onClick: ($event) => toShowRole(item)
|
|
5577
5658
|
}, [
|
|
5578
|
-
|
|
5659
|
+
createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
|
|
5579
5660
|
createElementVNode(
|
|
5580
5661
|
"img",
|
|
5581
5662
|
{
|
|
@@ -5587,9 +5668,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5587
5668
|
2
|
|
5588
5669
|
/* CLASS */
|
|
5589
5670
|
)
|
|
5590
|
-
], 8,
|
|
5671
|
+
], 8, _hoisted_15$1)
|
|
5591
5672
|
])) : createCommentVNode("v-if", true),
|
|
5592
|
-
item.showRole ? (openBlock(), createElementBlock("div",
|
|
5673
|
+
item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16$1, [
|
|
5593
5674
|
(openBlock(true), createElementBlock(
|
|
5594
5675
|
Fragment,
|
|
5595
5676
|
null,
|
|
@@ -5600,14 +5681,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5600
5681
|
}, [
|
|
5601
5682
|
createElementVNode(
|
|
5602
5683
|
"div",
|
|
5603
|
-
|
|
5684
|
+
_hoisted_17,
|
|
5604
5685
|
toDisplayString(aitem.appAbbr),
|
|
5605
5686
|
1
|
|
5606
5687
|
/* TEXT */
|
|
5607
5688
|
),
|
|
5608
5689
|
createElementVNode(
|
|
5609
5690
|
"div",
|
|
5610
|
-
|
|
5691
|
+
_hoisted_18,
|
|
5611
5692
|
toDisplayString(aitem.roleName),
|
|
5612
5693
|
1
|
|
5613
5694
|
/* TEXT */
|
|
@@ -5618,7 +5699,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5618
5699
|
/* KEYED_FRAGMENT */
|
|
5619
5700
|
))
|
|
5620
5701
|
])) : createCommentVNode("v-if", true),
|
|
5621
|
-
createElementVNode("div",
|
|
5702
|
+
createElementVNode("div", _hoisted_19, [
|
|
5622
5703
|
createTextVNode(
|
|
5623
5704
|
toDisplayString(item.fullName) + " ",
|
|
5624
5705
|
1
|
|
@@ -5629,9 +5710,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5629
5710
|
class: "user-info-team-item-user-icon",
|
|
5630
5711
|
src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
|
|
5631
5712
|
alt: ""
|
|
5632
|
-
}, null, 8,
|
|
5713
|
+
}, null, 8, _hoisted_20)
|
|
5633
5714
|
]),
|
|
5634
|
-
createElementVNode("div",
|
|
5715
|
+
createElementVNode("div", _hoisted_21, [
|
|
5635
5716
|
(openBlock(true), createElementBlock(
|
|
5636
5717
|
Fragment,
|
|
5637
5718
|
null,
|
|
@@ -5658,7 +5739,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5658
5739
|
/* KEYED_FRAGMENT */
|
|
5659
5740
|
))
|
|
5660
5741
|
]),
|
|
5661
|
-
createElementVNode("div",
|
|
5742
|
+
createElementVNode("div", _hoisted_22, [
|
|
5662
5743
|
createVNode(_component_nut_button, {
|
|
5663
5744
|
class: "user-info-ft-btn",
|
|
5664
5745
|
style: { "width": "100%" },
|
|
@@ -5666,9 +5747,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5666
5747
|
plain: "",
|
|
5667
5748
|
type: "primary"
|
|
5668
5749
|
}, {
|
|
5669
|
-
default: withCtx(() =>
|
|
5750
|
+
default: withCtx(() => [
|
|
5670
5751
|
createTextVNode("\u9000\u51FA\u767B\u5F55")
|
|
5671
|
-
])
|
|
5752
|
+
]),
|
|
5672
5753
|
_: 1
|
|
5673
5754
|
/* STABLE */
|
|
5674
5755
|
})
|
|
@@ -5693,9 +5774,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5693
5774
|
type: "default",
|
|
5694
5775
|
onClick: onUserNameCancel
|
|
5695
5776
|
}, {
|
|
5696
|
-
default: withCtx(() =>
|
|
5777
|
+
default: withCtx(() => [
|
|
5697
5778
|
createTextVNode(" \u53D6\u6D88 ")
|
|
5698
|
-
])
|
|
5779
|
+
]),
|
|
5699
5780
|
_: 1
|
|
5700
5781
|
/* STABLE */
|
|
5701
5782
|
}),
|
|
@@ -5704,9 +5785,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5704
5785
|
type: "primary",
|
|
5705
5786
|
onClick: onUserNameOk
|
|
5706
5787
|
}, {
|
|
5707
|
-
default: withCtx(() =>
|
|
5788
|
+
default: withCtx(() => [
|
|
5708
5789
|
createTextVNode(" \u786E\u5B9A ")
|
|
5709
|
-
])
|
|
5790
|
+
]),
|
|
5710
5791
|
_: 1
|
|
5711
5792
|
/* STABLE */
|
|
5712
5793
|
})
|
|
@@ -5731,14 +5812,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5731
5812
|
"overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
|
|
5732
5813
|
}, {
|
|
5733
5814
|
default: withCtx(() => [
|
|
5734
|
-
createElementVNode("div",
|
|
5815
|
+
createElementVNode("div", _hoisted_23, [
|
|
5735
5816
|
userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
|
|
5736
5817
|
key: 0,
|
|
5737
5818
|
class: "upload-avatar-popup-avatar",
|
|
5738
5819
|
mode: "aspectFit",
|
|
5739
5820
|
src: userInfo.value.avatar,
|
|
5740
5821
|
alt: ""
|
|
5741
|
-
}, null, 8,
|
|
5822
|
+
}, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
|
|
5742
5823
|
createElementVNode("div", {
|
|
5743
5824
|
class: "upload-avatar-popup-btn",
|
|
5744
5825
|
onClick: toUpload
|
|
@@ -5758,15 +5839,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5758
5839
|
|
|
5759
5840
|
script$8.__file = "src/user/components/UserInfo.vue";
|
|
5760
5841
|
|
|
5761
|
-
const _hoisted_1$
|
|
5762
|
-
const _hoisted_2$
|
|
5763
|
-
const _hoisted_3$
|
|
5764
|
-
const _hoisted_4$
|
|
5842
|
+
const _hoisted_1$7 = { class: "user-binding" };
|
|
5843
|
+
const _hoisted_2$6 = { class: "user-binding-layout" };
|
|
5844
|
+
const _hoisted_3$4 = ["src"];
|
|
5845
|
+
const _hoisted_4$3 = {
|
|
5765
5846
|
key: 0,
|
|
5766
5847
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5767
5848
|
style: { "flex": "1" }
|
|
5768
5849
|
};
|
|
5769
|
-
const _hoisted_5$
|
|
5850
|
+
const _hoisted_5$3 = {
|
|
5770
5851
|
key: 1,
|
|
5771
5852
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5772
5853
|
style: { "flex": "1" }
|
|
@@ -5853,28 +5934,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5853
5934
|
const _component_nut_form_item = FormItem;
|
|
5854
5935
|
const _component_nut_button = Button;
|
|
5855
5936
|
const _component_nut_form = Form;
|
|
5856
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5857
|
-
createElementVNode("div", _hoisted_2$
|
|
5937
|
+
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
5938
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
5858
5939
|
createElementVNode("img", {
|
|
5859
5940
|
class: "user-binding-img",
|
|
5860
5941
|
src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
|
|
5861
|
-
}, null, 8, _hoisted_3$
|
|
5942
|
+
}, null, 8, _hoisted_3$4),
|
|
5862
5943
|
createVNode(_component_nut_steps, {
|
|
5863
5944
|
current: current.value,
|
|
5864
5945
|
class: "user-binding-steps"
|
|
5865
5946
|
}, {
|
|
5866
5947
|
default: withCtx(() => [
|
|
5867
5948
|
createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
|
|
5868
|
-
default: withCtx(() =>
|
|
5949
|
+
default: withCtx(() => [
|
|
5869
5950
|
createTextVNode("1")
|
|
5870
|
-
])
|
|
5951
|
+
]),
|
|
5871
5952
|
_: 1
|
|
5872
5953
|
/* STABLE */
|
|
5873
5954
|
}),
|
|
5874
5955
|
createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
|
|
5875
|
-
default: withCtx(() =>
|
|
5956
|
+
default: withCtx(() => [
|
|
5876
5957
|
createTextVNode("2")
|
|
5877
|
-
])
|
|
5958
|
+
]),
|
|
5878
5959
|
_: 1
|
|
5879
5960
|
/* STABLE */
|
|
5880
5961
|
})
|
|
@@ -5883,7 +5964,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5883
5964
|
/* STABLE */
|
|
5884
5965
|
}, 8, ["current"])
|
|
5885
5966
|
]),
|
|
5886
|
-
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
5967
|
+
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
|
|
5887
5968
|
createVNode(_component_nut_form, null, {
|
|
5888
5969
|
default: withCtx(() => [
|
|
5889
5970
|
createVNode(_component_nut_form_item, {
|
|
@@ -5951,13 +6032,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5951
6032
|
type: "primary",
|
|
5952
6033
|
onClick: onAuth
|
|
5953
6034
|
}, {
|
|
5954
|
-
default: withCtx(() =>
|
|
6035
|
+
default: withCtx(() => [
|
|
5955
6036
|
createTextVNode("\u63D0\u4EA4")
|
|
5956
|
-
])
|
|
6037
|
+
]),
|
|
5957
6038
|
_: 1
|
|
5958
6039
|
/* STABLE */
|
|
5959
6040
|
}, 8, ["disabled"])
|
|
5960
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_5$
|
|
6041
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_5$3, [
|
|
5961
6042
|
createVNode(_component_nut_form, null, {
|
|
5962
6043
|
default: withCtx(() => [
|
|
5963
6044
|
createVNode(_component_nut_form_item, {
|
|
@@ -6024,9 +6105,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6024
6105
|
type: "primary",
|
|
6025
6106
|
onClick: onBinding
|
|
6026
6107
|
}, {
|
|
6027
|
-
default: withCtx(() =>
|
|
6108
|
+
default: withCtx(() => [
|
|
6028
6109
|
createTextVNode("\u63D0\u4EA4")
|
|
6029
|
-
])
|
|
6110
|
+
]),
|
|
6030
6111
|
_: 1
|
|
6031
6112
|
/* STABLE */
|
|
6032
6113
|
}, 8, ["disabled"])
|
|
@@ -6038,8 +6119,19 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6038
6119
|
|
|
6039
6120
|
script$7.__file = "src/user/components/UserBinding.vue";
|
|
6040
6121
|
|
|
6041
|
-
const _hoisted_1$
|
|
6042
|
-
const _hoisted_2$
|
|
6122
|
+
const _hoisted_1$6 = { class: "user-binding-success" };
|
|
6123
|
+
const _hoisted_2$5 = /* @__PURE__ */ createElementVNode(
|
|
6124
|
+
"img",
|
|
6125
|
+
{
|
|
6126
|
+
class: "user-binding-success-icon",
|
|
6127
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6128
|
+
alt: ""
|
|
6129
|
+
},
|
|
6130
|
+
null,
|
|
6131
|
+
-1
|
|
6132
|
+
/* HOISTED */
|
|
6133
|
+
);
|
|
6134
|
+
const _hoisted_3$3 = { class: "user-binding-success-info" };
|
|
6043
6135
|
var script$6 = /* @__PURE__ */ defineComponent({
|
|
6044
6136
|
__name: "UserBindingSuccess",
|
|
6045
6137
|
emits: ["binding"],
|
|
@@ -6058,21 +6150,11 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6058
6150
|
const emits = __emit;
|
|
6059
6151
|
return (_ctx, _cache) => {
|
|
6060
6152
|
const _component_nut_button = Button;
|
|
6061
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6062
|
-
|
|
6063
|
-
"img",
|
|
6064
|
-
{
|
|
6065
|
-
class: "user-binding-success-icon",
|
|
6066
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6067
|
-
alt: ""
|
|
6068
|
-
},
|
|
6069
|
-
null,
|
|
6070
|
-
-1
|
|
6071
|
-
/* HOISTED */
|
|
6072
|
-
)),
|
|
6153
|
+
return openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
6154
|
+
_hoisted_2$5,
|
|
6073
6155
|
createElementVNode(
|
|
6074
6156
|
"div",
|
|
6075
|
-
|
|
6157
|
+
_hoisted_3$3,
|
|
6076
6158
|
toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
|
|
6077
6159
|
1
|
|
6078
6160
|
/* TEXT */
|
|
@@ -6092,9 +6174,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6092
6174
|
type: "primary",
|
|
6093
6175
|
onClick: toBinding
|
|
6094
6176
|
}, {
|
|
6095
|
-
default: withCtx(() =>
|
|
6177
|
+
default: withCtx(() => [
|
|
6096
6178
|
createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
|
|
6097
|
-
])
|
|
6179
|
+
]),
|
|
6098
6180
|
_: 1
|
|
6099
6181
|
/* STABLE */
|
|
6100
6182
|
})
|
|
@@ -6712,11 +6794,39 @@ var script$5 = {
|
|
|
6712
6794
|
}
|
|
6713
6795
|
};
|
|
6714
6796
|
|
|
6715
|
-
const _hoisted_1$
|
|
6716
|
-
const _hoisted_2$
|
|
6717
|
-
const _hoisted_3$
|
|
6797
|
+
const _hoisted_1$5 = { class: "bt-container" };
|
|
6798
|
+
const _hoisted_2$4 = ["src"];
|
|
6799
|
+
const _hoisted_3$2 = /* @__PURE__ */ createElementVNode(
|
|
6800
|
+
"view",
|
|
6801
|
+
{ class: "line row row1" },
|
|
6802
|
+
null,
|
|
6803
|
+
-1
|
|
6804
|
+
/* HOISTED */
|
|
6805
|
+
);
|
|
6806
|
+
const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
|
|
6807
|
+
"view",
|
|
6808
|
+
{ class: "line row row2" },
|
|
6809
|
+
null,
|
|
6810
|
+
-1
|
|
6811
|
+
/* HOISTED */
|
|
6812
|
+
);
|
|
6813
|
+
const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
|
|
6814
|
+
"view",
|
|
6815
|
+
{ class: "line col col1" },
|
|
6816
|
+
null,
|
|
6817
|
+
-1
|
|
6818
|
+
/* HOISTED */
|
|
6819
|
+
);
|
|
6820
|
+
const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
|
|
6821
|
+
"view",
|
|
6822
|
+
{ class: "line col col2" },
|
|
6823
|
+
null,
|
|
6824
|
+
-1
|
|
6825
|
+
/* HOISTED */
|
|
6826
|
+
);
|
|
6827
|
+
const _hoisted_7$1 = { class: "slot" };
|
|
6718
6828
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6719
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
6829
|
+
return openBlock(), createElementBlock("view", _hoisted_1$5, [
|
|
6720
6830
|
createElementVNode("view", {
|
|
6721
6831
|
class: "iconfont icon-replay",
|
|
6722
6832
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
|
|
@@ -6736,7 +6846,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6736
6846
|
onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
|
|
6737
6847
|
style: normalizeStyle([$options.imageStyle]),
|
|
6738
6848
|
class: "image"
|
|
6739
|
-
}, null, 44, _hoisted_2$
|
|
6849
|
+
}, null, 44, _hoisted_2$4),
|
|
6740
6850
|
$props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
|
|
6741
6851
|
"view",
|
|
6742
6852
|
{
|
|
@@ -6755,34 +6865,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6755
6865
|
Fragment,
|
|
6756
6866
|
{ key: 0 },
|
|
6757
6867
|
[
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
-
|
|
6762
|
-
-1
|
|
6763
|
-
/* HOISTED */
|
|
6764
|
-
)),
|
|
6765
|
-
_cache[13] || (_cache[13] = createElementVNode(
|
|
6766
|
-
"view",
|
|
6767
|
-
{ class: "line row row2" },
|
|
6768
|
-
null,
|
|
6769
|
-
-1
|
|
6770
|
-
/* HOISTED */
|
|
6771
|
-
)),
|
|
6772
|
-
_cache[14] || (_cache[14] = createElementVNode(
|
|
6773
|
-
"view",
|
|
6774
|
-
{ class: "line col col1" },
|
|
6775
|
-
null,
|
|
6776
|
-
-1
|
|
6777
|
-
/* HOISTED */
|
|
6778
|
-
)),
|
|
6779
|
-
_cache[15] || (_cache[15] = createElementVNode(
|
|
6780
|
-
"view",
|
|
6781
|
-
{ class: "line col col2" },
|
|
6782
|
-
null,
|
|
6783
|
-
-1
|
|
6784
|
-
/* HOISTED */
|
|
6785
|
-
))
|
|
6868
|
+
_hoisted_3$2,
|
|
6869
|
+
_hoisted_4$2,
|
|
6870
|
+
_hoisted_5$2,
|
|
6871
|
+
_hoisted_6$1
|
|
6786
6872
|
],
|
|
6787
6873
|
64
|
|
6788
6874
|
/* STABLE_FRAGMENT */
|
|
@@ -6891,7 +6977,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6891
6977
|
32
|
|
6892
6978
|
/* NEED_HYDRATION */
|
|
6893
6979
|
),
|
|
6894
|
-
createElementVNode("view",
|
|
6980
|
+
createElementVNode("view", _hoisted_7$1, [
|
|
6895
6981
|
renderSlot(_ctx.$slots, "default")
|
|
6896
6982
|
]),
|
|
6897
6983
|
$options.isWeapp ? (openBlock(), createElementBlock(
|
|
@@ -6930,7 +7016,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6930
7016
|
script$5.render = render;
|
|
6931
7017
|
script$5.__file = "src/components/bt-cropper/index.vue";
|
|
6932
7018
|
|
|
6933
|
-
const _hoisted_1$
|
|
7019
|
+
const _hoisted_1$4 = { class: "user-head-crop" };
|
|
6934
7020
|
var script$4 = /* @__PURE__ */ defineComponent({
|
|
6935
7021
|
__name: "UserHeadCrop",
|
|
6936
7022
|
setup(__props) {
|
|
@@ -6955,7 +7041,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
6955
7041
|
}
|
|
6956
7042
|
}
|
|
6957
7043
|
return (_ctx, _cache) => {
|
|
6958
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7044
|
+
return openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
6959
7045
|
createVNode(script$5, {
|
|
6960
7046
|
ref_key: "cropperRef",
|
|
6961
7047
|
ref: cropperRef,
|
|
@@ -6984,20 +7070,84 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
6984
7070
|
|
|
6985
7071
|
script$4.__file = "src/user/components/UserHeadCrop.vue";
|
|
6986
7072
|
|
|
6987
|
-
const _hoisted_1$
|
|
7073
|
+
const _hoisted_1$3 = {
|
|
6988
7074
|
key: 0,
|
|
6989
7075
|
class: "user-feedback-wrap"
|
|
6990
7076
|
};
|
|
6991
|
-
const _hoisted_2 =
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
7077
|
+
const _hoisted_2$3 = /* @__PURE__ */ createElementVNode(
|
|
7078
|
+
"img",
|
|
7079
|
+
{
|
|
7080
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
|
|
7081
|
+
style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
|
|
7082
|
+
},
|
|
7083
|
+
null,
|
|
7084
|
+
-1
|
|
7085
|
+
/* HOISTED */
|
|
7086
|
+
);
|
|
7087
|
+
const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
|
|
7088
|
+
"div",
|
|
7089
|
+
{ class: "user-feedback-tit" },
|
|
7090
|
+
"\u8865\u5145\u63CF\u8FF0",
|
|
7091
|
+
-1
|
|
7092
|
+
/* HOISTED */
|
|
7093
|
+
);
|
|
7094
|
+
const _hoisted_4$1 = { class: "user-feedback-body" };
|
|
7095
|
+
const _hoisted_5$1 = { class: "user-feedback-handle" };
|
|
7096
|
+
const _hoisted_6 = ["src"];
|
|
7097
|
+
const _hoisted_7 = ["src"];
|
|
7098
|
+
const _hoisted_8 = ["onClick"];
|
|
7099
|
+
const _hoisted_9 = /* @__PURE__ */ createElementVNode(
|
|
7100
|
+
"img",
|
|
7101
|
+
{
|
|
7102
|
+
class: "user-feedback-handle-item-close-img",
|
|
7103
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7104
|
+
},
|
|
7105
|
+
null,
|
|
7106
|
+
-1
|
|
7107
|
+
/* HOISTED */
|
|
7108
|
+
);
|
|
7109
|
+
const _hoisted_10 = [
|
|
7110
|
+
_hoisted_9
|
|
7111
|
+
];
|
|
7112
|
+
const _hoisted_11 = /* @__PURE__ */ createElementVNode(
|
|
7113
|
+
"img",
|
|
7114
|
+
{
|
|
7115
|
+
class: "user-feedback-handle-item-loading",
|
|
7116
|
+
mode: "aspectFit",
|
|
7117
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7118
|
+
alt: ""
|
|
7119
|
+
},
|
|
7120
|
+
null,
|
|
7121
|
+
-1
|
|
7122
|
+
/* HOISTED */
|
|
7123
|
+
);
|
|
7124
|
+
const _hoisted_12 = { class: "user-feedback-footer" };
|
|
7125
|
+
const _hoisted_13 = {
|
|
6998
7126
|
key: 1,
|
|
6999
7127
|
class: "user-feedback-wrap"
|
|
7000
7128
|
};
|
|
7129
|
+
const _hoisted_14 = /* @__PURE__ */ createElementVNode(
|
|
7130
|
+
"img",
|
|
7131
|
+
{
|
|
7132
|
+
class: "user-feedback-success-img",
|
|
7133
|
+
mode: "aspectFit",
|
|
7134
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7135
|
+
},
|
|
7136
|
+
null,
|
|
7137
|
+
-1
|
|
7138
|
+
/* HOISTED */
|
|
7139
|
+
);
|
|
7140
|
+
const _hoisted_15 = /* @__PURE__ */ createElementVNode(
|
|
7141
|
+
"div",
|
|
7142
|
+
{ class: "user-feedback-success-info" },
|
|
7143
|
+
"\u63D0\u4EA4\u6210\u529F",
|
|
7144
|
+
-1
|
|
7145
|
+
/* HOISTED */
|
|
7146
|
+
);
|
|
7147
|
+
const _hoisted_16 = [
|
|
7148
|
+
_hoisted_14,
|
|
7149
|
+
_hoisted_15
|
|
7150
|
+
];
|
|
7001
7151
|
var script$3 = /* @__PURE__ */ defineComponent({
|
|
7002
7152
|
__name: "UserFeedback",
|
|
7003
7153
|
props: {
|
|
@@ -7170,32 +7320,17 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7170
7320
|
class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
|
|
7171
7321
|
},
|
|
7172
7322
|
[
|
|
7173
|
-
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
7174
|
-
|
|
7175
|
-
|
|
7176
|
-
|
|
7177
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
|
|
7178
|
-
style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
|
|
7179
|
-
},
|
|
7180
|
-
null,
|
|
7181
|
-
-1
|
|
7182
|
-
/* HOISTED */
|
|
7183
|
-
)),
|
|
7184
|
-
_cache[5] || (_cache[5] = createElementVNode(
|
|
7185
|
-
"div",
|
|
7186
|
-
{ class: "user-feedback-tit" },
|
|
7187
|
-
"\u8865\u5145\u63CF\u8FF0",
|
|
7188
|
-
-1
|
|
7189
|
-
/* HOISTED */
|
|
7190
|
-
)),
|
|
7191
|
-
createElementVNode("div", _hoisted_2, [
|
|
7323
|
+
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|
7324
|
+
_hoisted_2$3,
|
|
7325
|
+
_hoisted_3$1,
|
|
7326
|
+
createElementVNode("div", _hoisted_4$1, [
|
|
7192
7327
|
createVNode(_component_editor, {
|
|
7193
7328
|
id: "myEditor",
|
|
7194
7329
|
"show-img-resize": true,
|
|
7195
7330
|
class: "user-feedback-editor",
|
|
7196
7331
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
|
|
7197
7332
|
}),
|
|
7198
|
-
createElementVNode("div",
|
|
7333
|
+
createElementVNode("div", _hoisted_5$1, [
|
|
7199
7334
|
(openBlock(true), createElementBlock(
|
|
7200
7335
|
Fragment,
|
|
7201
7336
|
null,
|
|
@@ -7213,42 +7348,20 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7213
7348
|
class: "user-feedback-handle-item-img",
|
|
7214
7349
|
mode: "aspectFit",
|
|
7215
7350
|
src: item.url
|
|
7216
|
-
}, null, 8,
|
|
7351
|
+
}, null, 8, _hoisted_6)) : (openBlock(), createElementBlock("video", {
|
|
7217
7352
|
key: 1,
|
|
7218
7353
|
class: "user-feedback-handle-item-img",
|
|
7219
7354
|
src: item.url
|
|
7220
|
-
}, null, 8,
|
|
7355
|
+
}, null, 8, _hoisted_7)),
|
|
7221
7356
|
createElementVNode("div", {
|
|
7222
7357
|
class: "user-feedback-handle-item-close",
|
|
7223
7358
|
onClick: ($event) => onDelete(key)
|
|
7224
|
-
}, [...
|
|
7225
|
-
createElementVNode(
|
|
7226
|
-
"img",
|
|
7227
|
-
{
|
|
7228
|
-
class: "user-feedback-handle-item-close-img",
|
|
7229
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7230
|
-
},
|
|
7231
|
-
null,
|
|
7232
|
-
-1
|
|
7233
|
-
/* HOISTED */
|
|
7234
|
-
)
|
|
7235
|
-
])], 8, _hoisted_6)
|
|
7359
|
+
}, [..._hoisted_10], 8, _hoisted_8)
|
|
7236
7360
|
],
|
|
7237
7361
|
64
|
|
7238
7362
|
/* STABLE_FRAGMENT */
|
|
7239
7363
|
)) : createCommentVNode("v-if", true),
|
|
7240
|
-
|
|
7241
|
-
"img",
|
|
7242
|
-
{
|
|
7243
|
-
class: "user-feedback-handle-item-loading",
|
|
7244
|
-
mode: "aspectFit",
|
|
7245
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7246
|
-
alt: ""
|
|
7247
|
-
},
|
|
7248
|
-
null,
|
|
7249
|
-
-1
|
|
7250
|
-
/* HOISTED */
|
|
7251
|
-
))
|
|
7364
|
+
_hoisted_11
|
|
7252
7365
|
]);
|
|
7253
7366
|
}),
|
|
7254
7367
|
128
|
|
@@ -7260,16 +7373,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7260
7373
|
}, "+")
|
|
7261
7374
|
])
|
|
7262
7375
|
]),
|
|
7263
|
-
createElementVNode("div",
|
|
7376
|
+
createElementVNode("div", _hoisted_12, [
|
|
7264
7377
|
createVNode(_component_nut_button, {
|
|
7265
7378
|
class: "user-feedback-footer-btn",
|
|
7266
7379
|
plain: "",
|
|
7267
7380
|
type: "primary",
|
|
7268
7381
|
onClick: onCancel
|
|
7269
7382
|
}, {
|
|
7270
|
-
default: withCtx(() =>
|
|
7383
|
+
default: withCtx(() => [
|
|
7271
7384
|
createTextVNode("\u6700\u5C0F\u5316")
|
|
7272
|
-
])
|
|
7385
|
+
]),
|
|
7273
7386
|
_: 1
|
|
7274
7387
|
/* STABLE */
|
|
7275
7388
|
}),
|
|
@@ -7278,33 +7391,14 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7278
7391
|
type: "primary",
|
|
7279
7392
|
onClick: onOk
|
|
7280
7393
|
}, {
|
|
7281
|
-
default: withCtx(() =>
|
|
7394
|
+
default: withCtx(() => [
|
|
7282
7395
|
createTextVNode("\u53CD\u9988")
|
|
7283
|
-
])
|
|
7396
|
+
]),
|
|
7284
7397
|
_: 1
|
|
7285
7398
|
/* STABLE */
|
|
7286
7399
|
})
|
|
7287
7400
|
])
|
|
7288
|
-
])) : (openBlock(), createElementBlock("div",
|
|
7289
|
-
createElementVNode(
|
|
7290
|
-
"img",
|
|
7291
|
-
{
|
|
7292
|
-
class: "user-feedback-success-img",
|
|
7293
|
-
mode: "aspectFit",
|
|
7294
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7295
|
-
},
|
|
7296
|
-
null,
|
|
7297
|
-
-1
|
|
7298
|
-
/* HOISTED */
|
|
7299
|
-
),
|
|
7300
|
-
createElementVNode(
|
|
7301
|
-
"div",
|
|
7302
|
-
{ class: "user-feedback-success-info" },
|
|
7303
|
-
"\u63D0\u4EA4\u6210\u529F",
|
|
7304
|
-
-1
|
|
7305
|
-
/* HOISTED */
|
|
7306
|
-
)
|
|
7307
|
-
])))
|
|
7401
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_13, [..._hoisted_16]))
|
|
7308
7402
|
],
|
|
7309
7403
|
2
|
|
7310
7404
|
/* CLASS */
|
|
@@ -7398,6 +7492,41 @@ function useDragBox() {
|
|
|
7398
7492
|
};
|
|
7399
7493
|
}
|
|
7400
7494
|
|
|
7495
|
+
const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
|
|
7496
|
+
"img",
|
|
7497
|
+
{
|
|
7498
|
+
class: "user-feedback-entry-icon",
|
|
7499
|
+
mode: "aspectFit",
|
|
7500
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7501
|
+
},
|
|
7502
|
+
null,
|
|
7503
|
+
-1
|
|
7504
|
+
/* HOISTED */
|
|
7505
|
+
);
|
|
7506
|
+
const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
|
|
7507
|
+
"div",
|
|
7508
|
+
null,
|
|
7509
|
+
"\u53CD\u9988",
|
|
7510
|
+
-1
|
|
7511
|
+
/* HOISTED */
|
|
7512
|
+
);
|
|
7513
|
+
const _hoisted_3 = [
|
|
7514
|
+
_hoisted_1$2,
|
|
7515
|
+
_hoisted_2$2
|
|
7516
|
+
];
|
|
7517
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode(
|
|
7518
|
+
"img",
|
|
7519
|
+
{
|
|
7520
|
+
class: "user-feedback-entry-close-img",
|
|
7521
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7522
|
+
},
|
|
7523
|
+
null,
|
|
7524
|
+
-1
|
|
7525
|
+
/* HOISTED */
|
|
7526
|
+
);
|
|
7527
|
+
const _hoisted_5 = [
|
|
7528
|
+
_hoisted_4
|
|
7529
|
+
];
|
|
7401
7530
|
var script$2 = /* @__PURE__ */ defineComponent({
|
|
7402
7531
|
__name: "UserFeedbackEntry",
|
|
7403
7532
|
props: {
|
|
@@ -7485,26 +7614,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7485
7614
|
class: "user-feedback-entry",
|
|
7486
7615
|
onClick: onJump
|
|
7487
7616
|
},
|
|
7488
|
-
|
|
7489
|
-
createElementVNode(
|
|
7490
|
-
"img",
|
|
7491
|
-
{
|
|
7492
|
-
class: "user-feedback-entry-icon",
|
|
7493
|
-
mode: "aspectFit",
|
|
7494
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7495
|
-
},
|
|
7496
|
-
null,
|
|
7497
|
-
-1
|
|
7498
|
-
/* HOISTED */
|
|
7499
|
-
),
|
|
7500
|
-
createElementVNode(
|
|
7501
|
-
"div",
|
|
7502
|
-
null,
|
|
7503
|
-
"\u53CD\u9988",
|
|
7504
|
-
-1
|
|
7505
|
-
/* HOISTED */
|
|
7506
|
-
)
|
|
7507
|
-
]),
|
|
7617
|
+
[..._hoisted_3],
|
|
7508
7618
|
36
|
|
7509
7619
|
/* STYLE, NEED_HYDRATION */
|
|
7510
7620
|
)) : (openBlock(), createElementBlock(
|
|
@@ -7528,18 +7638,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7528
7638
|
createElementVNode("div", {
|
|
7529
7639
|
class: "user-feedback-entry-close",
|
|
7530
7640
|
onClick: onClose
|
|
7531
|
-
},
|
|
7532
|
-
createElementVNode(
|
|
7533
|
-
"img",
|
|
7534
|
-
{
|
|
7535
|
-
class: "user-feedback-entry-close-img",
|
|
7536
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7537
|
-
},
|
|
7538
|
-
null,
|
|
7539
|
-
-1
|
|
7540
|
-
/* HOISTED */
|
|
7541
|
-
)
|
|
7542
|
-
]))
|
|
7641
|
+
}, [..._hoisted_5])
|
|
7543
7642
|
],
|
|
7544
7643
|
36
|
|
7545
7644
|
/* STYLE, NEED_HYDRATION */
|
|
@@ -7550,7 +7649,17 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7550
7649
|
|
|
7551
7650
|
script$2.__file = "src/user/components/UserFeedbackEntry.vue";
|
|
7552
7651
|
|
|
7553
|
-
const _hoisted_1$1 =
|
|
7652
|
+
const _hoisted_1$1 = /* @__PURE__ */ createElementVNode(
|
|
7653
|
+
"img",
|
|
7654
|
+
{
|
|
7655
|
+
class: "login-setting-img",
|
|
7656
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7657
|
+
},
|
|
7658
|
+
null,
|
|
7659
|
+
-1
|
|
7660
|
+
/* HOISTED */
|
|
7661
|
+
);
|
|
7662
|
+
const _hoisted_2$1 = { class: "login-setting-text" };
|
|
7554
7663
|
var script$1 = /* @__PURE__ */ defineComponent({
|
|
7555
7664
|
__name: "LoginSetting",
|
|
7556
7665
|
props: {
|
|
@@ -7611,19 +7720,10 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7611
7720
|
style: normalizeStyle(style.value)
|
|
7612
7721
|
},
|
|
7613
7722
|
[
|
|
7614
|
-
|
|
7615
|
-
"img",
|
|
7616
|
-
{
|
|
7617
|
-
class: "login-setting-img",
|
|
7618
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7619
|
-
},
|
|
7620
|
-
null,
|
|
7621
|
-
-1
|
|
7622
|
-
/* HOISTED */
|
|
7623
|
-
)),
|
|
7723
|
+
_hoisted_1$1,
|
|
7624
7724
|
createElementVNode(
|
|
7625
7725
|
"div",
|
|
7626
|
-
|
|
7726
|
+
_hoisted_2$1,
|
|
7627
7727
|
toDisplayString(loginRuleTip.value),
|
|
7628
7728
|
1
|
|
7629
7729
|
/* TEXT */
|
|
@@ -7638,7 +7738,17 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7638
7738
|
|
|
7639
7739
|
script$1.__file = "src/user/components/LoginSetting.vue";
|
|
7640
7740
|
|
|
7641
|
-
const _hoisted_1 =
|
|
7741
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode(
|
|
7742
|
+
"img",
|
|
7743
|
+
{
|
|
7744
|
+
class: "user-resource-empty-img",
|
|
7745
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7746
|
+
},
|
|
7747
|
+
null,
|
|
7748
|
+
-1
|
|
7749
|
+
/* HOISTED */
|
|
7750
|
+
);
|
|
7751
|
+
const _hoisted_2 = { class: "user-resource-empty-text" };
|
|
7642
7752
|
var script = /* @__PURE__ */ defineComponent({
|
|
7643
7753
|
__name: "UserResourceEmpty",
|
|
7644
7754
|
props: {
|
|
@@ -7669,19 +7779,10 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
7669
7779
|
style: normalizeStyle(style.value)
|
|
7670
7780
|
},
|
|
7671
7781
|
[
|
|
7672
|
-
|
|
7673
|
-
"img",
|
|
7674
|
-
{
|
|
7675
|
-
class: "user-resource-empty-img",
|
|
7676
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7677
|
-
},
|
|
7678
|
-
null,
|
|
7679
|
-
-1
|
|
7680
|
-
/* HOISTED */
|
|
7681
|
-
)),
|
|
7782
|
+
_hoisted_1,
|
|
7682
7783
|
createElementVNode(
|
|
7683
7784
|
"div",
|
|
7684
|
-
|
|
7785
|
+
_hoisted_2,
|
|
7685
7786
|
" \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 ",
|
|
7686
7787
|
1
|
|
7687
7788
|
/* TEXT */
|
|
@@ -7723,6 +7824,10 @@ const $app = {
|
|
|
7723
7824
|
const appKitOptions = useAppKitOptions();
|
|
7724
7825
|
appKitOptions.tempToken = token;
|
|
7725
7826
|
},
|
|
7827
|
+
setTempAppcode: (appcode) => {
|
|
7828
|
+
const appKitOptions = useAppKitOptions();
|
|
7829
|
+
appKitOptions.tempAppcode = appcode;
|
|
7830
|
+
},
|
|
7726
7831
|
requestPayment: (options) => {
|
|
7727
7832
|
},
|
|
7728
7833
|
invokeRecharge: (options) => {
|