@uxda/appkit 4.1.24 → 4.1.25
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 +21 -24
- package/dist/assets/asset-3B_CoPto +1 -0
- package/dist/index.js +1117 -1055
- package/package.json +75 -77
- package/project.config.json +15 -15
- package/project.tt.json +13 -13
- package/rollup.config.mjs +56 -56
- package/src/Appkit.ts +66 -72
- 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 +230 -249
- package/src/balance/components/DateRange.vue +75 -80
- package/src/balance/components/ListFilter.vue +63 -63
- package/src/balance/components/ListFilterPicker.vue +186 -186
- package/src/balance/components/SecondBalance.vue +71 -71
- package/src/balance/components/Tip.vue +45 -45
- package/src/balance/components/index.ts +13 -13
- package/src/balance/types.ts +91 -91
- package/src/components/bt-cropper/index.vue +774 -774
- package/src/components/bt-cropper/utils/calcCropper.js +42 -42
- package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
- package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
- package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
- package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
- package/src/components/bt-cropper/utils/ratio.js +3 -3
- package/src/components/bt-cropper/utils/tools.js +25 -25
- package/src/components/dd-area/index.vue +225 -225
- package/src/components/dd-icon/doc.md +21 -21
- package/src/components/dd-icon/index.vue +23 -23
- package/src/components/dd-notice-bar/index.vue +78 -78
- package/src/components/dd-search/doc.md +34 -34
- package/src/components/dd-search/index.vue +168 -168
- package/src/components/dd-selector/index.vue +124 -124
- package/src/components/dd-skeleton/doc.md +19 -19
- package/src/components/dd-skeleton/index.vue +36 -36
- package/src/components/ocr-id/index.vue +114 -114
- package/src/components/ocr-id/types.d.ts +12 -12
- package/src/global.ts +6 -6
- package/src/index.ts +89 -93
- 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 -133
- package/src/shared/components/OcrIcon.vue +133 -133
- package/src/shared/components/PageHeader.vue +79 -79
- package/src/shared/components/index.ts +8 -8
- package/src/shared/composables/index.ts +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,
|
|
10
|
+
import { NsForm, NsInput, NsButton, NsIcon, 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,7 +723,6 @@ const appKitOptions = {
|
|
|
721
723
|
tenant: () => "",
|
|
722
724
|
token: () => "",
|
|
723
725
|
tempToken: () => "",
|
|
724
|
-
tempAppcode: () => "",
|
|
725
726
|
baseUrl: () => "",
|
|
726
727
|
401() {
|
|
727
728
|
},
|
|
@@ -1265,12 +1266,12 @@ const vendor$2 = {
|
|
|
1265
1266
|
});
|
|
1266
1267
|
}
|
|
1267
1268
|
};
|
|
1268
|
-
function useHttp$2() {
|
|
1269
|
+
function useHttp$2(defaultHeader) {
|
|
1269
1270
|
const appkitOptions = useAppKitOptions();
|
|
1270
1271
|
const headers = {
|
|
1271
1272
|
Token: appkitOptions.tempToken() || appkitOptions.token(),
|
|
1272
|
-
Appcode:
|
|
1273
|
-
cookie: `tid=${appkitOptions.tenant()}`,
|
|
1273
|
+
Appcode: defaultHeader?.Appcode || appkitOptions.app(),
|
|
1274
|
+
cookie: `tid=${defaultHeader?.Tenant || appkitOptions.tenant()}`,
|
|
1274
1275
|
gray: appkitOptions.gray ? appkitOptions.gray() : "0"
|
|
1275
1276
|
};
|
|
1276
1277
|
const $http = createHttp({
|
|
@@ -1371,10 +1372,10 @@ const services$1 = [
|
|
|
1371
1372
|
invokeRecharge$1
|
|
1372
1373
|
];
|
|
1373
1374
|
|
|
1374
|
-
const _hoisted_1$
|
|
1375
|
-
const _hoisted_2$
|
|
1376
|
-
const _hoisted_3$
|
|
1377
|
-
const _hoisted_4$
|
|
1375
|
+
const _hoisted_1$z = { class: "view recharge-view" };
|
|
1376
|
+
const _hoisted_2$v = { class: "flex-grow" };
|
|
1377
|
+
const _hoisted_3$q = { class: "amount-footer" };
|
|
1378
|
+
const _hoisted_4$k = { class: "agreement" };
|
|
1378
1379
|
var script$A = /* @__PURE__ */ defineComponent({
|
|
1379
1380
|
__name: "RechargeView",
|
|
1380
1381
|
props: {
|
|
@@ -1401,10 +1402,9 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1401
1402
|
state.selected = selected;
|
|
1402
1403
|
};
|
|
1403
1404
|
onMounted(() => {
|
|
1404
|
-
const $http = useHttp$2();
|
|
1405
|
+
const $http = useHttp$2({ Appcode: props.app !== "cloudkitPro" ? props.app : "", Tenant: props.tenant });
|
|
1405
1406
|
$http.get(endpoints.\u83B7\u53D6\u5145\u503C\u91D1\u989D\u5217\u8868, {
|
|
1406
1407
|
app: props.app,
|
|
1407
|
-
// stage: 'aiApproveRecharge', // 支付场景
|
|
1408
1408
|
tenant: props.tenant
|
|
1409
1409
|
}).then((response) => {
|
|
1410
1410
|
amounts.value = response;
|
|
@@ -1440,22 +1440,22 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1440
1440
|
return (_ctx, _cache) => {
|
|
1441
1441
|
const _component_nut_checkbox = Checkbox;
|
|
1442
1442
|
const _component_nut_button = Button;
|
|
1443
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1444
|
-
createElementVNode("view", _hoisted_2$
|
|
1443
|
+
return openBlock(), createElementBlock("view", _hoisted_1$z, [
|
|
1444
|
+
createElementVNode("view", _hoisted_2$v, [
|
|
1445
1445
|
createVNode(script$I, {
|
|
1446
1446
|
items: amounts.value,
|
|
1447
1447
|
selected: state.selected,
|
|
1448
1448
|
onChange: onAmountSelect
|
|
1449
1449
|
}, null, 8, ["items", "selected"])
|
|
1450
1450
|
]),
|
|
1451
|
-
createElementVNode("view", _hoisted_3$
|
|
1452
|
-
createElementVNode("view", _hoisted_4$
|
|
1451
|
+
createElementVNode("view", _hoisted_3$q, [
|
|
1452
|
+
createElementVNode("view", _hoisted_4$k, [
|
|
1453
1453
|
createVNode(_component_nut_checkbox, {
|
|
1454
1454
|
modelValue: state.agreed,
|
|
1455
1455
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
|
|
1456
1456
|
}, {
|
|
1457
1457
|
default: withCtx(() => [
|
|
1458
|
-
|
|
1458
|
+
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1459
1459
|
createElementVNode("a", {
|
|
1460
1460
|
class: "link inline",
|
|
1461
1461
|
onClick: onAgreementLinkClick
|
|
@@ -1472,9 +1472,9 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1472
1472
|
onClick: onPayClick,
|
|
1473
1473
|
class: "recharge-button"
|
|
1474
1474
|
}, {
|
|
1475
|
-
default: withCtx(() =>
|
|
1475
|
+
default: withCtx(() => [
|
|
1476
1476
|
createTextVNode("\u7ACB\u5373\u5145\u503C")
|
|
1477
|
-
])
|
|
1477
|
+
]),
|
|
1478
1478
|
_: 1
|
|
1479
1479
|
/* STABLE */
|
|
1480
1480
|
}, 8, ["loading"])
|
|
@@ -1486,11 +1486,13 @@ var script$A = /* @__PURE__ */ defineComponent({
|
|
|
1486
1486
|
|
|
1487
1487
|
script$A.__file = "src/payment/components/RechargeView.vue";
|
|
1488
1488
|
|
|
1489
|
-
const _hoisted_1$
|
|
1489
|
+
const _hoisted_1$y = { class: "agreement-doc" };
|
|
1490
|
+
const _hoisted_2$u = /* @__PURE__ */ createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96);
|
|
1491
|
+
const _hoisted_98 = [
|
|
1492
|
+
_hoisted_2$u
|
|
1493
|
+
];
|
|
1490
1494
|
function render$2(_ctx, _cache) {
|
|
1491
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1492
|
-
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)
|
|
1493
|
-
]));
|
|
1495
|
+
return openBlock(), createElementBlock("view", _hoisted_1$y, [..._hoisted_98]);
|
|
1494
1496
|
}
|
|
1495
1497
|
|
|
1496
1498
|
/* unplugin-vue-components disabled */const script$z = {};
|
|
@@ -1498,13 +1500,20 @@ function render$2(_ctx, _cache) {
|
|
|
1498
1500
|
script$z.render = render$2;
|
|
1499
1501
|
script$z.__file = "src/payment/components/UserAgreement.vue";
|
|
1500
1502
|
|
|
1501
|
-
const _hoisted_1$
|
|
1502
|
-
const _hoisted_2$
|
|
1503
|
-
const _hoisted_3$
|
|
1503
|
+
const _hoisted_1$x = { class: "recharge-result" };
|
|
1504
|
+
const _hoisted_2$t = { class: "content" };
|
|
1505
|
+
const _hoisted_3$p = /* @__PURE__ */ createElementVNode(
|
|
1506
|
+
"div",
|
|
1507
|
+
{ class: "figure" },
|
|
1508
|
+
null,
|
|
1509
|
+
-1
|
|
1510
|
+
/* HOISTED */
|
|
1511
|
+
);
|
|
1512
|
+
const _hoisted_4$j = {
|
|
1504
1513
|
key: 0,
|
|
1505
1514
|
class: "caption"
|
|
1506
1515
|
};
|
|
1507
|
-
const
|
|
1516
|
+
const _hoisted_5$g = {
|
|
1508
1517
|
key: 1,
|
|
1509
1518
|
class: "caption"
|
|
1510
1519
|
};
|
|
@@ -1526,15 +1535,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1526
1535
|
}
|
|
1527
1536
|
return (_ctx, _cache) => {
|
|
1528
1537
|
const _component_nut_button = Button;
|
|
1529
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1530
|
-
createElementVNode("div", _hoisted_2$
|
|
1531
|
-
|
|
1532
|
-
"div",
|
|
1533
|
-
{ class: "figure" },
|
|
1534
|
-
null,
|
|
1535
|
-
-1
|
|
1536
|
-
/* HOISTED */
|
|
1537
|
-
)),
|
|
1538
|
+
return openBlock(), createElementBlock("div", _hoisted_1$x, [
|
|
1539
|
+
createElementVNode("div", _hoisted_2$t, [
|
|
1540
|
+
_hoisted_3$p,
|
|
1538
1541
|
createElementVNode(
|
|
1539
1542
|
"h2",
|
|
1540
1543
|
null,
|
|
@@ -1542,9 +1545,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1542
1545
|
1
|
|
1543
1546
|
/* TEXT */
|
|
1544
1547
|
),
|
|
1545
|
-
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div",
|
|
1548
|
+
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_4$j, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
|
|
1546
1549
|
"div",
|
|
1547
|
-
|
|
1550
|
+
_hoisted_5$g,
|
|
1548
1551
|
toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
|
|
1549
1552
|
1
|
|
1550
1553
|
/* TEXT */
|
|
@@ -1554,9 +1557,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1554
1557
|
type: "default",
|
|
1555
1558
|
onClick: onBackClick
|
|
1556
1559
|
}, {
|
|
1557
|
-
default: withCtx(() =>
|
|
1560
|
+
default: withCtx(() => [
|
|
1558
1561
|
createTextVNode("\u8FD4\u56DE")
|
|
1559
|
-
])
|
|
1562
|
+
]),
|
|
1560
1563
|
_: 1
|
|
1561
1564
|
/* STABLE */
|
|
1562
1565
|
})
|
|
@@ -1568,9 +1571,9 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
1568
1571
|
|
|
1569
1572
|
script$y.__file = "src/payment/components/RechargeResult.vue";
|
|
1570
1573
|
|
|
1571
|
-
const _hoisted_1$
|
|
1572
|
-
const _hoisted_2$
|
|
1573
|
-
const _hoisted_3$
|
|
1574
|
+
const _hoisted_1$w = { class: "tag" };
|
|
1575
|
+
const _hoisted_2$s = { class: "token-line number" };
|
|
1576
|
+
const _hoisted_3$o = { class: "number" };
|
|
1574
1577
|
var script$x = /* @__PURE__ */ defineComponent({
|
|
1575
1578
|
__name: "RightsPicker",
|
|
1576
1579
|
props: {
|
|
@@ -1609,23 +1612,23 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1609
1612
|
default: withCtx(() => [
|
|
1610
1613
|
createElementVNode(
|
|
1611
1614
|
"div",
|
|
1612
|
-
_hoisted_1$
|
|
1615
|
+
_hoisted_1$w,
|
|
1613
1616
|
toDisplayString(amount.paymentDesc),
|
|
1614
1617
|
1
|
|
1615
1618
|
/* TEXT */
|
|
1616
1619
|
),
|
|
1617
1620
|
createElementVNode(
|
|
1618
1621
|
"h4",
|
|
1619
|
-
_hoisted_2$
|
|
1622
|
+
_hoisted_2$s,
|
|
1620
1623
|
toDisplayString(amount.priceRightNum) + "\u7B14",
|
|
1621
1624
|
1
|
|
1622
1625
|
/* TEXT */
|
|
1623
1626
|
),
|
|
1624
1627
|
createElementVNode("h5", null, [
|
|
1625
|
-
|
|
1628
|
+
createTextVNode("\xA5"),
|
|
1626
1629
|
createElementVNode(
|
|
1627
1630
|
"span",
|
|
1628
|
-
_hoisted_3$
|
|
1631
|
+
_hoisted_3$o,
|
|
1629
1632
|
toDisplayString(amount.paymentAmount),
|
|
1630
1633
|
1
|
|
1631
1634
|
/* TEXT */
|
|
@@ -1649,34 +1652,48 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
1649
1652
|
|
|
1650
1653
|
script$x.__file = "src/payment/components/RightsPicker.vue";
|
|
1651
1654
|
|
|
1652
|
-
const _hoisted_1$
|
|
1653
|
-
const _hoisted_2$
|
|
1654
|
-
const _hoisted_3$
|
|
1655
|
+
const _hoisted_1$v = { class: "view recharge-view2" };
|
|
1656
|
+
const _hoisted_2$r = { class: "flex-grow" };
|
|
1657
|
+
const _hoisted_3$n = {
|
|
1655
1658
|
key: 0,
|
|
1656
1659
|
class: "bean-buy"
|
|
1657
1660
|
};
|
|
1658
|
-
const _hoisted_4$
|
|
1659
|
-
const _hoisted_5$
|
|
1661
|
+
const _hoisted_4$i = { class: "left" };
|
|
1662
|
+
const _hoisted_5$f = /* @__PURE__ */ createElementVNode(
|
|
1663
|
+
"div",
|
|
1664
|
+
{ class: "title" },
|
|
1665
|
+
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1666
|
+
-1
|
|
1667
|
+
/* HOISTED */
|
|
1668
|
+
);
|
|
1669
|
+
const _hoisted_6$b = {
|
|
1660
1670
|
key: 0,
|
|
1661
1671
|
class: "amount"
|
|
1662
1672
|
};
|
|
1663
|
-
const
|
|
1673
|
+
const _hoisted_7$9 = {
|
|
1664
1674
|
key: 1,
|
|
1665
1675
|
class: "amount"
|
|
1666
1676
|
};
|
|
1667
|
-
const
|
|
1668
|
-
const
|
|
1669
|
-
const
|
|
1670
|
-
const
|
|
1677
|
+
const _hoisted_8$5 = { class: "amount" };
|
|
1678
|
+
const _hoisted_9$5 = ["src"];
|
|
1679
|
+
const _hoisted_10$5 = { class: "amount-footer" };
|
|
1680
|
+
const _hoisted_11$5 = {
|
|
1671
1681
|
key: 0,
|
|
1672
1682
|
class: "agreement"
|
|
1673
1683
|
};
|
|
1674
|
-
const
|
|
1675
|
-
const
|
|
1676
|
-
const
|
|
1677
|
-
const
|
|
1678
|
-
|
|
1679
|
-
|
|
1684
|
+
const _hoisted_12$5 = { class: "buy-amount" };
|
|
1685
|
+
const _hoisted_13$5 = { class: "left" };
|
|
1686
|
+
const _hoisted_14$4 = { class: "amount" };
|
|
1687
|
+
const _hoisted_15$3 = /* @__PURE__ */ createElementVNode(
|
|
1688
|
+
"i",
|
|
1689
|
+
null,
|
|
1690
|
+
"\uFFE5",
|
|
1691
|
+
-1
|
|
1692
|
+
/* HOISTED */
|
|
1693
|
+
);
|
|
1694
|
+
const _hoisted_16$3 = { class: "item" };
|
|
1695
|
+
const _hoisted_17$2 = { class: "item" };
|
|
1696
|
+
const _hoisted_18$2 = { class: "item" };
|
|
1680
1697
|
var script$w = /* @__PURE__ */ defineComponent({
|
|
1681
1698
|
__name: "TradeView",
|
|
1682
1699
|
props: {
|
|
@@ -1766,31 +1783,25 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1766
1783
|
const _component_nut_checkbox = Checkbox;
|
|
1767
1784
|
const _component_nut_button = Button;
|
|
1768
1785
|
const _component_nut_dialog = Dialog;
|
|
1769
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1770
|
-
createElementVNode("view", _hoisted_2$
|
|
1786
|
+
return openBlock(), createElementBlock("view", _hoisted_1$v, [
|
|
1787
|
+
createElementVNode("view", _hoisted_2$r, [
|
|
1771
1788
|
createVNode(script$x, {
|
|
1772
1789
|
items: amounts.value,
|
|
1773
1790
|
selected: state.selected,
|
|
1774
1791
|
onChange: onAmountSelect
|
|
1775
1792
|
}, null, 8, ["items", "selected"]),
|
|
1776
|
-
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
1777
|
-
createElementVNode("div", _hoisted_4$
|
|
1778
|
-
|
|
1779
|
-
"div",
|
|
1780
|
-
{ class: "title" },
|
|
1781
|
-
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
1782
|
-
-1
|
|
1783
|
-
/* HOISTED */
|
|
1784
|
-
)),
|
|
1793
|
+
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$n, [
|
|
1794
|
+
createElementVNode("div", _hoisted_4$i, [
|
|
1795
|
+
_hoisted_5$f,
|
|
1785
1796
|
!selectBean.value ? (openBlock(), createElementBlock(
|
|
1786
1797
|
"div",
|
|
1787
|
-
|
|
1798
|
+
_hoisted_6$b,
|
|
1788
1799
|
"\u4F59\u989D " + toDisplayString(balance.value),
|
|
1789
1800
|
1
|
|
1790
1801
|
/* TEXT */
|
|
1791
1802
|
)) : (openBlock(), createElementBlock(
|
|
1792
1803
|
"div",
|
|
1793
|
-
|
|
1804
|
+
_hoisted_7$9,
|
|
1794
1805
|
"\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1795
1806
|
1
|
|
1796
1807
|
/* TEXT */
|
|
@@ -1803,7 +1814,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1803
1814
|
}, [
|
|
1804
1815
|
createElementVNode(
|
|
1805
1816
|
"div",
|
|
1806
|
-
|
|
1817
|
+
_hoisted_8$5,
|
|
1807
1818
|
"-" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1808
1819
|
1
|
|
1809
1820
|
/* TEXT */
|
|
@@ -1811,18 +1822,18 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1811
1822
|
createElementVNode("img", {
|
|
1812
1823
|
class: "icon",
|
|
1813
1824
|
src: selectBean.value ? "https://cdn.ddjf.com/static/images/appkit/select.svg" : "https://cdn.ddjf.com/static/images/appkit/not-select.svg"
|
|
1814
|
-
}, null, 8,
|
|
1825
|
+
}, null, 8, _hoisted_9$5)
|
|
1815
1826
|
])) : createCommentVNode("v-if", true)
|
|
1816
1827
|
])) : createCommentVNode("v-if", true)
|
|
1817
1828
|
]),
|
|
1818
|
-
createElementVNode("view",
|
|
1819
|
-
!selectBean.value ? (openBlock(), createElementBlock("view",
|
|
1829
|
+
createElementVNode("view", _hoisted_10$5, [
|
|
1830
|
+
!selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_11$5, [
|
|
1820
1831
|
createVNode(_component_nut_checkbox, {
|
|
1821
1832
|
modelValue: state.agreed,
|
|
1822
1833
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
|
|
1823
1834
|
}, {
|
|
1824
1835
|
default: withCtx(() => [
|
|
1825
|
-
|
|
1836
|
+
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
|
|
1826
1837
|
createElementVNode("a", {
|
|
1827
1838
|
class: "link inline",
|
|
1828
1839
|
onClick: onAgreementLinkClick
|
|
@@ -1832,17 +1843,11 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1832
1843
|
/* STABLE */
|
|
1833
1844
|
}, 8, ["modelValue"])
|
|
1834
1845
|
])) : createCommentVNode("v-if", true),
|
|
1835
|
-
createElementVNode("div",
|
|
1836
|
-
createElementVNode("div",
|
|
1837
|
-
|
|
1838
|
-
createElementVNode("span",
|
|
1839
|
-
|
|
1840
|
-
"i",
|
|
1841
|
-
null,
|
|
1842
|
-
"\uFFE5",
|
|
1843
|
-
-1
|
|
1844
|
-
/* HOISTED */
|
|
1845
|
-
)),
|
|
1846
|
+
createElementVNode("div", _hoisted_12$5, [
|
|
1847
|
+
createElementVNode("div", _hoisted_13$5, [
|
|
1848
|
+
createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
|
|
1849
|
+
createElementVNode("span", _hoisted_14$4, [
|
|
1850
|
+
_hoisted_15$3,
|
|
1846
1851
|
createTextVNode(
|
|
1847
1852
|
toDisplayString(currentAmount.value),
|
|
1848
1853
|
1
|
|
@@ -1857,9 +1862,9 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1857
1862
|
onClick: onPayClick,
|
|
1858
1863
|
class: "recharge-button"
|
|
1859
1864
|
}, {
|
|
1860
|
-
default: withCtx(() =>
|
|
1865
|
+
default: withCtx(() => [
|
|
1861
1866
|
createTextVNode("\u8D2D\u4E70")
|
|
1862
|
-
])
|
|
1867
|
+
]),
|
|
1863
1868
|
_: 1
|
|
1864
1869
|
/* STABLE */
|
|
1865
1870
|
}, 8, ["loading"])
|
|
@@ -1880,21 +1885,21 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
1880
1885
|
[
|
|
1881
1886
|
createElementVNode(
|
|
1882
1887
|
"div",
|
|
1883
|
-
|
|
1888
|
+
_hoisted_16$3,
|
|
1884
1889
|
"\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
|
|
1885
1890
|
1
|
|
1886
1891
|
/* TEXT */
|
|
1887
1892
|
),
|
|
1888
1893
|
createElementVNode(
|
|
1889
1894
|
"div",
|
|
1890
|
-
|
|
1895
|
+
_hoisted_17$2,
|
|
1891
1896
|
"\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
|
|
1892
1897
|
1
|
|
1893
1898
|
/* TEXT */
|
|
1894
1899
|
),
|
|
1895
1900
|
createElementVNode(
|
|
1896
1901
|
"div",
|
|
1897
|
-
|
|
1902
|
+
_hoisted_18$2,
|
|
1898
1903
|
"\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
|
|
1899
1904
|
1
|
|
1900
1905
|
/* TEXT */
|
|
@@ -1922,11 +1927,84 @@ const components = {
|
|
|
1922
1927
|
TradeView: script$w
|
|
1923
1928
|
};
|
|
1924
1929
|
|
|
1925
|
-
const _hoisted_1$
|
|
1926
|
-
const _hoisted_2$
|
|
1927
|
-
const _hoisted_3$
|
|
1928
|
-
const _hoisted_4$
|
|
1929
|
-
const _hoisted_5$
|
|
1930
|
+
const _hoisted_1$u = { class: "account-card" };
|
|
1931
|
+
const _hoisted_2$q = { class: "card" };
|
|
1932
|
+
const _hoisted_3$m = { class: "card-row" };
|
|
1933
|
+
const _hoisted_4$h = { class: "card-row-left" };
|
|
1934
|
+
const _hoisted_5$e = /* @__PURE__ */ createElementVNode(
|
|
1935
|
+
"div",
|
|
1936
|
+
{ class: "bean-box" },
|
|
1937
|
+
[
|
|
1938
|
+
/* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
|
|
1939
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
1940
|
+
class: "bean-icon",
|
|
1941
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
1942
|
+
})
|
|
1943
|
+
]),
|
|
1944
|
+
/* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
1945
|
+
],
|
|
1946
|
+
-1
|
|
1947
|
+
/* HOISTED */
|
|
1948
|
+
);
|
|
1949
|
+
const _hoisted_6$a = { class: "bean-nums number" };
|
|
1950
|
+
const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
|
|
1951
|
+
"div",
|
|
1952
|
+
{ class: "account-info-name" },
|
|
1953
|
+
"\u8D26\u6237\u660E\u7EC6",
|
|
1954
|
+
-1
|
|
1955
|
+
/* HOISTED */
|
|
1956
|
+
);
|
|
1957
|
+
const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
|
|
1958
|
+
"div",
|
|
1959
|
+
{ class: "account-info-icon" },
|
|
1960
|
+
[
|
|
1961
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
1962
|
+
class: "icon",
|
|
1963
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
1964
|
+
})
|
|
1965
|
+
],
|
|
1966
|
+
-1
|
|
1967
|
+
/* HOISTED */
|
|
1968
|
+
);
|
|
1969
|
+
const _hoisted_9$4 = [
|
|
1970
|
+
_hoisted_7$8,
|
|
1971
|
+
_hoisted_8$4
|
|
1972
|
+
];
|
|
1973
|
+
const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
|
|
1974
|
+
"div",
|
|
1975
|
+
{ class: "line" },
|
|
1976
|
+
null,
|
|
1977
|
+
-1
|
|
1978
|
+
/* HOISTED */
|
|
1979
|
+
);
|
|
1980
|
+
const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
|
|
1981
|
+
"div",
|
|
1982
|
+
{ class: "card-row-left desc" },
|
|
1983
|
+
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
1984
|
+
-1
|
|
1985
|
+
/* HOISTED */
|
|
1986
|
+
);
|
|
1987
|
+
const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
|
|
1988
|
+
"div",
|
|
1989
|
+
null,
|
|
1990
|
+
"\u5145\u503C",
|
|
1991
|
+
-1
|
|
1992
|
+
/* HOISTED */
|
|
1993
|
+
);
|
|
1994
|
+
const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
|
|
1995
|
+
"img",
|
|
1996
|
+
{
|
|
1997
|
+
class: "pay-icon",
|
|
1998
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
1999
|
+
},
|
|
2000
|
+
null,
|
|
2001
|
+
-1
|
|
2002
|
+
/* HOISTED */
|
|
2003
|
+
);
|
|
2004
|
+
const _hoisted_14$3 = [
|
|
2005
|
+
_hoisted_12$4,
|
|
2006
|
+
_hoisted_13$4
|
|
2007
|
+
];
|
|
1930
2008
|
var script$v = /* @__PURE__ */ defineComponent({
|
|
1931
2009
|
__name: "BalanceCard",
|
|
1932
2010
|
props: {
|
|
@@ -1970,28 +2048,14 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
1970
2048
|
reload: loadBalance
|
|
1971
2049
|
});
|
|
1972
2050
|
return (_ctx, _cache) => {
|
|
1973
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1974
|
-
createElementVNode("div", _hoisted_2$
|
|
1975
|
-
createElementVNode("div", _hoisted_3$
|
|
1976
|
-
createElementVNode("div", _hoisted_4$
|
|
1977
|
-
|
|
1978
|
-
"div",
|
|
1979
|
-
{ class: "bean-box" },
|
|
1980
|
-
[
|
|
1981
|
-
createElementVNode("div", { class: "bean-icon-box" }, [
|
|
1982
|
-
createElementVNode("img", {
|
|
1983
|
-
class: "bean-icon",
|
|
1984
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
1985
|
-
})
|
|
1986
|
-
]),
|
|
1987
|
-
createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
1988
|
-
],
|
|
1989
|
-
-1
|
|
1990
|
-
/* HOISTED */
|
|
1991
|
-
)),
|
|
2051
|
+
return openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
2052
|
+
createElementVNode("div", _hoisted_2$q, [
|
|
2053
|
+
createElementVNode("div", _hoisted_3$m, [
|
|
2054
|
+
createElementVNode("div", _hoisted_4$h, [
|
|
2055
|
+
_hoisted_5$e,
|
|
1992
2056
|
createElementVNode(
|
|
1993
2057
|
"div",
|
|
1994
|
-
|
|
2058
|
+
_hoisted_6$a,
|
|
1995
2059
|
toDisplayString(balance.value.total || 0),
|
|
1996
2060
|
1
|
|
1997
2061
|
/* TEXT */
|
|
@@ -2001,67 +2065,17 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2001
2065
|
createElementVNode("div", {
|
|
2002
2066
|
class: "account-info-entry",
|
|
2003
2067
|
onClick: gotoDetail
|
|
2004
|
-
},
|
|
2005
|
-
createElementVNode(
|
|
2006
|
-
"div",
|
|
2007
|
-
{ class: "account-info-name" },
|
|
2008
|
-
"\u8D26\u6237\u660E\u7EC6",
|
|
2009
|
-
-1
|
|
2010
|
-
/* HOISTED */
|
|
2011
|
-
),
|
|
2012
|
-
createElementVNode(
|
|
2013
|
-
"div",
|
|
2014
|
-
{ class: "account-info-icon" },
|
|
2015
|
-
[
|
|
2016
|
-
createElementVNode("img", {
|
|
2017
|
-
class: "icon",
|
|
2018
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
|
|
2019
|
-
})
|
|
2020
|
-
],
|
|
2021
|
-
-1
|
|
2022
|
-
/* HOISTED */
|
|
2023
|
-
)
|
|
2024
|
-
]))
|
|
2068
|
+
}, [..._hoisted_9$4])
|
|
2025
2069
|
])
|
|
2026
2070
|
]),
|
|
2027
|
-
|
|
2028
|
-
"div",
|
|
2029
|
-
{ class: "line" },
|
|
2030
|
-
null,
|
|
2031
|
-
-1
|
|
2032
|
-
/* HOISTED */
|
|
2033
|
-
)),
|
|
2071
|
+
_hoisted_10$4,
|
|
2034
2072
|
createElementVNode("div", { class: "card-row" }, [
|
|
2035
|
-
|
|
2036
|
-
"div",
|
|
2037
|
-
{ class: "card-row-left desc" },
|
|
2038
|
-
"\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
|
|
2039
|
-
-1
|
|
2040
|
-
/* HOISTED */
|
|
2041
|
-
)),
|
|
2073
|
+
_hoisted_11$4,
|
|
2042
2074
|
createElementVNode("div", { class: "card-row-right" }, [
|
|
2043
2075
|
createElementVNode("div", {
|
|
2044
2076
|
class: "pay",
|
|
2045
2077
|
onClick: gotoRecharge
|
|
2046
|
-
},
|
|
2047
|
-
createElementVNode(
|
|
2048
|
-
"div",
|
|
2049
|
-
null,
|
|
2050
|
-
"\u5145\u503C",
|
|
2051
|
-
-1
|
|
2052
|
-
/* HOISTED */
|
|
2053
|
-
),
|
|
2054
|
-
createElementVNode(
|
|
2055
|
-
"img",
|
|
2056
|
-
{
|
|
2057
|
-
class: "pay-icon",
|
|
2058
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
|
|
2059
|
-
},
|
|
2060
|
-
null,
|
|
2061
|
-
-1
|
|
2062
|
-
/* HOISTED */
|
|
2063
|
-
)
|
|
2064
|
-
]))
|
|
2078
|
+
}, [..._hoisted_14$3])
|
|
2065
2079
|
])
|
|
2066
2080
|
])
|
|
2067
2081
|
])
|
|
@@ -2087,11 +2101,27 @@ const consumptionTypes = [
|
|
|
2087
2101
|
const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
|
|
2088
2102
|
const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
|
|
2089
2103
|
|
|
2090
|
-
const _hoisted_1$
|
|
2091
|
-
const _hoisted_2$
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2104
|
+
const _hoisted_1$t = { class: "consumption-filter" };
|
|
2105
|
+
const _hoisted_2$p = /* @__PURE__ */ createElementVNode(
|
|
2106
|
+
"div",
|
|
2107
|
+
{ class: "consumption-filter-title" },
|
|
2108
|
+
[
|
|
2109
|
+
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2110
|
+
],
|
|
2111
|
+
-1
|
|
2112
|
+
/* HOISTED */
|
|
2113
|
+
);
|
|
2114
|
+
const _hoisted_3$l = { class: "consumption-filter-content" };
|
|
2115
|
+
const _hoisted_4$g = { class: "title" };
|
|
2116
|
+
const _hoisted_5$d = { class: "info" };
|
|
2117
|
+
const _hoisted_6$9 = ["onClick"];
|
|
2118
|
+
const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
|
|
2119
|
+
"div",
|
|
2120
|
+
{ class: "consumption-filter-bottom" },
|
|
2121
|
+
null,
|
|
2122
|
+
-1
|
|
2123
|
+
/* HOISTED */
|
|
2124
|
+
);
|
|
2095
2125
|
var script$u = /* @__PURE__ */ defineComponent({
|
|
2096
2126
|
__name: "ConsumptionFilter",
|
|
2097
2127
|
props: {
|
|
@@ -2144,17 +2174,9 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2144
2174
|
emit("complete", result);
|
|
2145
2175
|
};
|
|
2146
2176
|
return (_ctx, _cache) => {
|
|
2147
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
{ class: "consumption-filter-title" },
|
|
2151
|
-
[
|
|
2152
|
-
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
2153
|
-
],
|
|
2154
|
-
-1
|
|
2155
|
-
/* HOISTED */
|
|
2156
|
-
)),
|
|
2157
|
-
createElementVNode("div", _hoisted_2$h, [
|
|
2177
|
+
return openBlock(), createElementBlock("div", _hoisted_1$t, [
|
|
2178
|
+
_hoisted_2$p,
|
|
2179
|
+
createElementVNode("div", _hoisted_3$l, [
|
|
2158
2180
|
(openBlock(true), createElementBlock(
|
|
2159
2181
|
Fragment,
|
|
2160
2182
|
null,
|
|
@@ -2165,12 +2187,12 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2165
2187
|
[
|
|
2166
2188
|
createElementVNode(
|
|
2167
2189
|
"div",
|
|
2168
|
-
|
|
2190
|
+
_hoisted_4$g,
|
|
2169
2191
|
toDisplayString(item.title),
|
|
2170
2192
|
1
|
|
2171
2193
|
/* TEXT */
|
|
2172
2194
|
),
|
|
2173
|
-
createElementVNode("div",
|
|
2195
|
+
createElementVNode("div", _hoisted_5$d, [
|
|
2174
2196
|
(openBlock(true), createElementBlock(
|
|
2175
2197
|
Fragment,
|
|
2176
2198
|
null,
|
|
@@ -2179,7 +2201,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2179
2201
|
onClick: () => onFilterSectionClick(index, it.code),
|
|
2180
2202
|
class: normalizeClass([getItemClass(index, it.code), "info-item"]),
|
|
2181
2203
|
key: i
|
|
2182
|
-
}, toDisplayString(typeof it === "string" ? it : it.name), 11,
|
|
2204
|
+
}, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_6$9);
|
|
2183
2205
|
}),
|
|
2184
2206
|
128
|
|
2185
2207
|
/* KEYED_FRAGMENT */
|
|
@@ -2204,13 +2226,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2204
2226
|
onClick: onOkClick
|
|
2205
2227
|
}, "\u786E\u5B9A")
|
|
2206
2228
|
]),
|
|
2207
|
-
|
|
2208
|
-
"div",
|
|
2209
|
-
{ class: "consumption-filter-bottom" },
|
|
2210
|
-
null,
|
|
2211
|
-
-1
|
|
2212
|
-
/* HOISTED */
|
|
2213
|
-
))
|
|
2229
|
+
_hoisted_7$7
|
|
2214
2230
|
]);
|
|
2215
2231
|
};
|
|
2216
2232
|
}
|
|
@@ -2218,9 +2234,37 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2218
2234
|
|
|
2219
2235
|
script$u.__file = "src/balance/components/ConsumptionFilter.vue";
|
|
2220
2236
|
|
|
2221
|
-
const _hoisted_1$
|
|
2222
|
-
const _hoisted_2$
|
|
2223
|
-
|
|
2237
|
+
const _hoisted_1$s = { class: "consumption-date-filter" };
|
|
2238
|
+
const _hoisted_2$o = /* @__PURE__ */ createElementVNode(
|
|
2239
|
+
"div",
|
|
2240
|
+
{ class: "date-filter-header" },
|
|
2241
|
+
"\u65E5\u671F\u9009\u62E9",
|
|
2242
|
+
-1
|
|
2243
|
+
/* HOISTED */
|
|
2244
|
+
);
|
|
2245
|
+
const _hoisted_3$k = { class: "content" };
|
|
2246
|
+
const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
|
|
2247
|
+
"div",
|
|
2248
|
+
{ class: "title" },
|
|
2249
|
+
"\u81EA\u5B9A\u4E49",
|
|
2250
|
+
-1
|
|
2251
|
+
/* HOISTED */
|
|
2252
|
+
);
|
|
2253
|
+
const _hoisted_5$c = { class: "time" };
|
|
2254
|
+
const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
|
|
2255
|
+
"div",
|
|
2256
|
+
{ class: "line" },
|
|
2257
|
+
"-",
|
|
2258
|
+
-1
|
|
2259
|
+
/* HOISTED */
|
|
2260
|
+
);
|
|
2261
|
+
const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
|
|
2262
|
+
"div",
|
|
2263
|
+
{ class: "bottom" },
|
|
2264
|
+
null,
|
|
2265
|
+
-1
|
|
2266
|
+
/* HOISTED */
|
|
2267
|
+
);
|
|
2224
2268
|
var script$t = /* @__PURE__ */ defineComponent({
|
|
2225
2269
|
__name: "DateFilter",
|
|
2226
2270
|
props: {
|
|
@@ -2230,7 +2274,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2230
2274
|
emits: ["complete", "reset"],
|
|
2231
2275
|
setup(__props, { emit: __emit }) {
|
|
2232
2276
|
const props = __props;
|
|
2233
|
-
const emit = __emit
|
|
2277
|
+
const emit = __emit;
|
|
2234
2278
|
watch(
|
|
2235
2279
|
() => `${props.from}${props.to}`,
|
|
2236
2280
|
() => {
|
|
@@ -2244,10 +2288,6 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2244
2288
|
const minDate = ref();
|
|
2245
2289
|
const maxDate = ref(/* @__PURE__ */ new Date());
|
|
2246
2290
|
const datePickerOpen = ref(false);
|
|
2247
|
-
state.beforeClose = () => {
|
|
2248
|
-
datePickerOpen.value = false;
|
|
2249
|
-
return true;
|
|
2250
|
-
};
|
|
2251
2291
|
function reset() {
|
|
2252
2292
|
emit("reset");
|
|
2253
2293
|
}
|
|
@@ -2266,11 +2306,6 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2266
2306
|
result.to = time;
|
|
2267
2307
|
}
|
|
2268
2308
|
datePickerOpen.value = false;
|
|
2269
|
-
state.couldClose = true;
|
|
2270
|
-
}
|
|
2271
|
-
function onDatePickerCancel() {
|
|
2272
|
-
datePickerOpen.value = false;
|
|
2273
|
-
state.couldClose = true;
|
|
2274
2309
|
}
|
|
2275
2310
|
function switchDateInput(shift) {
|
|
2276
2311
|
if (shift === "from") {
|
|
@@ -2283,28 +2318,15 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2283
2318
|
focusedDate.value = new Date(result[shift]);
|
|
2284
2319
|
focused.value = shift;
|
|
2285
2320
|
datePickerOpen.value = true;
|
|
2286
|
-
state.couldClose = false;
|
|
2287
2321
|
}
|
|
2288
2322
|
return (_ctx, _cache) => {
|
|
2289
2323
|
const _component_nut_date_picker = DatePicker;
|
|
2290
2324
|
const _component_nut_popup = Popup;
|
|
2291
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
"
|
|
2296
|
-
-1
|
|
2297
|
-
/* HOISTED */
|
|
2298
|
-
)),
|
|
2299
|
-
createElementVNode("div", _hoisted_2$g, [
|
|
2300
|
-
_cache[5] || (_cache[5] = createElementVNode(
|
|
2301
|
-
"div",
|
|
2302
|
-
{ class: "title" },
|
|
2303
|
-
"\u81EA\u5B9A\u4E49",
|
|
2304
|
-
-1
|
|
2305
|
-
/* HOISTED */
|
|
2306
|
-
)),
|
|
2307
|
-
createElementVNode("div", _hoisted_3$b, [
|
|
2325
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
2326
|
+
_hoisted_2$o,
|
|
2327
|
+
createElementVNode("div", _hoisted_3$k, [
|
|
2328
|
+
_hoisted_4$f,
|
|
2329
|
+
createElementVNode("div", _hoisted_5$c, [
|
|
2308
2330
|
createElementVNode(
|
|
2309
2331
|
"div",
|
|
2310
2332
|
{
|
|
@@ -2315,13 +2337,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2315
2337
|
3
|
|
2316
2338
|
/* TEXT, CLASS */
|
|
2317
2339
|
),
|
|
2318
|
-
|
|
2319
|
-
"div",
|
|
2320
|
-
{ class: "line" },
|
|
2321
|
-
"-",
|
|
2322
|
-
-1
|
|
2323
|
-
/* HOISTED */
|
|
2324
|
-
)),
|
|
2340
|
+
_hoisted_6$8,
|
|
2325
2341
|
createElementVNode(
|
|
2326
2342
|
"div",
|
|
2327
2343
|
{
|
|
@@ -2344,19 +2360,11 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2344
2360
|
onClick: onOkClick
|
|
2345
2361
|
}, "\u786E\u5B9A")
|
|
2346
2362
|
]),
|
|
2347
|
-
|
|
2348
|
-
"div",
|
|
2349
|
-
{ class: "bottom" },
|
|
2350
|
-
null,
|
|
2351
|
-
-1
|
|
2352
|
-
/* HOISTED */
|
|
2353
|
-
)),
|
|
2363
|
+
_hoisted_7$6,
|
|
2354
2364
|
createVNode(_component_nut_popup, {
|
|
2355
2365
|
visible: datePickerOpen.value,
|
|
2356
|
-
"onUpdate:visible": _cache[
|
|
2357
|
-
|
|
2358
|
-
position: "bottom",
|
|
2359
|
-
"overlay-class": "appkit-date-filter-picker-overlay"
|
|
2366
|
+
"onUpdate:visible": _cache[4] || (_cache[4] = ($event) => datePickerOpen.value = $event),
|
|
2367
|
+
position: "bottom"
|
|
2360
2368
|
}, {
|
|
2361
2369
|
default: withCtx(() => [
|
|
2362
2370
|
createVNode(_component_nut_date_picker, {
|
|
@@ -2366,7 +2374,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2366
2374
|
"max-date": maxDate.value,
|
|
2367
2375
|
"is-show-chinese": false,
|
|
2368
2376
|
"three-dimensional": false,
|
|
2369
|
-
onCancel:
|
|
2377
|
+
onCancel: _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = false),
|
|
2370
2378
|
onConfirm: onDatePickerComplete
|
|
2371
2379
|
}, null, 8, ["modelValue", "min-date", "max-date"])
|
|
2372
2380
|
]),
|
|
@@ -2380,36 +2388,38 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2380
2388
|
|
|
2381
2389
|
script$t.__file = "src/balance/components/DateFilter.vue";
|
|
2382
2390
|
|
|
2383
|
-
const _hoisted_1$
|
|
2391
|
+
const _hoisted_1$r = { class: "consumption-rules" };
|
|
2392
|
+
const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
|
|
2393
|
+
"div",
|
|
2394
|
+
{ class: "title" },
|
|
2395
|
+
"\u89C4\u5219\u8BF4\u660E",
|
|
2396
|
+
-1
|
|
2397
|
+
/* HOISTED */
|
|
2398
|
+
);
|
|
2399
|
+
const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
|
|
2400
|
+
"div",
|
|
2401
|
+
{ class: "desc" },
|
|
2402
|
+
[
|
|
2403
|
+
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2404
|
+
/* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
|
|
2405
|
+
/* @__PURE__ */ createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
|
|
2406
|
+
/* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
|
|
2407
|
+
/* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2408
|
+
/* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
|
|
2409
|
+
/* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
|
|
2410
|
+
],
|
|
2411
|
+
-1
|
|
2412
|
+
/* HOISTED */
|
|
2413
|
+
);
|
|
2384
2414
|
var script$s = /* @__PURE__ */ defineComponent({
|
|
2385
2415
|
__name: "ConsumptionRules",
|
|
2386
2416
|
emits: ["complete"],
|
|
2387
2417
|
setup(__props, { emit: __emit }) {
|
|
2388
2418
|
const emit = __emit;
|
|
2389
2419
|
return (_ctx, _cache) => {
|
|
2390
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
{ class: "title" },
|
|
2394
|
-
"\u89C4\u5219\u8BF4\u660E",
|
|
2395
|
-
-1
|
|
2396
|
-
/* HOISTED */
|
|
2397
|
-
)),
|
|
2398
|
-
_cache[2] || (_cache[2] = createElementVNode(
|
|
2399
|
-
"div",
|
|
2400
|
-
{ class: "desc" },
|
|
2401
|
-
[
|
|
2402
|
-
createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
|
|
2403
|
-
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 "),
|
|
2404
|
-
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 "),
|
|
2405
|
-
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 "),
|
|
2406
|
-
createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
|
|
2407
|
-
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 "),
|
|
2408
|
-
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 ")
|
|
2409
|
-
],
|
|
2410
|
-
-1
|
|
2411
|
-
/* HOISTED */
|
|
2412
|
-
)),
|
|
2420
|
+
return openBlock(), createElementBlock("div", _hoisted_1$r, [
|
|
2421
|
+
_hoisted_2$n,
|
|
2422
|
+
_hoisted_3$j,
|
|
2413
2423
|
createElementVNode("div", {
|
|
2414
2424
|
class: "know",
|
|
2415
2425
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
|
|
@@ -2421,27 +2431,30 @@ var script$s = /* @__PURE__ */ defineComponent({
|
|
|
2421
2431
|
|
|
2422
2432
|
script$s.__file = "src/balance/components/ConsumptionRules.vue";
|
|
2423
2433
|
|
|
2424
|
-
const _hoisted_1$
|
|
2434
|
+
const _hoisted_1$q = { class: "empty-view" };
|
|
2435
|
+
const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
|
|
2436
|
+
"img",
|
|
2437
|
+
{
|
|
2438
|
+
class: "empty-view-image",
|
|
2439
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2440
|
+
},
|
|
2441
|
+
null,
|
|
2442
|
+
-1
|
|
2443
|
+
/* HOISTED */
|
|
2444
|
+
);
|
|
2445
|
+
const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
|
|
2446
|
+
"div",
|
|
2447
|
+
{ class: "empty-view-text" },
|
|
2448
|
+
"\u6682\u65E0\u6570\u636E",
|
|
2449
|
+
-1
|
|
2450
|
+
/* HOISTED */
|
|
2451
|
+
);
|
|
2452
|
+
const _hoisted_4$e = [
|
|
2453
|
+
_hoisted_2$m,
|
|
2454
|
+
_hoisted_3$i
|
|
2455
|
+
];
|
|
2425
2456
|
function render$1(_ctx, _cache) {
|
|
2426
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2427
|
-
createElementVNode(
|
|
2428
|
-
"img",
|
|
2429
|
-
{
|
|
2430
|
-
class: "empty-view-image",
|
|
2431
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
|
|
2432
|
-
},
|
|
2433
|
-
null,
|
|
2434
|
-
-1
|
|
2435
|
-
/* HOISTED */
|
|
2436
|
-
),
|
|
2437
|
-
createElementVNode(
|
|
2438
|
-
"div",
|
|
2439
|
-
{ class: "empty-view-text" },
|
|
2440
|
-
"\u6682\u65E0\u6570\u636E",
|
|
2441
|
-
-1
|
|
2442
|
-
/* HOISTED */
|
|
2443
|
-
)
|
|
2444
|
-
]));
|
|
2457
|
+
return openBlock(), createElementBlock("div", _hoisted_1$q, [..._hoisted_4$e]);
|
|
2445
2458
|
}
|
|
2446
2459
|
|
|
2447
2460
|
/* unplugin-vue-components disabled */const script$r = {};
|
|
@@ -2449,10 +2462,31 @@ function render$1(_ctx, _cache) {
|
|
|
2449
2462
|
script$r.render = render$1;
|
|
2450
2463
|
script$r.__file = "src/shared/components/EmptyView.vue";
|
|
2451
2464
|
|
|
2452
|
-
const _hoisted_1$
|
|
2465
|
+
const _hoisted_1$p = {
|
|
2453
2466
|
key: 0,
|
|
2454
2467
|
class: "tip"
|
|
2455
2468
|
};
|
|
2469
|
+
const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
|
|
2470
|
+
"img",
|
|
2471
|
+
{
|
|
2472
|
+
class: "tip-icon",
|
|
2473
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2474
|
+
},
|
|
2475
|
+
null,
|
|
2476
|
+
-1
|
|
2477
|
+
/* HOISTED */
|
|
2478
|
+
);
|
|
2479
|
+
const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
|
|
2480
|
+
"div",
|
|
2481
|
+
{ class: "tip-content" },
|
|
2482
|
+
"2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
|
|
2483
|
+
-1
|
|
2484
|
+
/* HOISTED */
|
|
2485
|
+
);
|
|
2486
|
+
const _hoisted_4$d = [
|
|
2487
|
+
_hoisted_2$l,
|
|
2488
|
+
_hoisted_3$h
|
|
2489
|
+
];
|
|
2456
2490
|
var script$q = /* @__PURE__ */ defineComponent({
|
|
2457
2491
|
__name: "Tip",
|
|
2458
2492
|
setup(__props) {
|
|
@@ -2465,73 +2499,141 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
2465
2499
|
}
|
|
2466
2500
|
});
|
|
2467
2501
|
return (_ctx, _cache) => {
|
|
2468
|
-
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
2469
|
-
createElementVNode(
|
|
2470
|
-
"img",
|
|
2471
|
-
{
|
|
2472
|
-
class: "tip-icon",
|
|
2473
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
|
|
2474
|
-
},
|
|
2475
|
-
null,
|
|
2476
|
-
-1
|
|
2477
|
-
/* HOISTED */
|
|
2478
|
-
),
|
|
2479
|
-
createElementVNode(
|
|
2480
|
-
"div",
|
|
2481
|
-
{ class: "tip-content" },
|
|
2482
|
-
"2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
|
|
2483
|
-
-1
|
|
2484
|
-
/* HOISTED */
|
|
2485
|
-
)
|
|
2486
|
-
]))) : createCommentVNode("v-if", true);
|
|
2502
|
+
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$p, [..._hoisted_4$d])) : createCommentVNode("v-if", true);
|
|
2487
2503
|
};
|
|
2488
2504
|
}
|
|
2489
2505
|
});
|
|
2490
2506
|
|
|
2491
2507
|
script$q.__file = "src/balance/components/Tip.vue";
|
|
2492
2508
|
|
|
2493
|
-
const _hoisted_1$
|
|
2494
|
-
const _hoisted_2$
|
|
2495
|
-
const _hoisted_3$
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2509
|
+
const _hoisted_1$o = { class: "account-view" };
|
|
2510
|
+
const _hoisted_2$k = { class: "scroll-content" };
|
|
2511
|
+
const _hoisted_3$g = /* @__PURE__ */ createElementVNode(
|
|
2512
|
+
"label",
|
|
2513
|
+
null,
|
|
2514
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
2515
|
+
-1
|
|
2516
|
+
/* HOISTED */
|
|
2517
|
+
);
|
|
2518
|
+
const _hoisted_4$c = [
|
|
2519
|
+
_hoisted_3$g
|
|
2520
|
+
];
|
|
2521
|
+
const _hoisted_5$b = { class: "balance" };
|
|
2522
|
+
const _hoisted_6$7 = { class: "bean-box spa-between" };
|
|
2523
|
+
const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
|
|
2524
|
+
"div",
|
|
2525
|
+
{ class: "bean-img" },
|
|
2526
|
+
[
|
|
2527
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
2528
|
+
class: "bean-icon",
|
|
2529
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2530
|
+
}),
|
|
2531
|
+
/* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2532
|
+
],
|
|
2533
|
+
-1
|
|
2534
|
+
/* HOISTED */
|
|
2535
|
+
);
|
|
2536
|
+
const _hoisted_8$3 = { class: "bean-counts spa-between" };
|
|
2537
|
+
const _hoisted_9$3 = { class: "counts number" };
|
|
2538
|
+
const _hoisted_10$3 = {
|
|
2500
2539
|
key: 0,
|
|
2501
2540
|
class: "rights-card"
|
|
2502
2541
|
};
|
|
2503
|
-
const
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2542
|
+
const _hoisted_11$3 = /* @__PURE__ */ createElementVNode(
|
|
2543
|
+
"div",
|
|
2544
|
+
{ class: "title" },
|
|
2545
|
+
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
2546
|
+
-1
|
|
2547
|
+
/* HOISTED */
|
|
2548
|
+
);
|
|
2549
|
+
const _hoisted_12$3 = { class: "list" };
|
|
2550
|
+
const _hoisted_13$3 = { class: "item-count" };
|
|
2551
|
+
const _hoisted_14$2 = { class: "item-title" };
|
|
2552
|
+
const _hoisted_15$2 = {
|
|
2507
2553
|
key: 0,
|
|
2508
2554
|
class: "item-title-button"
|
|
2509
2555
|
};
|
|
2510
|
-
const
|
|
2511
|
-
const
|
|
2556
|
+
const _hoisted_16$2 = ["onClick"];
|
|
2557
|
+
const _hoisted_17$1 = /* @__PURE__ */ createElementVNode(
|
|
2558
|
+
"img",
|
|
2559
|
+
{
|
|
2560
|
+
class: "button-icon",
|
|
2561
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2562
|
+
},
|
|
2563
|
+
null,
|
|
2564
|
+
-1
|
|
2565
|
+
/* HOISTED */
|
|
2566
|
+
);
|
|
2567
|
+
const _hoisted_18$1 = {
|
|
2512
2568
|
key: 1,
|
|
2513
2569
|
class: "rights-card"
|
|
2514
2570
|
};
|
|
2515
|
-
const
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
const
|
|
2571
|
+
const _hoisted_19$1 = /* @__PURE__ */ createElementVNode(
|
|
2572
|
+
"div",
|
|
2573
|
+
{ class: "title" },
|
|
2574
|
+
"AI\u5BA1\u6279\u6743\u76CA",
|
|
2575
|
+
-1
|
|
2576
|
+
/* HOISTED */
|
|
2577
|
+
);
|
|
2578
|
+
const _hoisted_20$1 = { class: "list" };
|
|
2579
|
+
const _hoisted_21$1 = { class: "item-count" };
|
|
2580
|
+
const _hoisted_22$1 = { class: "item-title" };
|
|
2581
|
+
const _hoisted_23$1 = { class: "operation-box" };
|
|
2582
|
+
const _hoisted_24$1 = { class: "search-time" };
|
|
2583
|
+
const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
|
|
2584
|
+
"div",
|
|
2585
|
+
{ class: "title" },
|
|
2586
|
+
"\u6536\u652F\u660E\u7EC6",
|
|
2587
|
+
-1
|
|
2588
|
+
/* HOISTED */
|
|
2589
|
+
);
|
|
2590
|
+
const _hoisted_26 = { class: "text number" };
|
|
2591
|
+
const _hoisted_27 = /* @__PURE__ */ createElementVNode(
|
|
2592
|
+
"img",
|
|
2593
|
+
{
|
|
2594
|
+
style: { "margin-top": "-2px" },
|
|
2595
|
+
class: "time-icon",
|
|
2596
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
2597
|
+
},
|
|
2598
|
+
null,
|
|
2599
|
+
-1
|
|
2600
|
+
/* HOISTED */
|
|
2601
|
+
);
|
|
2602
|
+
const _hoisted_28 = /* @__PURE__ */ createElementVNode(
|
|
2603
|
+
"span",
|
|
2604
|
+
{ class: "text" },
|
|
2605
|
+
"\u7B5B\u9009",
|
|
2606
|
+
-1
|
|
2607
|
+
/* HOISTED */
|
|
2608
|
+
);
|
|
2609
|
+
const _hoisted_29 = /* @__PURE__ */ createElementVNode(
|
|
2610
|
+
"img",
|
|
2611
|
+
{
|
|
2612
|
+
class: "time-icon",
|
|
2613
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
2614
|
+
},
|
|
2615
|
+
null,
|
|
2616
|
+
-1
|
|
2617
|
+
/* HOISTED */
|
|
2618
|
+
);
|
|
2619
|
+
const _hoisted_30 = [
|
|
2620
|
+
_hoisted_28,
|
|
2621
|
+
_hoisted_29
|
|
2622
|
+
];
|
|
2623
|
+
const _hoisted_31 = { class: "operation-list" };
|
|
2624
|
+
const _hoisted_32 = {
|
|
2523
2625
|
key: 0,
|
|
2524
2626
|
class: "box"
|
|
2525
2627
|
};
|
|
2526
|
-
const
|
|
2527
|
-
const
|
|
2528
|
-
const
|
|
2529
|
-
const
|
|
2530
|
-
const
|
|
2531
|
-
const
|
|
2532
|
-
const
|
|
2533
|
-
const
|
|
2534
|
-
const
|
|
2628
|
+
const _hoisted_33 = { class: "title number" };
|
|
2629
|
+
const _hoisted_34 = { class: "item-type" };
|
|
2630
|
+
const _hoisted_35 = { class: "item-detail" };
|
|
2631
|
+
const _hoisted_36 = { class: "item-info spa-between" };
|
|
2632
|
+
const _hoisted_37 = { class: "item-info-type" };
|
|
2633
|
+
const _hoisted_38 = { class: "item-info-title" };
|
|
2634
|
+
const _hoisted_39 = { class: "item-info-amount number" };
|
|
2635
|
+
const _hoisted_40 = { class: "item-detail-remark" };
|
|
2636
|
+
const _hoisted_41 = {
|
|
2535
2637
|
key: 0,
|
|
2536
2638
|
class: "box-not-text"
|
|
2537
2639
|
};
|
|
@@ -2712,8 +2814,8 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2712
2814
|
Fragment,
|
|
2713
2815
|
null,
|
|
2714
2816
|
[
|
|
2715
|
-
createElementVNode("div", _hoisted_1$
|
|
2716
|
-
createElementVNode("div", _hoisted_2$
|
|
2817
|
+
createElementVNode("div", _hoisted_1$o, [
|
|
2818
|
+
createElementVNode("div", _hoisted_2$k, [
|
|
2717
2819
|
createVNode(unref(script$H), {
|
|
2718
2820
|
"color-mode": "dark",
|
|
2719
2821
|
title: "\u6211\u7684\u8D26\u6237",
|
|
@@ -2724,40 +2826,20 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2724
2826
|
createElementVNode("div", {
|
|
2725
2827
|
class: "small-bean-button",
|
|
2726
2828
|
onClick: onSecondBalanceButtonClick
|
|
2727
|
-
},
|
|
2728
|
-
createElementVNode(
|
|
2729
|
-
"label",
|
|
2730
|
-
null,
|
|
2731
|
-
"\u6536\u652F\u660E\u7EC6",
|
|
2732
|
-
-1
|
|
2733
|
-
/* HOISTED */
|
|
2734
|
-
)
|
|
2735
|
-
]))
|
|
2829
|
+
}, [..._hoisted_4$c])
|
|
2736
2830
|
]),
|
|
2737
|
-
createElementVNode("div",
|
|
2738
|
-
createElementVNode("div",
|
|
2739
|
-
|
|
2740
|
-
"div",
|
|
2741
|
-
{ class: "bean-img" },
|
|
2742
|
-
[
|
|
2743
|
-
createElementVNode("img", {
|
|
2744
|
-
class: "bean-icon",
|
|
2745
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
|
|
2746
|
-
}),
|
|
2747
|
-
createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
2748
|
-
],
|
|
2749
|
-
-1
|
|
2750
|
-
/* HOISTED */
|
|
2751
|
-
)),
|
|
2831
|
+
createElementVNode("div", _hoisted_5$b, [
|
|
2832
|
+
createElementVNode("div", _hoisted_6$7, [
|
|
2833
|
+
_hoisted_7$5,
|
|
2752
2834
|
createElementVNode("div", {
|
|
2753
2835
|
class: "rule",
|
|
2754
2836
|
onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
|
|
2755
2837
|
}, "\u89C4\u5219\u8BF4\u660E")
|
|
2756
2838
|
]),
|
|
2757
|
-
createElementVNode("div",
|
|
2839
|
+
createElementVNode("div", _hoisted_8$3, [
|
|
2758
2840
|
createElementVNode(
|
|
2759
2841
|
"div",
|
|
2760
|
-
|
|
2842
|
+
_hoisted_9$3,
|
|
2761
2843
|
toDisplayString(balance.value.total || 0),
|
|
2762
2844
|
1
|
|
2763
2845
|
/* TEXT */
|
|
@@ -2769,15 +2851,9 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2769
2851
|
])
|
|
2770
2852
|
]),
|
|
2771
2853
|
createVNode(script$q),
|
|
2772
|
-
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div",
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
{ class: "title" },
|
|
2776
|
-
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
2777
|
-
-1
|
|
2778
|
-
/* HOISTED */
|
|
2779
|
-
)),
|
|
2780
|
-
createElementVNode("div", _hoisted_8$3, [
|
|
2854
|
+
balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_10$3, [
|
|
2855
|
+
_hoisted_11$3,
|
|
2856
|
+
createElementVNode("div", _hoisted_12$3, [
|
|
2781
2857
|
(openBlock(true), createElementBlock(
|
|
2782
2858
|
Fragment,
|
|
2783
2859
|
null,
|
|
@@ -2786,7 +2862,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2786
2862
|
class: "item star-item",
|
|
2787
2863
|
key: index
|
|
2788
2864
|
}, [
|
|
2789
|
-
createElementVNode("div",
|
|
2865
|
+
createElementVNode("div", _hoisted_13$3, [
|
|
2790
2866
|
createElementVNode(
|
|
2791
2867
|
"span",
|
|
2792
2868
|
null,
|
|
@@ -2802,7 +2878,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2802
2878
|
/* TEXT */
|
|
2803
2879
|
)
|
|
2804
2880
|
]),
|
|
2805
|
-
createElementVNode("div",
|
|
2881
|
+
createElementVNode("div", _hoisted_14$2, [
|
|
2806
2882
|
createElementVNode(
|
|
2807
2883
|
"div",
|
|
2808
2884
|
null,
|
|
@@ -2810,20 +2886,11 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2810
2886
|
1
|
|
2811
2887
|
/* TEXT */
|
|
2812
2888
|
),
|
|
2813
|
-
item.id ? (openBlock(), createElementBlock("div",
|
|
2889
|
+
item.id ? (openBlock(), createElementBlock("div", _hoisted_15$2, [
|
|
2814
2890
|
createElementVNode("div", {
|
|
2815
2891
|
onClick: ($event) => gotoTrade(item)
|
|
2816
|
-
}, "\u8D85\u503C\u6362\u8D2D", 8,
|
|
2817
|
-
|
|
2818
|
-
"img",
|
|
2819
|
-
{
|
|
2820
|
-
class: "button-icon",
|
|
2821
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
|
|
2822
|
-
},
|
|
2823
|
-
null,
|
|
2824
|
-
-1
|
|
2825
|
-
/* HOISTED */
|
|
2826
|
-
))
|
|
2892
|
+
}, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_16$2),
|
|
2893
|
+
_hoisted_17$1
|
|
2827
2894
|
])) : createCommentVNode("v-if", true)
|
|
2828
2895
|
])
|
|
2829
2896
|
]);
|
|
@@ -2833,15 +2900,9 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2833
2900
|
))
|
|
2834
2901
|
])
|
|
2835
2902
|
])) : createCommentVNode("v-if", true),
|
|
2836
|
-
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div",
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
{ class: "title" },
|
|
2840
|
-
"AI\u5BA1\u6279\u6743\u76CA",
|
|
2841
|
-
-1
|
|
2842
|
-
/* HOISTED */
|
|
2843
|
-
)),
|
|
2844
|
-
createElementVNode("div", _hoisted_14$1, [
|
|
2903
|
+
balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
|
|
2904
|
+
_hoisted_19$1,
|
|
2905
|
+
createElementVNode("div", _hoisted_20$1, [
|
|
2845
2906
|
(openBlock(true), createElementBlock(
|
|
2846
2907
|
Fragment,
|
|
2847
2908
|
null,
|
|
@@ -2852,14 +2913,14 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2852
2913
|
}, [
|
|
2853
2914
|
createElementVNode(
|
|
2854
2915
|
"div",
|
|
2855
|
-
|
|
2916
|
+
_hoisted_21$1,
|
|
2856
2917
|
toDisplayString(item.count) + toDisplayString(item.unit),
|
|
2857
2918
|
1
|
|
2858
2919
|
/* TEXT */
|
|
2859
2920
|
),
|
|
2860
2921
|
createElementVNode(
|
|
2861
2922
|
"div",
|
|
2862
|
-
|
|
2923
|
+
_hoisted_22$1,
|
|
2863
2924
|
toDisplayString(item.title),
|
|
2864
2925
|
1
|
|
2865
2926
|
/* TEXT */
|
|
@@ -2935,21 +2996,15 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2935
2996
|
title: "\u6536\u652F\u660E\u7EC6"
|
|
2936
2997
|
}, {
|
|
2937
2998
|
default: withCtx(() => [
|
|
2938
|
-
createElementVNode("div",
|
|
2999
|
+
createElementVNode("div", _hoisted_23$1, [
|
|
2939
3000
|
createElementVNode(
|
|
2940
3001
|
"div",
|
|
2941
3002
|
{
|
|
2942
3003
|
class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
|
|
2943
3004
|
},
|
|
2944
3005
|
[
|
|
2945
|
-
createElementVNode("div",
|
|
2946
|
-
|
|
2947
|
-
"div",
|
|
2948
|
-
{ class: "title" },
|
|
2949
|
-
"\u6536\u652F\u660E\u7EC6",
|
|
2950
|
-
-1
|
|
2951
|
-
/* HOISTED */
|
|
2952
|
-
)),
|
|
3006
|
+
createElementVNode("div", _hoisted_24$1, [
|
|
3007
|
+
_hoisted_25$1,
|
|
2953
3008
|
withDirectives(createElementVNode(
|
|
2954
3009
|
"div",
|
|
2955
3010
|
{
|
|
@@ -2959,22 +3014,12 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2959
3014
|
[
|
|
2960
3015
|
createElementVNode(
|
|
2961
3016
|
"div",
|
|
2962
|
-
|
|
3017
|
+
_hoisted_26,
|
|
2963
3018
|
toDisplayString(dateRangeDisplay.value),
|
|
2964
3019
|
1
|
|
2965
3020
|
/* TEXT */
|
|
2966
3021
|
),
|
|
2967
|
-
|
|
2968
|
-
"img",
|
|
2969
|
-
{
|
|
2970
|
-
style: { "margin-top": "-2px" },
|
|
2971
|
-
class: "time-icon",
|
|
2972
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
2973
|
-
},
|
|
2974
|
-
null,
|
|
2975
|
-
-1
|
|
2976
|
-
/* HOISTED */
|
|
2977
|
-
))
|
|
3022
|
+
_hoisted_27
|
|
2978
3023
|
],
|
|
2979
3024
|
512
|
|
2980
3025
|
/* NEED_PATCH */
|
|
@@ -2985,30 +3030,12 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
2985
3030
|
createElementVNode("div", {
|
|
2986
3031
|
class: "search",
|
|
2987
3032
|
onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
|
|
2988
|
-
},
|
|
2989
|
-
createElementVNode(
|
|
2990
|
-
"span",
|
|
2991
|
-
{ class: "text" },
|
|
2992
|
-
"\u7B5B\u9009",
|
|
2993
|
-
-1
|
|
2994
|
-
/* HOISTED */
|
|
2995
|
-
),
|
|
2996
|
-
createElementVNode(
|
|
2997
|
-
"img",
|
|
2998
|
-
{
|
|
2999
|
-
class: "time-icon",
|
|
3000
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3001
|
-
},
|
|
3002
|
-
null,
|
|
3003
|
-
-1
|
|
3004
|
-
/* HOISTED */
|
|
3005
|
-
)
|
|
3006
|
-
]))
|
|
3033
|
+
}, [..._hoisted_30])
|
|
3007
3034
|
],
|
|
3008
3035
|
2
|
|
3009
3036
|
/* CLASS */
|
|
3010
3037
|
),
|
|
3011
|
-
createElementVNode("div",
|
|
3038
|
+
createElementVNode("div", _hoisted_31, [
|
|
3012
3039
|
createVNode(_component_scroll_view, {
|
|
3013
3040
|
class: "operation-scroll",
|
|
3014
3041
|
"scroll-y": true,
|
|
@@ -3017,7 +3044,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3017
3044
|
onScrolltolower: onReachBottom
|
|
3018
3045
|
}, {
|
|
3019
3046
|
default: withCtx(() => [
|
|
3020
|
-
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div",
|
|
3047
|
+
consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_32, [
|
|
3021
3048
|
(openBlock(true), createElementBlock(
|
|
3022
3049
|
Fragment,
|
|
3023
3050
|
null,
|
|
@@ -3028,7 +3055,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3028
3055
|
}, [
|
|
3029
3056
|
createElementVNode(
|
|
3030
3057
|
"div",
|
|
3031
|
-
|
|
3058
|
+
_hoisted_33,
|
|
3032
3059
|
toDisplayString(item.date),
|
|
3033
3060
|
1
|
|
3034
3061
|
/* TEXT */
|
|
@@ -3043,24 +3070,24 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3043
3070
|
}, [
|
|
3044
3071
|
createElementVNode(
|
|
3045
3072
|
"div",
|
|
3046
|
-
|
|
3073
|
+
_hoisted_34,
|
|
3047
3074
|
toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
|
|
3048
3075
|
1
|
|
3049
3076
|
/* TEXT */
|
|
3050
3077
|
),
|
|
3051
|
-
createElementVNode("div",
|
|
3052
|
-
createElementVNode("div",
|
|
3078
|
+
createElementVNode("div", _hoisted_35, [
|
|
3079
|
+
createElementVNode("div", _hoisted_36, [
|
|
3053
3080
|
createElementVNode("div", null, [
|
|
3054
3081
|
createElementVNode(
|
|
3055
3082
|
"div",
|
|
3056
|
-
|
|
3083
|
+
_hoisted_37,
|
|
3057
3084
|
toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
|
|
3058
3085
|
1
|
|
3059
3086
|
/* TEXT */
|
|
3060
3087
|
),
|
|
3061
3088
|
createElementVNode(
|
|
3062
3089
|
"div",
|
|
3063
|
-
|
|
3090
|
+
_hoisted_38,
|
|
3064
3091
|
toDisplayString(it.title),
|
|
3065
3092
|
1
|
|
3066
3093
|
/* TEXT */
|
|
@@ -3068,7 +3095,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3068
3095
|
]),
|
|
3069
3096
|
createElementVNode(
|
|
3070
3097
|
"div",
|
|
3071
|
-
|
|
3098
|
+
_hoisted_39,
|
|
3072
3099
|
toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
|
|
3073
3100
|
1
|
|
3074
3101
|
/* TEXT */
|
|
@@ -3076,7 +3103,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3076
3103
|
]),
|
|
3077
3104
|
createElementVNode(
|
|
3078
3105
|
"div",
|
|
3079
|
-
|
|
3106
|
+
_hoisted_40,
|
|
3080
3107
|
toDisplayString(it.description),
|
|
3081
3108
|
1
|
|
3082
3109
|
/* TEXT */
|
|
@@ -3092,7 +3119,7 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3092
3119
|
128
|
|
3093
3120
|
/* KEYED_FRAGMENT */
|
|
3094
3121
|
)),
|
|
3095
|
-
reachedLastPage.value ? (openBlock(), createElementBlock("div",
|
|
3122
|
+
reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_41, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
3096
3123
|
])) : (openBlock(), createBlock(script$r, { key: 1 }))
|
|
3097
3124
|
]),
|
|
3098
3125
|
_: 1
|
|
@@ -3114,10 +3141,20 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3114
3141
|
|
|
3115
3142
|
script$p.__file = "src/balance/components/AccountView.vue";
|
|
3116
3143
|
|
|
3117
|
-
const _hoisted_1$
|
|
3118
|
-
const _hoisted_2$
|
|
3119
|
-
|
|
3120
|
-
|
|
3144
|
+
const _hoisted_1$n = { class: "balance-reminder" };
|
|
3145
|
+
const _hoisted_2$j = /* @__PURE__ */ createElementVNode(
|
|
3146
|
+
"div",
|
|
3147
|
+
{ class: "body" },
|
|
3148
|
+
[
|
|
3149
|
+
/* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3150
|
+
/* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3151
|
+
],
|
|
3152
|
+
-1
|
|
3153
|
+
/* HOISTED */
|
|
3154
|
+
);
|
|
3155
|
+
const _hoisted_3$f = { class: "footer" };
|
|
3156
|
+
const _hoisted_4$b = { class: "col" };
|
|
3157
|
+
const _hoisted_5$a = { class: "col" };
|
|
3121
3158
|
var script$o = /* @__PURE__ */ defineComponent({
|
|
3122
3159
|
__name: "BalanceReminder",
|
|
3123
3160
|
props: {
|
|
@@ -3138,32 +3175,23 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3138
3175
|
"close-on-click-overlay": false
|
|
3139
3176
|
}, {
|
|
3140
3177
|
default: withCtx(() => [
|
|
3141
|
-
createElementVNode("div", _hoisted_1$
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
[
|
|
3146
|
-
createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
|
|
3147
|
-
createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
|
|
3148
|
-
],
|
|
3149
|
-
-1
|
|
3150
|
-
/* HOISTED */
|
|
3151
|
-
)),
|
|
3152
|
-
createElementVNode("div", _hoisted_2$e, [
|
|
3153
|
-
createElementVNode("div", _hoisted_3$9, [
|
|
3178
|
+
createElementVNode("div", _hoisted_1$n, [
|
|
3179
|
+
_hoisted_2$j,
|
|
3180
|
+
createElementVNode("div", _hoisted_3$f, [
|
|
3181
|
+
createElementVNode("div", _hoisted_4$b, [
|
|
3154
3182
|
createVNode(_component_nut_button, {
|
|
3155
3183
|
class: "cancel-button",
|
|
3156
3184
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
|
|
3157
3185
|
block: ""
|
|
3158
3186
|
}, {
|
|
3159
|
-
default: withCtx(() =>
|
|
3187
|
+
default: withCtx(() => [
|
|
3160
3188
|
createTextVNode("\u53D6\u6D88")
|
|
3161
|
-
])
|
|
3189
|
+
]),
|
|
3162
3190
|
_: 1
|
|
3163
3191
|
/* STABLE */
|
|
3164
3192
|
})
|
|
3165
3193
|
]),
|
|
3166
|
-
createElementVNode("div",
|
|
3194
|
+
createElementVNode("div", _hoisted_5$a, [
|
|
3167
3195
|
createVNode(_component_nut_button, {
|
|
3168
3196
|
block: "",
|
|
3169
3197
|
class: "recharge-button",
|
|
@@ -3192,7 +3220,18 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3192
3220
|
|
|
3193
3221
|
script$o.__file = "src/balance/components/BalanceReminder.vue";
|
|
3194
3222
|
|
|
3195
|
-
const _hoisted_1$
|
|
3223
|
+
const _hoisted_1$m = { class: "text" };
|
|
3224
|
+
const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
|
|
3225
|
+
"img",
|
|
3226
|
+
{
|
|
3227
|
+
style: { "margin-top": "-2px" },
|
|
3228
|
+
class: "time-icon",
|
|
3229
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3230
|
+
},
|
|
3231
|
+
null,
|
|
3232
|
+
-1
|
|
3233
|
+
/* HOISTED */
|
|
3234
|
+
);
|
|
3196
3235
|
var script$n = /* @__PURE__ */ defineComponent({
|
|
3197
3236
|
__name: "DateRange",
|
|
3198
3237
|
props: {
|
|
@@ -3211,17 +3250,12 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3211
3250
|
const $n = useNutshell();
|
|
3212
3251
|
const model = useModel(__props, "modelValue");
|
|
3213
3252
|
const openDateRangePicker = () => {
|
|
3214
|
-
const child = ref();
|
|
3215
3253
|
$n.sheet({
|
|
3216
3254
|
component: script$t,
|
|
3217
|
-
ref: child,
|
|
3218
3255
|
props: {
|
|
3219
3256
|
from: model.value.from,
|
|
3220
3257
|
to: model.value.to
|
|
3221
3258
|
},
|
|
3222
|
-
modal: true,
|
|
3223
|
-
// 不允许点击 overlay 关闭弹窗
|
|
3224
|
-
mask: true,
|
|
3225
3259
|
onComplete(result) {
|
|
3226
3260
|
model.value = {
|
|
3227
3261
|
from: result.from,
|
|
@@ -3242,22 +3276,12 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3242
3276
|
}, [
|
|
3243
3277
|
createElementVNode(
|
|
3244
3278
|
"div",
|
|
3245
|
-
_hoisted_1$
|
|
3279
|
+
_hoisted_1$m,
|
|
3246
3280
|
toDisplayString(dateRangeDisplay.value),
|
|
3247
3281
|
1
|
|
3248
3282
|
/* TEXT */
|
|
3249
3283
|
),
|
|
3250
|
-
|
|
3251
|
-
"img",
|
|
3252
|
-
{
|
|
3253
|
-
style: { "margin-top": "-2px" },
|
|
3254
|
-
class: "time-icon",
|
|
3255
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3256
|
-
},
|
|
3257
|
-
null,
|
|
3258
|
-
-1
|
|
3259
|
-
/* HOISTED */
|
|
3260
|
-
))
|
|
3284
|
+
_hoisted_2$i
|
|
3261
3285
|
]);
|
|
3262
3286
|
};
|
|
3263
3287
|
}
|
|
@@ -3265,11 +3289,27 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3265
3289
|
|
|
3266
3290
|
script$n.__file = "src/balance/components/DateRange.vue";
|
|
3267
3291
|
|
|
3268
|
-
const _hoisted_1$
|
|
3269
|
-
const _hoisted_2$
|
|
3270
|
-
|
|
3271
|
-
|
|
3272
|
-
|
|
3292
|
+
const _hoisted_1$l = { class: "list-filter-picker" };
|
|
3293
|
+
const _hoisted_2$h = /* @__PURE__ */ createElementVNode(
|
|
3294
|
+
"div",
|
|
3295
|
+
{ class: "list-filter-picker-title" },
|
|
3296
|
+
[
|
|
3297
|
+
/* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3298
|
+
],
|
|
3299
|
+
-1
|
|
3300
|
+
/* HOISTED */
|
|
3301
|
+
);
|
|
3302
|
+
const _hoisted_3$e = { class: "consumption-filter-content" };
|
|
3303
|
+
const _hoisted_4$a = { class: "title" };
|
|
3304
|
+
const _hoisted_5$9 = { class: "info" };
|
|
3305
|
+
const _hoisted_6$6 = ["onClick"];
|
|
3306
|
+
const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
|
|
3307
|
+
"div",
|
|
3308
|
+
{ class: "consumption-filter-bottom" },
|
|
3309
|
+
null,
|
|
3310
|
+
-1
|
|
3311
|
+
/* HOISTED */
|
|
3312
|
+
);
|
|
3273
3313
|
var script$m = /* @__PURE__ */ defineComponent({
|
|
3274
3314
|
__name: "ListFilterPicker",
|
|
3275
3315
|
props: {
|
|
@@ -3316,17 +3356,9 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3316
3356
|
emit("complete", result);
|
|
3317
3357
|
};
|
|
3318
3358
|
return (_ctx, _cache) => {
|
|
3319
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
{ class: "list-filter-picker-title" },
|
|
3323
|
-
[
|
|
3324
|
-
createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
|
|
3325
|
-
],
|
|
3326
|
-
-1
|
|
3327
|
-
/* HOISTED */
|
|
3328
|
-
)),
|
|
3329
|
-
createElementVNode("div", _hoisted_2$d, [
|
|
3359
|
+
return openBlock(), createElementBlock("div", _hoisted_1$l, [
|
|
3360
|
+
_hoisted_2$h,
|
|
3361
|
+
createElementVNode("div", _hoisted_3$e, [
|
|
3330
3362
|
(openBlock(true), createElementBlock(
|
|
3331
3363
|
Fragment,
|
|
3332
3364
|
null,
|
|
@@ -3337,12 +3369,12 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3337
3369
|
[
|
|
3338
3370
|
createElementVNode(
|
|
3339
3371
|
"div",
|
|
3340
|
-
|
|
3372
|
+
_hoisted_4$a,
|
|
3341
3373
|
toDisplayString(item.label),
|
|
3342
3374
|
1
|
|
3343
3375
|
/* TEXT */
|
|
3344
3376
|
),
|
|
3345
|
-
createElementVNode("div",
|
|
3377
|
+
createElementVNode("div", _hoisted_5$9, [
|
|
3346
3378
|
(openBlock(true), createElementBlock(
|
|
3347
3379
|
Fragment,
|
|
3348
3380
|
null,
|
|
@@ -3351,7 +3383,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3351
3383
|
onClick: () => onFilterSectionClick(item.name, it.value),
|
|
3352
3384
|
class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
|
|
3353
3385
|
key: i
|
|
3354
|
-
}, toDisplayString(typeof it === "string" ? it : it.label), 11,
|
|
3386
|
+
}, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_6$6);
|
|
3355
3387
|
}),
|
|
3356
3388
|
128
|
|
3357
3389
|
/* KEYED_FRAGMENT */
|
|
@@ -3376,13 +3408,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3376
3408
|
onClick: onOkClick
|
|
3377
3409
|
}, "\u786E\u5B9A")
|
|
3378
3410
|
]),
|
|
3379
|
-
|
|
3380
|
-
"div",
|
|
3381
|
-
{ class: "consumption-filter-bottom" },
|
|
3382
|
-
null,
|
|
3383
|
-
-1
|
|
3384
|
-
/* HOISTED */
|
|
3385
|
-
))
|
|
3411
|
+
_hoisted_7$4
|
|
3386
3412
|
]);
|
|
3387
3413
|
};
|
|
3388
3414
|
}
|
|
@@ -3390,6 +3416,27 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3390
3416
|
|
|
3391
3417
|
script$m.__file = "src/balance/components/ListFilterPicker.vue";
|
|
3392
3418
|
|
|
3419
|
+
const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
|
|
3420
|
+
"span",
|
|
3421
|
+
{ class: "text" },
|
|
3422
|
+
"\u7B5B\u9009",
|
|
3423
|
+
-1
|
|
3424
|
+
/* HOISTED */
|
|
3425
|
+
);
|
|
3426
|
+
const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
|
|
3427
|
+
"img",
|
|
3428
|
+
{
|
|
3429
|
+
class: "icon",
|
|
3430
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3431
|
+
},
|
|
3432
|
+
null,
|
|
3433
|
+
-1
|
|
3434
|
+
/* HOISTED */
|
|
3435
|
+
);
|
|
3436
|
+
const _hoisted_3$d = [
|
|
3437
|
+
_hoisted_1$k,
|
|
3438
|
+
_hoisted_2$g
|
|
3439
|
+
];
|
|
3393
3440
|
var script$l = /* @__PURE__ */ defineComponent({
|
|
3394
3441
|
__name: "ListFilter",
|
|
3395
3442
|
props: {
|
|
@@ -3424,31 +3471,23 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
3424
3471
|
return openBlock(), createElementBlock("div", {
|
|
3425
3472
|
class: "list-filter",
|
|
3426
3473
|
onClick: openPicker
|
|
3427
|
-
},
|
|
3428
|
-
createElementVNode(
|
|
3429
|
-
"span",
|
|
3430
|
-
{ class: "text" },
|
|
3431
|
-
"\u7B5B\u9009",
|
|
3432
|
-
-1
|
|
3433
|
-
/* HOISTED */
|
|
3434
|
-
),
|
|
3435
|
-
createElementVNode(
|
|
3436
|
-
"img",
|
|
3437
|
-
{
|
|
3438
|
-
class: "icon",
|
|
3439
|
-
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
|
|
3440
|
-
},
|
|
3441
|
-
null,
|
|
3442
|
-
-1
|
|
3443
|
-
/* HOISTED */
|
|
3444
|
-
)
|
|
3445
|
-
]));
|
|
3474
|
+
}, [..._hoisted_3$d]);
|
|
3446
3475
|
};
|
|
3447
3476
|
}
|
|
3448
3477
|
});
|
|
3449
3478
|
|
|
3450
3479
|
script$l.__file = "src/balance/components/ListFilter.vue";
|
|
3451
3480
|
|
|
3481
|
+
const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
|
|
3482
|
+
"img",
|
|
3483
|
+
{
|
|
3484
|
+
class: "ocr-id__img",
|
|
3485
|
+
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3486
|
+
},
|
|
3487
|
+
null,
|
|
3488
|
+
-1
|
|
3489
|
+
/* HOISTED */
|
|
3490
|
+
);
|
|
3452
3491
|
var script$k = /* @__PURE__ */ defineComponent({
|
|
3453
3492
|
__name: "index",
|
|
3454
3493
|
emits: ["ocr"],
|
|
@@ -3538,16 +3577,7 @@ var script$k = /* @__PURE__ */ defineComponent({
|
|
|
3538
3577
|
onClick: ocrIDCard
|
|
3539
3578
|
}, [
|
|
3540
3579
|
renderSlot(_ctx.$slots, "icon", {}, () => [
|
|
3541
|
-
|
|
3542
|
-
"img",
|
|
3543
|
-
{
|
|
3544
|
-
class: "ocr-id__img",
|
|
3545
|
-
src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
|
|
3546
|
-
},
|
|
3547
|
-
null,
|
|
3548
|
-
-1
|
|
3549
|
-
/* HOISTED */
|
|
3550
|
-
))
|
|
3580
|
+
_hoisted_1$j
|
|
3551
3581
|
])
|
|
3552
3582
|
]);
|
|
3553
3583
|
};
|
|
@@ -3586,7 +3616,7 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
3586
3616
|
|
|
3587
3617
|
script$j.__file = "src/components/dd-icon/index.vue";
|
|
3588
3618
|
|
|
3589
|
-
const _hoisted_1$
|
|
3619
|
+
const _hoisted_1$i = { class: "dd-area" };
|
|
3590
3620
|
var script$i = /* @__PURE__ */ defineComponent({
|
|
3591
3621
|
__name: "index",
|
|
3592
3622
|
props: {
|
|
@@ -3746,7 +3776,7 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3746
3776
|
disabled: props.disabled
|
|
3747
3777
|
}, {
|
|
3748
3778
|
default: withCtx(() => [
|
|
3749
|
-
createElementVNode("div", _hoisted_1$
|
|
3779
|
+
createElementVNode("div", _hoisted_1$i, [
|
|
3750
3780
|
createElementVNode(
|
|
3751
3781
|
"div",
|
|
3752
3782
|
{
|
|
@@ -3776,8 +3806,8 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
3776
3806
|
|
|
3777
3807
|
script$i.__file = "src/components/dd-area/index.vue";
|
|
3778
3808
|
|
|
3779
|
-
const _hoisted_1$
|
|
3780
|
-
const _hoisted_2$
|
|
3809
|
+
const _hoisted_1$h = { class: "dd-selector" };
|
|
3810
|
+
const _hoisted_2$f = { class: "dd-selector-value" };
|
|
3781
3811
|
var script$h = /* @__PURE__ */ defineComponent({
|
|
3782
3812
|
__name: "index",
|
|
3783
3813
|
props: {
|
|
@@ -3838,8 +3868,8 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3838
3868
|
}, {
|
|
3839
3869
|
default: withCtx(() => [
|
|
3840
3870
|
renderSlot(_ctx.$slots, "content", {}, () => [
|
|
3841
|
-
createElementVNode("div", _hoisted_1$
|
|
3842
|
-
createElementVNode("div", _hoisted_2$
|
|
3871
|
+
createElementVNode("div", _hoisted_1$h, [
|
|
3872
|
+
createElementVNode("div", _hoisted_2$f, [
|
|
3843
3873
|
createElementVNode(
|
|
3844
3874
|
"div",
|
|
3845
3875
|
{
|
|
@@ -3876,11 +3906,11 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
3876
3906
|
|
|
3877
3907
|
script$h.__file = "src/components/dd-selector/index.vue";
|
|
3878
3908
|
|
|
3879
|
-
const _hoisted_1$
|
|
3880
|
-
const _hoisted_2$
|
|
3881
|
-
const _hoisted_3$
|
|
3882
|
-
const _hoisted_4$
|
|
3883
|
-
const _hoisted_5$
|
|
3909
|
+
const _hoisted_1$g = { class: "self-registration" };
|
|
3910
|
+
const _hoisted_2$e = { class: "self-registration-body" };
|
|
3911
|
+
const _hoisted_3$c = ["src"];
|
|
3912
|
+
const _hoisted_4$9 = { class: "self-registration__input" };
|
|
3913
|
+
const _hoisted_5$8 = { class: "self-registration-bottom" };
|
|
3884
3914
|
var script$g = /* @__PURE__ */ defineComponent({
|
|
3885
3915
|
__name: "SelfRegistration",
|
|
3886
3916
|
props: {
|
|
@@ -3983,13 +4013,13 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
3983
4013
|
const _component_nut_form_item = FormItem;
|
|
3984
4014
|
const _component_nut_form = Form;
|
|
3985
4015
|
const _component_nut_button = Button;
|
|
3986
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3987
|
-
createElementVNode("div", _hoisted_2$
|
|
4016
|
+
return openBlock(), createElementBlock("div", _hoisted_1$g, [
|
|
4017
|
+
createElementVNode("div", _hoisted_2$e, [
|
|
3988
4018
|
createElementVNode("img", {
|
|
3989
4019
|
src: _ctx.banner,
|
|
3990
4020
|
class: "self-registration-banner",
|
|
3991
4021
|
alt: ""
|
|
3992
|
-
}, null, 8, _hoisted_3$
|
|
4022
|
+
}, null, 8, _hoisted_3$c),
|
|
3993
4023
|
createVNode(_component_nut_form, null, {
|
|
3994
4024
|
default: withCtx(() => [
|
|
3995
4025
|
createVNode(_component_nut_form_item, {
|
|
@@ -4005,16 +4035,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4005
4035
|
}, {
|
|
4006
4036
|
default: withCtx(() => [
|
|
4007
4037
|
createVNode(_component_nut_radio, { label: "person" }, {
|
|
4008
|
-
default: withCtx(() =>
|
|
4038
|
+
default: withCtx(() => [
|
|
4009
4039
|
createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
|
|
4010
|
-
])
|
|
4040
|
+
]),
|
|
4011
4041
|
_: 1
|
|
4012
4042
|
/* STABLE */
|
|
4013
4043
|
}),
|
|
4014
4044
|
createVNode(_component_nut_radio, { label: "company" }, {
|
|
4015
|
-
default: withCtx(() =>
|
|
4045
|
+
default: withCtx(() => [
|
|
4016
4046
|
createTextVNode("\u516C\u53F8\u4F7F\u7528")
|
|
4017
|
-
])
|
|
4047
|
+
]),
|
|
4018
4048
|
_: 1
|
|
4019
4049
|
/* STABLE */
|
|
4020
4050
|
})
|
|
@@ -4031,7 +4061,7 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4031
4061
|
required: ""
|
|
4032
4062
|
}, {
|
|
4033
4063
|
default: withCtx(() => [
|
|
4034
|
-
createElementVNode("div", _hoisted_4$
|
|
4064
|
+
createElementVNode("div", _hoisted_4$9, [
|
|
4035
4065
|
withDirectives(createElementVNode(
|
|
4036
4066
|
"input",
|
|
4037
4067
|
{
|
|
@@ -4170,16 +4200,16 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
4170
4200
|
/* STABLE */
|
|
4171
4201
|
})
|
|
4172
4202
|
]),
|
|
4173
|
-
createElementVNode("div", _hoisted_5$
|
|
4203
|
+
createElementVNode("div", _hoisted_5$8, [
|
|
4174
4204
|
createVNode(_component_nut_button, {
|
|
4175
4205
|
block: "",
|
|
4176
4206
|
type: "primary",
|
|
4177
4207
|
class: "experience-button",
|
|
4178
4208
|
onClick: submit
|
|
4179
4209
|
}, {
|
|
4180
|
-
default: withCtx(() =>
|
|
4210
|
+
default: withCtx(() => [
|
|
4181
4211
|
createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
|
|
4182
|
-
])
|
|
4212
|
+
]),
|
|
4183
4213
|
_: 1
|
|
4184
4214
|
/* STABLE */
|
|
4185
4215
|
})
|
|
@@ -4266,8 +4296,22 @@ function useHttp$1() {
|
|
|
4266
4296
|
return $http;
|
|
4267
4297
|
}
|
|
4268
4298
|
|
|
4269
|
-
const _hoisted_1$
|
|
4270
|
-
|
|
4299
|
+
const _hoisted_1$f = /* @__PURE__ */ createElementVNode(
|
|
4300
|
+
"div",
|
|
4301
|
+
{ class: "notice-popup-hd" },
|
|
4302
|
+
[
|
|
4303
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
4304
|
+
class: "notice-popup-hd-icon",
|
|
4305
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4306
|
+
alt: ""
|
|
4307
|
+
}),
|
|
4308
|
+
/* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4309
|
+
],
|
|
4310
|
+
-1
|
|
4311
|
+
/* HOISTED */
|
|
4312
|
+
);
|
|
4313
|
+
const _hoisted_2$d = { class: "notice-popup-bd" };
|
|
4314
|
+
const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
|
|
4271
4315
|
var script$f = /* @__PURE__ */ defineComponent({
|
|
4272
4316
|
__name: "NoticePopup",
|
|
4273
4317
|
props: {
|
|
@@ -4308,24 +4352,11 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
4308
4352
|
round: ""
|
|
4309
4353
|
}, {
|
|
4310
4354
|
default: withCtx(() => [
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
{ class: "notice-popup-hd" },
|
|
4314
|
-
[
|
|
4315
|
-
createElementVNode("img", {
|
|
4316
|
-
class: "notice-popup-hd-icon",
|
|
4317
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
|
|
4318
|
-
alt: ""
|
|
4319
|
-
}),
|
|
4320
|
-
createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
4321
|
-
],
|
|
4322
|
-
-1
|
|
4323
|
-
/* HOISTED */
|
|
4324
|
-
)),
|
|
4325
|
-
createElementVNode("div", _hoisted_1$e, [
|
|
4355
|
+
_hoisted_1$f,
|
|
4356
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
4326
4357
|
createElementVNode(
|
|
4327
4358
|
"div",
|
|
4328
|
-
|
|
4359
|
+
_hoisted_3$b,
|
|
4329
4360
|
toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
|
|
4330
4361
|
1
|
|
4331
4362
|
/* TEXT */
|
|
@@ -4378,8 +4409,19 @@ function useNotice() {
|
|
|
4378
4409
|
};
|
|
4379
4410
|
}
|
|
4380
4411
|
|
|
4381
|
-
const _hoisted_1$
|
|
4382
|
-
|
|
4412
|
+
const _hoisted_1$e = /* @__PURE__ */ createElementVNode(
|
|
4413
|
+
"img",
|
|
4414
|
+
{
|
|
4415
|
+
class: "notice-banner-icon",
|
|
4416
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4417
|
+
alt: ""
|
|
4418
|
+
},
|
|
4419
|
+
null,
|
|
4420
|
+
-1
|
|
4421
|
+
/* HOISTED */
|
|
4422
|
+
);
|
|
4423
|
+
const _hoisted_2$c = { class: "notice-banner-text" };
|
|
4424
|
+
const _hoisted_3$a = ["onClick"];
|
|
4383
4425
|
var script$e = /* @__PURE__ */ defineComponent({
|
|
4384
4426
|
__name: "NoticeBanner",
|
|
4385
4427
|
props: {
|
|
@@ -4511,20 +4553,10 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4511
4553
|
onClose: ($event) => unref(onClose)(item, key)
|
|
4512
4554
|
}, {
|
|
4513
4555
|
default: withCtx(() => [
|
|
4514
|
-
|
|
4515
|
-
"img",
|
|
4516
|
-
{
|
|
4517
|
-
class: "notice-banner-icon",
|
|
4518
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
|
|
4519
|
-
alt: ""
|
|
4520
|
-
},
|
|
4521
|
-
null,
|
|
4522
|
-
-1
|
|
4523
|
-
/* HOISTED */
|
|
4524
|
-
)),
|
|
4556
|
+
_hoisted_1$e,
|
|
4525
4557
|
createElementVNode(
|
|
4526
4558
|
"div",
|
|
4527
|
-
|
|
4559
|
+
_hoisted_2$c,
|
|
4528
4560
|
toDisplayString(item.context),
|
|
4529
4561
|
1
|
|
4530
4562
|
/* TEXT */
|
|
@@ -4532,7 +4564,7 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4532
4564
|
createElementVNode("div", {
|
|
4533
4565
|
class: "notice-banner-btn",
|
|
4534
4566
|
onClick: ($event) => onDetail(item)
|
|
4535
|
-
}, "\u8BE6\u60C5", 8,
|
|
4567
|
+
}, "\u8BE6\u60C5", 8, _hoisted_3$a)
|
|
4536
4568
|
]),
|
|
4537
4569
|
_: 2
|
|
4538
4570
|
/* DYNAMIC */
|
|
@@ -4570,8 +4602,26 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
4570
4602
|
|
|
4571
4603
|
script$e.__file = "src/notice/components/NoticeBanner.vue";
|
|
4572
4604
|
|
|
4573
|
-
const _hoisted_1$
|
|
4574
|
-
const _hoisted_2$
|
|
4605
|
+
const _hoisted_1$d = { class: "notice-entry" };
|
|
4606
|
+
const _hoisted_2$b = /* @__PURE__ */ createElementVNode(
|
|
4607
|
+
"img",
|
|
4608
|
+
{
|
|
4609
|
+
class: "notice-entry-img",
|
|
4610
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4611
|
+
alt: ""
|
|
4612
|
+
},
|
|
4613
|
+
null,
|
|
4614
|
+
-1
|
|
4615
|
+
/* HOISTED */
|
|
4616
|
+
);
|
|
4617
|
+
const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
|
|
4618
|
+
"span",
|
|
4619
|
+
null,
|
|
4620
|
+
"\u901A\u77E5",
|
|
4621
|
+
-1
|
|
4622
|
+
/* HOISTED */
|
|
4623
|
+
);
|
|
4624
|
+
const _hoisted_4$8 = {
|
|
4575
4625
|
key: 0,
|
|
4576
4626
|
class: "notice-entry-icon"
|
|
4577
4627
|
};
|
|
@@ -4611,26 +4661,10 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4611
4661
|
});
|
|
4612
4662
|
}
|
|
4613
4663
|
return (_ctx, _cache) => {
|
|
4614
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4615
|
-
|
|
4616
|
-
|
|
4617
|
-
|
|
4618
|
-
class: "notice-entry-img",
|
|
4619
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
|
|
4620
|
-
alt: ""
|
|
4621
|
-
},
|
|
4622
|
-
null,
|
|
4623
|
-
-1
|
|
4624
|
-
/* HOISTED */
|
|
4625
|
-
)),
|
|
4626
|
-
_cache[1] || (_cache[1] = createElementVNode(
|
|
4627
|
-
"span",
|
|
4628
|
-
null,
|
|
4629
|
-
"\u901A\u77E5",
|
|
4630
|
-
-1
|
|
4631
|
-
/* HOISTED */
|
|
4632
|
-
)),
|
|
4633
|
-
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
|
|
4664
|
+
return openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
4665
|
+
_hoisted_2$b,
|
|
4666
|
+
_hoisted_3$9,
|
|
4667
|
+
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_4$8)) : createCommentVNode("v-if", true)
|
|
4634
4668
|
]);
|
|
4635
4669
|
};
|
|
4636
4670
|
}
|
|
@@ -4638,9 +4672,34 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
4638
4672
|
|
|
4639
4673
|
script$d.__file = "src/notice/components/NoticeEntry.vue";
|
|
4640
4674
|
|
|
4641
|
-
const _hoisted_1$
|
|
4642
|
-
const _hoisted_2$
|
|
4643
|
-
|
|
4675
|
+
const _hoisted_1$c = { class: "dd-search__form" };
|
|
4676
|
+
const _hoisted_2$a = /* @__PURE__ */ createElementVNode(
|
|
4677
|
+
"div",
|
|
4678
|
+
{ class: "dd-search__prefix" },
|
|
4679
|
+
[
|
|
4680
|
+
/* @__PURE__ */ createElementVNode("image", {
|
|
4681
|
+
class: "full-img",
|
|
4682
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4683
|
+
})
|
|
4684
|
+
],
|
|
4685
|
+
-1
|
|
4686
|
+
/* HOISTED */
|
|
4687
|
+
);
|
|
4688
|
+
const _hoisted_3$8 = { class: "dd-search__control" };
|
|
4689
|
+
const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
|
|
4690
|
+
const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
|
|
4691
|
+
"image",
|
|
4692
|
+
{
|
|
4693
|
+
class: "full-img",
|
|
4694
|
+
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4695
|
+
},
|
|
4696
|
+
null,
|
|
4697
|
+
-1
|
|
4698
|
+
/* HOISTED */
|
|
4699
|
+
);
|
|
4700
|
+
const _hoisted_6$5 = [
|
|
4701
|
+
_hoisted_5$7
|
|
4702
|
+
];
|
|
4644
4703
|
var script$c = /* @__PURE__ */ defineComponent({
|
|
4645
4704
|
__name: "index",
|
|
4646
4705
|
props: {
|
|
@@ -4694,20 +4753,9 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4694
4753
|
}])
|
|
4695
4754
|
},
|
|
4696
4755
|
[
|
|
4697
|
-
createElementVNode("div", _hoisted_1$
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
{ class: "dd-search__prefix" },
|
|
4701
|
-
[
|
|
4702
|
-
createElementVNode("image", {
|
|
4703
|
-
class: "full-img",
|
|
4704
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
|
|
4705
|
-
})
|
|
4706
|
-
],
|
|
4707
|
-
-1
|
|
4708
|
-
/* HOISTED */
|
|
4709
|
-
)),
|
|
4710
|
-
createElementVNode("div", _hoisted_2$7, [
|
|
4756
|
+
createElementVNode("div", _hoisted_1$c, [
|
|
4757
|
+
_hoisted_2$a,
|
|
4758
|
+
createElementVNode("div", _hoisted_3$8, [
|
|
4711
4759
|
withDirectives(createElementVNode("input", {
|
|
4712
4760
|
class: "dd-search__input",
|
|
4713
4761
|
type: "text",
|
|
@@ -4721,7 +4769,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4721
4769
|
onConfirm,
|
|
4722
4770
|
onFocus: onFoucs,
|
|
4723
4771
|
onBlur
|
|
4724
|
-
}, null, 40,
|
|
4772
|
+
}, null, 40, _hoisted_4$7), [
|
|
4725
4773
|
[vModelText, key.value]
|
|
4726
4774
|
])
|
|
4727
4775
|
]),
|
|
@@ -4731,18 +4779,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
4731
4779
|
class: "dd-search__suffix",
|
|
4732
4780
|
onTap: onClear
|
|
4733
4781
|
},
|
|
4734
|
-
|
|
4735
|
-
createElementVNode(
|
|
4736
|
-
"image",
|
|
4737
|
-
{
|
|
4738
|
-
class: "full-img",
|
|
4739
|
-
src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
|
|
4740
|
-
},
|
|
4741
|
-
null,
|
|
4742
|
-
-1
|
|
4743
|
-
/* HOISTED */
|
|
4744
|
-
)
|
|
4745
|
-
]),
|
|
4782
|
+
[..._hoisted_6$5],
|
|
4746
4783
|
544
|
|
4747
4784
|
/* NEED_HYDRATION, NEED_PATCH */
|
|
4748
4785
|
), [
|
|
@@ -4823,28 +4860,59 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
|
|
|
4823
4860
|
};
|
|
4824
4861
|
}
|
|
4825
4862
|
|
|
4826
|
-
const _hoisted_1$
|
|
4827
|
-
const _hoisted_2$
|
|
4828
|
-
const _hoisted_3$
|
|
4863
|
+
const _hoisted_1$b = { class: "notice-list" };
|
|
4864
|
+
const _hoisted_2$9 = { style: { "flex": "1", "overflow": "hidden" } };
|
|
4865
|
+
const _hoisted_3$7 = {
|
|
4829
4866
|
key: 0,
|
|
4830
4867
|
class: "wrapper"
|
|
4831
4868
|
};
|
|
4832
|
-
const _hoisted_4$
|
|
4833
|
-
const _hoisted_5$
|
|
4834
|
-
|
|
4869
|
+
const _hoisted_4$6 = ["onClick"];
|
|
4870
|
+
const _hoisted_5$6 = /* @__PURE__ */ createElementVNode(
|
|
4871
|
+
"div",
|
|
4872
|
+
{ class: "point" },
|
|
4873
|
+
null,
|
|
4874
|
+
-1
|
|
4875
|
+
/* HOISTED */
|
|
4876
|
+
);
|
|
4877
|
+
const _hoisted_6$4 = { class: "time" };
|
|
4878
|
+
const _hoisted_7$3 = {
|
|
4835
4879
|
key: 0,
|
|
4836
4880
|
class: "notice-list-label"
|
|
4837
4881
|
};
|
|
4838
|
-
const
|
|
4839
|
-
const
|
|
4882
|
+
const _hoisted_8$2 = ["onClick"];
|
|
4883
|
+
const _hoisted_9$2 = {
|
|
4840
4884
|
key: 0,
|
|
4841
4885
|
class: "cue-text",
|
|
4842
4886
|
style: { "padding-bottom": "40px" }
|
|
4843
4887
|
};
|
|
4844
|
-
const
|
|
4888
|
+
const _hoisted_10$2 = {
|
|
4845
4889
|
key: 1,
|
|
4846
4890
|
class: "no-data"
|
|
4847
4891
|
};
|
|
4892
|
+
const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
|
|
4893
|
+
"div",
|
|
4894
|
+
{ class: "no-data-img" },
|
|
4895
|
+
[
|
|
4896
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
4897
|
+
style: { "width": "100%", "height": "100%" },
|
|
4898
|
+
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
4899
|
+
alt: ""
|
|
4900
|
+
})
|
|
4901
|
+
],
|
|
4902
|
+
-1
|
|
4903
|
+
/* HOISTED */
|
|
4904
|
+
);
|
|
4905
|
+
const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
|
|
4906
|
+
"div",
|
|
4907
|
+
{ class: "text" },
|
|
4908
|
+
"\u6682\u65E0\u8BB0\u5F55",
|
|
4909
|
+
-1
|
|
4910
|
+
/* HOISTED */
|
|
4911
|
+
);
|
|
4912
|
+
const _hoisted_13$2 = [
|
|
4913
|
+
_hoisted_11$2,
|
|
4914
|
+
_hoisted_12$2
|
|
4915
|
+
];
|
|
4848
4916
|
var script$b = /* @__PURE__ */ defineComponent({
|
|
4849
4917
|
__name: "NoticeList",
|
|
4850
4918
|
props: {
|
|
@@ -4919,7 +4987,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4919
4987
|
return (_ctx, _cache) => {
|
|
4920
4988
|
const _component_rich_text = resolveComponent("rich-text");
|
|
4921
4989
|
const _component_scroll_view = resolveComponent("scroll-view");
|
|
4922
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4990
|
+
return openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
4923
4991
|
createVNode(script$c, {
|
|
4924
4992
|
bordered: false,
|
|
4925
4993
|
focus: false,
|
|
@@ -4927,8 +4995,8 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4927
4995
|
placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
|
|
4928
4996
|
onSearch
|
|
4929
4997
|
}, null, 8, ["value"]),
|
|
4930
|
-
createElementVNode("div", _hoisted_2$
|
|
4931
|
-
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
4998
|
+
createElementVNode("div", _hoisted_2$9, [
|
|
4999
|
+
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
|
|
4932
5000
|
createVNode(_component_scroll_view, {
|
|
4933
5001
|
class: "content",
|
|
4934
5002
|
"scroll-y": true,
|
|
@@ -4949,17 +5017,11 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4949
5017
|
key: index,
|
|
4950
5018
|
onClick: ($event) => notifyRead(item, index)
|
|
4951
5019
|
}, [
|
|
4952
|
-
|
|
4953
|
-
"div",
|
|
4954
|
-
{ class: "point" },
|
|
4955
|
-
null,
|
|
4956
|
-
-1
|
|
4957
|
-
/* HOISTED */
|
|
4958
|
-
)),
|
|
5020
|
+
_hoisted_5$6,
|
|
4959
5021
|
createElementVNode("div", null, [
|
|
4960
5022
|
createElementVNode(
|
|
4961
5023
|
"div",
|
|
4962
|
-
|
|
5024
|
+
_hoisted_6$4,
|
|
4963
5025
|
toDisplayString(formatMinutes(item.receiveTime)),
|
|
4964
5026
|
1
|
|
4965
5027
|
/* TEXT */
|
|
@@ -4979,7 +5041,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
4979
5041
|
),
|
|
4980
5042
|
_ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
|
|
4981
5043
|
"div",
|
|
4982
|
-
|
|
5044
|
+
_hoisted_7$3,
|
|
4983
5045
|
toDisplayString(appMap[item.appCode]),
|
|
4984
5046
|
1
|
|
4985
5047
|
/* TEXT */
|
|
@@ -5002,44 +5064,23 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5002
5064
|
key: 0,
|
|
5003
5065
|
class: "notice-list-file",
|
|
5004
5066
|
onClick: ($event) => onNoticeView(item.link)
|
|
5005
|
-
}, " \u67E5\u770B\u9644\u4EF6 ", 8,
|
|
5067
|
+
}, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_8$2)) : createCommentVNode("v-if", true)
|
|
5006
5068
|
],
|
|
5007
5069
|
2
|
|
5008
5070
|
/* CLASS */
|
|
5009
5071
|
)
|
|
5010
5072
|
])
|
|
5011
|
-
], 10, _hoisted_4$
|
|
5073
|
+
], 10, _hoisted_4$6);
|
|
5012
5074
|
}),
|
|
5013
5075
|
128
|
|
5014
5076
|
/* KEYED_FRAGMENT */
|
|
5015
5077
|
)),
|
|
5016
|
-
unref(isLast) ? (openBlock(), createElementBlock("div",
|
|
5078
|
+
unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_9$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
5017
5079
|
]),
|
|
5018
5080
|
_: 1
|
|
5019
5081
|
/* STABLE */
|
|
5020
5082
|
}, 8, ["refresherTriggered", "onScrolltolower"])
|
|
5021
|
-
])) : (openBlock(), createElementBlock("div",
|
|
5022
|
-
createElementVNode(
|
|
5023
|
-
"div",
|
|
5024
|
-
{ class: "no-data-img" },
|
|
5025
|
-
[
|
|
5026
|
-
createElementVNode("img", {
|
|
5027
|
-
style: { "width": "100%", "height": "100%" },
|
|
5028
|
-
src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
|
|
5029
|
-
alt: ""
|
|
5030
|
-
})
|
|
5031
|
-
],
|
|
5032
|
-
-1
|
|
5033
|
-
/* HOISTED */
|
|
5034
|
-
),
|
|
5035
|
-
createElementVNode(
|
|
5036
|
-
"div",
|
|
5037
|
-
{ class: "text" },
|
|
5038
|
-
"\u6682\u65E0\u8BB0\u5F55",
|
|
5039
|
-
-1
|
|
5040
|
-
/* HOISTED */
|
|
5041
|
-
)
|
|
5042
|
-
])))
|
|
5083
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_10$2, [..._hoisted_13$2]))
|
|
5043
5084
|
])
|
|
5044
5085
|
]);
|
|
5045
5086
|
};
|
|
@@ -5048,10 +5089,24 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5048
5089
|
|
|
5049
5090
|
script$b.__file = "src/notice/components/NoticeList.vue";
|
|
5050
5091
|
|
|
5051
|
-
const _hoisted_1$
|
|
5052
|
-
const _hoisted_2$
|
|
5053
|
-
const _hoisted_3$
|
|
5054
|
-
const _hoisted_4$
|
|
5092
|
+
const _hoisted_1$a = { class: "user-entry" };
|
|
5093
|
+
const _hoisted_2$8 = { class: "user-entry-head" };
|
|
5094
|
+
const _hoisted_3$6 = ["src"];
|
|
5095
|
+
const _hoisted_4$5 = { class: "user-entry-bd" };
|
|
5096
|
+
const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
|
|
5097
|
+
"span",
|
|
5098
|
+
{ class: "user-entry-bd-arrow" },
|
|
5099
|
+
">",
|
|
5100
|
+
-1
|
|
5101
|
+
/* HOISTED */
|
|
5102
|
+
);
|
|
5103
|
+
const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
|
|
5104
|
+
"span",
|
|
5105
|
+
{ class: "user-entry-bd-arrow" },
|
|
5106
|
+
">",
|
|
5107
|
+
-1
|
|
5108
|
+
/* HOISTED */
|
|
5109
|
+
);
|
|
5055
5110
|
var script$a = /* @__PURE__ */ defineComponent({
|
|
5056
5111
|
__name: "UserEntry",
|
|
5057
5112
|
props: {
|
|
@@ -5074,8 +5129,8 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5074
5129
|
}
|
|
5075
5130
|
const emits = __emit;
|
|
5076
5131
|
return (_ctx, _cache) => {
|
|
5077
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5078
|
-
createElementVNode("div", _hoisted_2$
|
|
5132
|
+
return openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
5133
|
+
createElementVNode("div", _hoisted_2$8, [
|
|
5079
5134
|
_ctx.avatar ? (openBlock(), createElementBlock("img", {
|
|
5080
5135
|
key: 0,
|
|
5081
5136
|
class: "user-entry-head-img",
|
|
@@ -5083,7 +5138,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5083
5138
|
mode: "aspectFit",
|
|
5084
5139
|
src: _ctx.avatar,
|
|
5085
5140
|
alt: ""
|
|
5086
|
-
}, null, 8, _hoisted_3$
|
|
5141
|
+
}, null, 8, _hoisted_3$6)) : (openBlock(), createElementBlock("img", {
|
|
5087
5142
|
key: 1,
|
|
5088
5143
|
class: "user-entry-head-img",
|
|
5089
5144
|
mode: "aspectFit",
|
|
@@ -5092,21 +5147,15 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5092
5147
|
alt: ""
|
|
5093
5148
|
}))
|
|
5094
5149
|
]),
|
|
5095
|
-
createElementVNode("div", _hoisted_4$
|
|
5150
|
+
createElementVNode("div", _hoisted_4$5, [
|
|
5096
5151
|
!_ctx.mobile ? (openBlock(), createElementBlock("div", {
|
|
5097
5152
|
key: 0,
|
|
5098
5153
|
class: "user-entry-bd-bigtxt",
|
|
5099
5154
|
onClick: toLogin
|
|
5100
|
-
},
|
|
5155
|
+
}, [
|
|
5101
5156
|
createTextVNode(" \u8BF7\u767B\u5F55 "),
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
{ class: "user-entry-bd-arrow" },
|
|
5105
|
-
">",
|
|
5106
|
-
-1
|
|
5107
|
-
/* HOISTED */
|
|
5108
|
-
)
|
|
5109
|
-
]))) : (openBlock(), createElementBlock(
|
|
5157
|
+
_hoisted_5$5
|
|
5158
|
+
])) : (openBlock(), createElementBlock(
|
|
5110
5159
|
Fragment,
|
|
5111
5160
|
{ key: 1 },
|
|
5112
5161
|
[
|
|
@@ -5119,13 +5168,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5119
5168
|
1
|
|
5120
5169
|
/* TEXT */
|
|
5121
5170
|
),
|
|
5122
|
-
|
|
5123
|
-
"span",
|
|
5124
|
-
{ class: "user-entry-bd-arrow" },
|
|
5125
|
-
">",
|
|
5126
|
-
-1
|
|
5127
|
-
/* HOISTED */
|
|
5128
|
-
))
|
|
5171
|
+
_hoisted_6$3
|
|
5129
5172
|
]),
|
|
5130
5173
|
createElementVNode(
|
|
5131
5174
|
"div",
|
|
@@ -5149,7 +5192,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5149
5192
|
|
|
5150
5193
|
script$a.__file = "src/user/components/UserEntry.vue";
|
|
5151
5194
|
|
|
5152
|
-
const _hoisted_1$
|
|
5195
|
+
const _hoisted_1$9 = { class: "dd-skeleton" };
|
|
5153
5196
|
var script$9 = /* @__PURE__ */ defineComponent({
|
|
5154
5197
|
__name: "index",
|
|
5155
5198
|
props: {
|
|
@@ -5160,7 +5203,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
5160
5203
|
setup(__props) {
|
|
5161
5204
|
return (_ctx, _cache) => {
|
|
5162
5205
|
const _component_nut_skeleton = Skeleton;
|
|
5163
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5206
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
5164
5207
|
(openBlock(true), createElementBlock(
|
|
5165
5208
|
Fragment,
|
|
5166
5209
|
null,
|
|
@@ -5274,49 +5317,77 @@ function useHttp() {
|
|
|
5274
5317
|
return $http;
|
|
5275
5318
|
}
|
|
5276
5319
|
|
|
5277
|
-
const _hoisted_1$
|
|
5320
|
+
const _hoisted_1$8 = {
|
|
5278
5321
|
key: 1,
|
|
5279
5322
|
class: "user-info-wrap"
|
|
5280
5323
|
};
|
|
5281
|
-
const _hoisted_2$
|
|
5282
|
-
|
|
5283
|
-
|
|
5324
|
+
const _hoisted_2$7 = /* @__PURE__ */ createElementVNode(
|
|
5325
|
+
"div",
|
|
5326
|
+
{ class: "user-info-tit" },
|
|
5327
|
+
"\u8D26\u53F7\u4FE1\u606F",
|
|
5328
|
+
-1
|
|
5329
|
+
/* HOISTED */
|
|
5330
|
+
);
|
|
5331
|
+
const _hoisted_3$5 = { class: "user-info-head" };
|
|
5332
|
+
const _hoisted_4$4 = ["src"];
|
|
5333
|
+
const _hoisted_5$4 = {
|
|
5284
5334
|
key: 1,
|
|
5285
5335
|
class: "user-info-head-img",
|
|
5286
5336
|
mode: "aspectFit",
|
|
5287
5337
|
src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
|
|
5288
5338
|
alt: ""
|
|
5289
5339
|
};
|
|
5290
|
-
const
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
|
|
5340
|
+
const _hoisted_6$2 = /* @__PURE__ */ createElementVNode(
|
|
5341
|
+
"div",
|
|
5342
|
+
{ class: "user-info-head-upload" },
|
|
5343
|
+
[
|
|
5344
|
+
/* @__PURE__ */ createElementVNode("img", {
|
|
5345
|
+
class: "user-info-head-upload-icon",
|
|
5346
|
+
mode: "aspectFit",
|
|
5347
|
+
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5348
|
+
alt: ""
|
|
5349
|
+
})
|
|
5350
|
+
],
|
|
5351
|
+
-1
|
|
5352
|
+
/* HOISTED */
|
|
5353
|
+
);
|
|
5354
|
+
const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
|
|
5355
|
+
"div",
|
|
5356
|
+
{ class: "user-info-tit" },
|
|
5357
|
+
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5358
|
+
-1
|
|
5359
|
+
/* HOISTED */
|
|
5360
|
+
);
|
|
5361
|
+
const _hoisted_8$1 = { class: "user-info-team" };
|
|
5362
|
+
const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
|
|
5363
|
+
const _hoisted_10$1 = ["src"];
|
|
5364
|
+
const _hoisted_11$1 = {
|
|
5294
5365
|
key: 1,
|
|
5295
5366
|
class: "user-info-team-item-avatar-img empty",
|
|
5296
5367
|
mode: "aspectFit",
|
|
5297
5368
|
src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
|
|
5298
5369
|
alt: ""
|
|
5299
5370
|
};
|
|
5300
|
-
const
|
|
5301
|
-
const
|
|
5302
|
-
const
|
|
5371
|
+
const _hoisted_12$1 = { class: "user-info-team-item-bd" };
|
|
5372
|
+
const _hoisted_13$1 = { class: "user-info-team-item-title" };
|
|
5373
|
+
const _hoisted_14$1 = {
|
|
5303
5374
|
key: 0,
|
|
5304
5375
|
class: "user-info-team-item-app"
|
|
5305
5376
|
};
|
|
5306
|
-
const
|
|
5307
|
-
const
|
|
5377
|
+
const _hoisted_15$1 = ["onClick"];
|
|
5378
|
+
const _hoisted_16$1 = {
|
|
5308
5379
|
key: 1,
|
|
5309
5380
|
class: "user-info-team-item-role"
|
|
5310
5381
|
};
|
|
5311
|
-
const
|
|
5312
|
-
const
|
|
5313
|
-
const
|
|
5314
|
-
const
|
|
5315
|
-
const
|
|
5316
|
-
const
|
|
5317
|
-
const
|
|
5318
|
-
const
|
|
5319
|
-
const
|
|
5382
|
+
const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
|
|
5383
|
+
const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
|
|
5384
|
+
const _hoisted_19 = { class: "user-info-team-item-user" };
|
|
5385
|
+
const _hoisted_20 = ["onClick"];
|
|
5386
|
+
const _hoisted_21 = { class: "user-info-team-item-dept" };
|
|
5387
|
+
const _hoisted_22 = { class: "user-info-ft" };
|
|
5388
|
+
const _hoisted_23 = { class: "upload-avatar-popup-box" };
|
|
5389
|
+
const _hoisted_24 = ["src"];
|
|
5390
|
+
const _hoisted_25 = {
|
|
5320
5391
|
key: 1,
|
|
5321
5392
|
class: "upload-avatar-popup-avatar",
|
|
5322
5393
|
mode: "aspectFit",
|
|
@@ -5494,15 +5565,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5494
5565
|
firstLoading.value ? (openBlock(), createBlock(script$9, {
|
|
5495
5566
|
key: 0,
|
|
5496
5567
|
row: 3
|
|
5497
|
-
})) : (openBlock(), createElementBlock("div", _hoisted_1$
|
|
5498
|
-
|
|
5499
|
-
|
|
5500
|
-
{ class: "user-info-tit" },
|
|
5501
|
-
"\u8D26\u53F7\u4FE1\u606F",
|
|
5502
|
-
-1
|
|
5503
|
-
/* HOISTED */
|
|
5504
|
-
)),
|
|
5505
|
-
createElementVNode("div", _hoisted_2$4, [
|
|
5568
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
5569
|
+
_hoisted_2$7,
|
|
5570
|
+
createElementVNode("div", _hoisted_3$5, [
|
|
5506
5571
|
createElementVNode("div", {
|
|
5507
5572
|
class: "user-info-head-avatar",
|
|
5508
5573
|
onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
|
|
@@ -5513,21 +5578,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5513
5578
|
mode: "aspectFit",
|
|
5514
5579
|
src: userInfo.value.avatar,
|
|
5515
5580
|
alt: ""
|
|
5516
|
-
}, null, 8,
|
|
5517
|
-
|
|
5518
|
-
"div",
|
|
5519
|
-
{ class: "user-info-head-upload" },
|
|
5520
|
-
[
|
|
5521
|
-
createElementVNode("img", {
|
|
5522
|
-
class: "user-info-head-upload-icon",
|
|
5523
|
-
mode: "aspectFit",
|
|
5524
|
-
src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
|
|
5525
|
-
alt: ""
|
|
5526
|
-
})
|
|
5527
|
-
],
|
|
5528
|
-
-1
|
|
5529
|
-
/* HOISTED */
|
|
5530
|
-
))
|
|
5581
|
+
}, null, 8, _hoisted_4$4)) : (openBlock(), createElementBlock("img", _hoisted_5$4)),
|
|
5582
|
+
_hoisted_6$2
|
|
5531
5583
|
]),
|
|
5532
5584
|
createVNode(_component_nut_cell, {
|
|
5533
5585
|
title: "\u767B\u5F55\u624B\u673A\u53F7",
|
|
@@ -5536,14 +5588,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5536
5588
|
onClick: toBinding
|
|
5537
5589
|
}, null, 8, ["desc"])
|
|
5538
5590
|
]),
|
|
5539
|
-
|
|
5540
|
-
|
|
5541
|
-
{ class: "user-info-tit" },
|
|
5542
|
-
"\u4F01\u4E1A/\u56E2\u961F",
|
|
5543
|
-
-1
|
|
5544
|
-
/* HOISTED */
|
|
5545
|
-
)),
|
|
5546
|
-
createElementVNode("div", _hoisted_5$2, [
|
|
5591
|
+
_hoisted_7$2,
|
|
5592
|
+
createElementVNode("div", _hoisted_8$1, [
|
|
5547
5593
|
(openBlock(true), createElementBlock(
|
|
5548
5594
|
Fragment,
|
|
5549
5595
|
null,
|
|
@@ -5552,24 +5598,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5552
5598
|
key,
|
|
5553
5599
|
class: "user-info-team-item"
|
|
5554
5600
|
}, [
|
|
5555
|
-
createElementVNode("div",
|
|
5601
|
+
createElementVNode("div", _hoisted_9$1, [
|
|
5556
5602
|
item.tenantLogo ? (openBlock(), createElementBlock("img", {
|
|
5557
5603
|
key: 0,
|
|
5558
5604
|
class: "user-info-team-item-avatar-img",
|
|
5559
5605
|
mode: "aspectFit",
|
|
5560
5606
|
src: item.tenantLogo,
|
|
5561
5607
|
alt: ""
|
|
5562
|
-
}, null, 8,
|
|
5608
|
+
}, null, 8, _hoisted_10$1)) : (openBlock(), createElementBlock("img", _hoisted_11$1))
|
|
5563
5609
|
]),
|
|
5564
|
-
createElementVNode("div",
|
|
5610
|
+
createElementVNode("div", _hoisted_12$1, [
|
|
5565
5611
|
createElementVNode(
|
|
5566
5612
|
"div",
|
|
5567
|
-
|
|
5613
|
+
_hoisted_13$1,
|
|
5568
5614
|
toDisplayString(item.tenantName),
|
|
5569
5615
|
1
|
|
5570
5616
|
/* TEXT */
|
|
5571
5617
|
),
|
|
5572
|
-
item.appRoleInfo ? (openBlock(), createElementBlock("div",
|
|
5618
|
+
item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
|
|
5573
5619
|
(openBlock(true), createElementBlock(
|
|
5574
5620
|
Fragment,
|
|
5575
5621
|
null,
|
|
@@ -5592,7 +5638,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5592
5638
|
class: "user-info-team-item-role-btn",
|
|
5593
5639
|
onClick: ($event) => toShowRole(item)
|
|
5594
5640
|
}, [
|
|
5595
|
-
|
|
5641
|
+
createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
|
|
5596
5642
|
createElementVNode(
|
|
5597
5643
|
"img",
|
|
5598
5644
|
{
|
|
@@ -5604,9 +5650,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5604
5650
|
2
|
|
5605
5651
|
/* CLASS */
|
|
5606
5652
|
)
|
|
5607
|
-
], 8,
|
|
5653
|
+
], 8, _hoisted_15$1)
|
|
5608
5654
|
])) : createCommentVNode("v-if", true),
|
|
5609
|
-
item.showRole ? (openBlock(), createElementBlock("div",
|
|
5655
|
+
item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16$1, [
|
|
5610
5656
|
(openBlock(true), createElementBlock(
|
|
5611
5657
|
Fragment,
|
|
5612
5658
|
null,
|
|
@@ -5617,14 +5663,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5617
5663
|
}, [
|
|
5618
5664
|
createElementVNode(
|
|
5619
5665
|
"div",
|
|
5620
|
-
|
|
5666
|
+
_hoisted_17,
|
|
5621
5667
|
toDisplayString(aitem.appAbbr),
|
|
5622
5668
|
1
|
|
5623
5669
|
/* TEXT */
|
|
5624
5670
|
),
|
|
5625
5671
|
createElementVNode(
|
|
5626
5672
|
"div",
|
|
5627
|
-
|
|
5673
|
+
_hoisted_18,
|
|
5628
5674
|
toDisplayString(aitem.roleName),
|
|
5629
5675
|
1
|
|
5630
5676
|
/* TEXT */
|
|
@@ -5635,7 +5681,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5635
5681
|
/* KEYED_FRAGMENT */
|
|
5636
5682
|
))
|
|
5637
5683
|
])) : createCommentVNode("v-if", true),
|
|
5638
|
-
createElementVNode("div",
|
|
5684
|
+
createElementVNode("div", _hoisted_19, [
|
|
5639
5685
|
createTextVNode(
|
|
5640
5686
|
toDisplayString(item.fullName) + " ",
|
|
5641
5687
|
1
|
|
@@ -5646,9 +5692,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5646
5692
|
class: "user-info-team-item-user-icon",
|
|
5647
5693
|
src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
|
|
5648
5694
|
alt: ""
|
|
5649
|
-
}, null, 8,
|
|
5695
|
+
}, null, 8, _hoisted_20)
|
|
5650
5696
|
]),
|
|
5651
|
-
createElementVNode("div",
|
|
5697
|
+
createElementVNode("div", _hoisted_21, [
|
|
5652
5698
|
(openBlock(true), createElementBlock(
|
|
5653
5699
|
Fragment,
|
|
5654
5700
|
null,
|
|
@@ -5675,7 +5721,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5675
5721
|
/* KEYED_FRAGMENT */
|
|
5676
5722
|
))
|
|
5677
5723
|
]),
|
|
5678
|
-
createElementVNode("div",
|
|
5724
|
+
createElementVNode("div", _hoisted_22, [
|
|
5679
5725
|
createVNode(_component_nut_button, {
|
|
5680
5726
|
class: "user-info-ft-btn",
|
|
5681
5727
|
style: { "width": "100%" },
|
|
@@ -5683,9 +5729,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5683
5729
|
plain: "",
|
|
5684
5730
|
type: "primary"
|
|
5685
5731
|
}, {
|
|
5686
|
-
default: withCtx(() =>
|
|
5732
|
+
default: withCtx(() => [
|
|
5687
5733
|
createTextVNode("\u9000\u51FA\u767B\u5F55")
|
|
5688
|
-
])
|
|
5734
|
+
]),
|
|
5689
5735
|
_: 1
|
|
5690
5736
|
/* STABLE */
|
|
5691
5737
|
})
|
|
@@ -5710,9 +5756,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5710
5756
|
type: "default",
|
|
5711
5757
|
onClick: onUserNameCancel
|
|
5712
5758
|
}, {
|
|
5713
|
-
default: withCtx(() =>
|
|
5759
|
+
default: withCtx(() => [
|
|
5714
5760
|
createTextVNode(" \u53D6\u6D88 ")
|
|
5715
|
-
])
|
|
5761
|
+
]),
|
|
5716
5762
|
_: 1
|
|
5717
5763
|
/* STABLE */
|
|
5718
5764
|
}),
|
|
@@ -5721,9 +5767,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5721
5767
|
type: "primary",
|
|
5722
5768
|
onClick: onUserNameOk
|
|
5723
5769
|
}, {
|
|
5724
|
-
default: withCtx(() =>
|
|
5770
|
+
default: withCtx(() => [
|
|
5725
5771
|
createTextVNode(" \u786E\u5B9A ")
|
|
5726
|
-
])
|
|
5772
|
+
]),
|
|
5727
5773
|
_: 1
|
|
5728
5774
|
/* STABLE */
|
|
5729
5775
|
})
|
|
@@ -5748,14 +5794,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5748
5794
|
"overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
|
|
5749
5795
|
}, {
|
|
5750
5796
|
default: withCtx(() => [
|
|
5751
|
-
createElementVNode("div",
|
|
5797
|
+
createElementVNode("div", _hoisted_23, [
|
|
5752
5798
|
userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
|
|
5753
5799
|
key: 0,
|
|
5754
5800
|
class: "upload-avatar-popup-avatar",
|
|
5755
5801
|
mode: "aspectFit",
|
|
5756
5802
|
src: userInfo.value.avatar,
|
|
5757
5803
|
alt: ""
|
|
5758
|
-
}, null, 8,
|
|
5804
|
+
}, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
|
|
5759
5805
|
createElementVNode("div", {
|
|
5760
5806
|
class: "upload-avatar-popup-btn",
|
|
5761
5807
|
onClick: toUpload
|
|
@@ -5775,15 +5821,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
5775
5821
|
|
|
5776
5822
|
script$8.__file = "src/user/components/UserInfo.vue";
|
|
5777
5823
|
|
|
5778
|
-
const _hoisted_1$
|
|
5779
|
-
const _hoisted_2$
|
|
5780
|
-
const _hoisted_3$
|
|
5781
|
-
const _hoisted_4$
|
|
5824
|
+
const _hoisted_1$7 = { class: "user-binding" };
|
|
5825
|
+
const _hoisted_2$6 = { class: "user-binding-layout" };
|
|
5826
|
+
const _hoisted_3$4 = ["src"];
|
|
5827
|
+
const _hoisted_4$3 = {
|
|
5782
5828
|
key: 0,
|
|
5783
5829
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5784
5830
|
style: { "flex": "1" }
|
|
5785
5831
|
};
|
|
5786
|
-
const _hoisted_5$
|
|
5832
|
+
const _hoisted_5$3 = {
|
|
5787
5833
|
key: 1,
|
|
5788
5834
|
class: "user-binding-layout user-binding-inputlayout",
|
|
5789
5835
|
style: { "flex": "1" }
|
|
@@ -5870,28 +5916,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5870
5916
|
const _component_nut_form_item = FormItem;
|
|
5871
5917
|
const _component_nut_button = Button;
|
|
5872
5918
|
const _component_nut_form = Form;
|
|
5873
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5874
|
-
createElementVNode("div", _hoisted_2$
|
|
5919
|
+
return openBlock(), createElementBlock("div", _hoisted_1$7, [
|
|
5920
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
5875
5921
|
createElementVNode("img", {
|
|
5876
5922
|
class: "user-binding-img",
|
|
5877
5923
|
src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
|
|
5878
|
-
}, null, 8, _hoisted_3$
|
|
5924
|
+
}, null, 8, _hoisted_3$4),
|
|
5879
5925
|
createVNode(_component_nut_steps, {
|
|
5880
5926
|
current: current.value,
|
|
5881
5927
|
class: "user-binding-steps"
|
|
5882
5928
|
}, {
|
|
5883
5929
|
default: withCtx(() => [
|
|
5884
5930
|
createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
|
|
5885
|
-
default: withCtx(() =>
|
|
5931
|
+
default: withCtx(() => [
|
|
5886
5932
|
createTextVNode("1")
|
|
5887
|
-
])
|
|
5933
|
+
]),
|
|
5888
5934
|
_: 1
|
|
5889
5935
|
/* STABLE */
|
|
5890
5936
|
}),
|
|
5891
5937
|
createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
|
|
5892
|
-
default: withCtx(() =>
|
|
5938
|
+
default: withCtx(() => [
|
|
5893
5939
|
createTextVNode("2")
|
|
5894
|
-
])
|
|
5940
|
+
]),
|
|
5895
5941
|
_: 1
|
|
5896
5942
|
/* STABLE */
|
|
5897
5943
|
})
|
|
@@ -5900,7 +5946,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5900
5946
|
/* STABLE */
|
|
5901
5947
|
}, 8, ["current"])
|
|
5902
5948
|
]),
|
|
5903
|
-
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
5949
|
+
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
|
|
5904
5950
|
createVNode(_component_nut_form, null, {
|
|
5905
5951
|
default: withCtx(() => [
|
|
5906
5952
|
createVNode(_component_nut_form_item, {
|
|
@@ -5968,13 +6014,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
5968
6014
|
type: "primary",
|
|
5969
6015
|
onClick: onAuth
|
|
5970
6016
|
}, {
|
|
5971
|
-
default: withCtx(() =>
|
|
6017
|
+
default: withCtx(() => [
|
|
5972
6018
|
createTextVNode("\u63D0\u4EA4")
|
|
5973
|
-
])
|
|
6019
|
+
]),
|
|
5974
6020
|
_: 1
|
|
5975
6021
|
/* STABLE */
|
|
5976
6022
|
}, 8, ["disabled"])
|
|
5977
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_5$
|
|
6023
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_5$3, [
|
|
5978
6024
|
createVNode(_component_nut_form, null, {
|
|
5979
6025
|
default: withCtx(() => [
|
|
5980
6026
|
createVNode(_component_nut_form_item, {
|
|
@@ -6041,9 +6087,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6041
6087
|
type: "primary",
|
|
6042
6088
|
onClick: onBinding
|
|
6043
6089
|
}, {
|
|
6044
|
-
default: withCtx(() =>
|
|
6090
|
+
default: withCtx(() => [
|
|
6045
6091
|
createTextVNode("\u63D0\u4EA4")
|
|
6046
|
-
])
|
|
6092
|
+
]),
|
|
6047
6093
|
_: 1
|
|
6048
6094
|
/* STABLE */
|
|
6049
6095
|
}, 8, ["disabled"])
|
|
@@ -6055,8 +6101,19 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6055
6101
|
|
|
6056
6102
|
script$7.__file = "src/user/components/UserBinding.vue";
|
|
6057
6103
|
|
|
6058
|
-
const _hoisted_1$
|
|
6059
|
-
const _hoisted_2$
|
|
6104
|
+
const _hoisted_1$6 = { class: "user-binding-success" };
|
|
6105
|
+
const _hoisted_2$5 = /* @__PURE__ */ createElementVNode(
|
|
6106
|
+
"img",
|
|
6107
|
+
{
|
|
6108
|
+
class: "user-binding-success-icon",
|
|
6109
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6110
|
+
alt: ""
|
|
6111
|
+
},
|
|
6112
|
+
null,
|
|
6113
|
+
-1
|
|
6114
|
+
/* HOISTED */
|
|
6115
|
+
);
|
|
6116
|
+
const _hoisted_3$3 = { class: "user-binding-success-info" };
|
|
6060
6117
|
var script$6 = /* @__PURE__ */ defineComponent({
|
|
6061
6118
|
__name: "UserBindingSuccess",
|
|
6062
6119
|
emits: ["binding"],
|
|
@@ -6075,21 +6132,11 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6075
6132
|
const emits = __emit;
|
|
6076
6133
|
return (_ctx, _cache) => {
|
|
6077
6134
|
const _component_nut_button = Button;
|
|
6078
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6079
|
-
|
|
6080
|
-
"img",
|
|
6081
|
-
{
|
|
6082
|
-
class: "user-binding-success-icon",
|
|
6083
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
|
|
6084
|
-
alt: ""
|
|
6085
|
-
},
|
|
6086
|
-
null,
|
|
6087
|
-
-1
|
|
6088
|
-
/* HOISTED */
|
|
6089
|
-
)),
|
|
6135
|
+
return openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
6136
|
+
_hoisted_2$5,
|
|
6090
6137
|
createElementVNode(
|
|
6091
6138
|
"div",
|
|
6092
|
-
|
|
6139
|
+
_hoisted_3$3,
|
|
6093
6140
|
toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
|
|
6094
6141
|
1
|
|
6095
6142
|
/* TEXT */
|
|
@@ -6109,9 +6156,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
|
|
|
6109
6156
|
type: "primary",
|
|
6110
6157
|
onClick: toBinding
|
|
6111
6158
|
}, {
|
|
6112
|
-
default: withCtx(() =>
|
|
6159
|
+
default: withCtx(() => [
|
|
6113
6160
|
createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
|
|
6114
|
-
])
|
|
6161
|
+
]),
|
|
6115
6162
|
_: 1
|
|
6116
6163
|
/* STABLE */
|
|
6117
6164
|
})
|
|
@@ -6729,11 +6776,39 @@ var script$5 = {
|
|
|
6729
6776
|
}
|
|
6730
6777
|
};
|
|
6731
6778
|
|
|
6732
|
-
const _hoisted_1$
|
|
6733
|
-
const _hoisted_2$
|
|
6734
|
-
const _hoisted_3$
|
|
6779
|
+
const _hoisted_1$5 = { class: "bt-container" };
|
|
6780
|
+
const _hoisted_2$4 = ["src"];
|
|
6781
|
+
const _hoisted_3$2 = /* @__PURE__ */ createElementVNode(
|
|
6782
|
+
"view",
|
|
6783
|
+
{ class: "line row row1" },
|
|
6784
|
+
null,
|
|
6785
|
+
-1
|
|
6786
|
+
/* HOISTED */
|
|
6787
|
+
);
|
|
6788
|
+
const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
|
|
6789
|
+
"view",
|
|
6790
|
+
{ class: "line row row2" },
|
|
6791
|
+
null,
|
|
6792
|
+
-1
|
|
6793
|
+
/* HOISTED */
|
|
6794
|
+
);
|
|
6795
|
+
const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
|
|
6796
|
+
"view",
|
|
6797
|
+
{ class: "line col col1" },
|
|
6798
|
+
null,
|
|
6799
|
+
-1
|
|
6800
|
+
/* HOISTED */
|
|
6801
|
+
);
|
|
6802
|
+
const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
|
|
6803
|
+
"view",
|
|
6804
|
+
{ class: "line col col2" },
|
|
6805
|
+
null,
|
|
6806
|
+
-1
|
|
6807
|
+
/* HOISTED */
|
|
6808
|
+
);
|
|
6809
|
+
const _hoisted_7$1 = { class: "slot" };
|
|
6735
6810
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6736
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
6811
|
+
return openBlock(), createElementBlock("view", _hoisted_1$5, [
|
|
6737
6812
|
createElementVNode("view", {
|
|
6738
6813
|
class: "iconfont icon-replay",
|
|
6739
6814
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
|
|
@@ -6753,7 +6828,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6753
6828
|
onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
|
|
6754
6829
|
style: normalizeStyle([$options.imageStyle]),
|
|
6755
6830
|
class: "image"
|
|
6756
|
-
}, null, 44, _hoisted_2$
|
|
6831
|
+
}, null, 44, _hoisted_2$4),
|
|
6757
6832
|
$props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
|
|
6758
6833
|
"view",
|
|
6759
6834
|
{
|
|
@@ -6772,34 +6847,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6772
6847
|
Fragment,
|
|
6773
6848
|
{ key: 0 },
|
|
6774
6849
|
[
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
-1
|
|
6780
|
-
/* HOISTED */
|
|
6781
|
-
)),
|
|
6782
|
-
_cache[13] || (_cache[13] = createElementVNode(
|
|
6783
|
-
"view",
|
|
6784
|
-
{ class: "line row row2" },
|
|
6785
|
-
null,
|
|
6786
|
-
-1
|
|
6787
|
-
/* HOISTED */
|
|
6788
|
-
)),
|
|
6789
|
-
_cache[14] || (_cache[14] = createElementVNode(
|
|
6790
|
-
"view",
|
|
6791
|
-
{ class: "line col col1" },
|
|
6792
|
-
null,
|
|
6793
|
-
-1
|
|
6794
|
-
/* HOISTED */
|
|
6795
|
-
)),
|
|
6796
|
-
_cache[15] || (_cache[15] = createElementVNode(
|
|
6797
|
-
"view",
|
|
6798
|
-
{ class: "line col col2" },
|
|
6799
|
-
null,
|
|
6800
|
-
-1
|
|
6801
|
-
/* HOISTED */
|
|
6802
|
-
))
|
|
6850
|
+
_hoisted_3$2,
|
|
6851
|
+
_hoisted_4$2,
|
|
6852
|
+
_hoisted_5$2,
|
|
6853
|
+
_hoisted_6$1
|
|
6803
6854
|
],
|
|
6804
6855
|
64
|
|
6805
6856
|
/* STABLE_FRAGMENT */
|
|
@@ -6908,7 +6959,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6908
6959
|
32
|
|
6909
6960
|
/* NEED_HYDRATION */
|
|
6910
6961
|
),
|
|
6911
|
-
createElementVNode("view",
|
|
6962
|
+
createElementVNode("view", _hoisted_7$1, [
|
|
6912
6963
|
renderSlot(_ctx.$slots, "default")
|
|
6913
6964
|
]),
|
|
6914
6965
|
$options.isWeapp ? (openBlock(), createElementBlock(
|
|
@@ -6947,7 +6998,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6947
6998
|
script$5.render = render;
|
|
6948
6999
|
script$5.__file = "src/components/bt-cropper/index.vue";
|
|
6949
7000
|
|
|
6950
|
-
const _hoisted_1$
|
|
7001
|
+
const _hoisted_1$4 = { class: "user-head-crop" };
|
|
6951
7002
|
var script$4 = /* @__PURE__ */ defineComponent({
|
|
6952
7003
|
__name: "UserHeadCrop",
|
|
6953
7004
|
setup(__props) {
|
|
@@ -6972,7 +7023,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
6972
7023
|
}
|
|
6973
7024
|
}
|
|
6974
7025
|
return (_ctx, _cache) => {
|
|
6975
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7026
|
+
return openBlock(), createElementBlock("div", _hoisted_1$4, [
|
|
6976
7027
|
createVNode(script$5, {
|
|
6977
7028
|
ref_key: "cropperRef",
|
|
6978
7029
|
ref: cropperRef,
|
|
@@ -7001,20 +7052,84 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
7001
7052
|
|
|
7002
7053
|
script$4.__file = "src/user/components/UserHeadCrop.vue";
|
|
7003
7054
|
|
|
7004
|
-
const _hoisted_1$
|
|
7055
|
+
const _hoisted_1$3 = {
|
|
7005
7056
|
key: 0,
|
|
7006
7057
|
class: "user-feedback-wrap"
|
|
7007
7058
|
};
|
|
7008
|
-
const _hoisted_2 =
|
|
7009
|
-
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
|
|
7014
|
-
|
|
7059
|
+
const _hoisted_2$3 = /* @__PURE__ */ createElementVNode(
|
|
7060
|
+
"img",
|
|
7061
|
+
{
|
|
7062
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
|
|
7063
|
+
style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
|
|
7064
|
+
},
|
|
7065
|
+
null,
|
|
7066
|
+
-1
|
|
7067
|
+
/* HOISTED */
|
|
7068
|
+
);
|
|
7069
|
+
const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
|
|
7070
|
+
"div",
|
|
7071
|
+
{ class: "user-feedback-tit" },
|
|
7072
|
+
"\u8865\u5145\u63CF\u8FF0",
|
|
7073
|
+
-1
|
|
7074
|
+
/* HOISTED */
|
|
7075
|
+
);
|
|
7076
|
+
const _hoisted_4$1 = { class: "user-feedback-body" };
|
|
7077
|
+
const _hoisted_5$1 = { class: "user-feedback-handle" };
|
|
7078
|
+
const _hoisted_6 = ["src"];
|
|
7079
|
+
const _hoisted_7 = ["src"];
|
|
7080
|
+
const _hoisted_8 = ["onClick"];
|
|
7081
|
+
const _hoisted_9 = /* @__PURE__ */ createElementVNode(
|
|
7082
|
+
"img",
|
|
7083
|
+
{
|
|
7084
|
+
class: "user-feedback-handle-item-close-img",
|
|
7085
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7086
|
+
},
|
|
7087
|
+
null,
|
|
7088
|
+
-1
|
|
7089
|
+
/* HOISTED */
|
|
7090
|
+
);
|
|
7091
|
+
const _hoisted_10 = [
|
|
7092
|
+
_hoisted_9
|
|
7093
|
+
];
|
|
7094
|
+
const _hoisted_11 = /* @__PURE__ */ createElementVNode(
|
|
7095
|
+
"img",
|
|
7096
|
+
{
|
|
7097
|
+
class: "user-feedback-handle-item-loading",
|
|
7098
|
+
mode: "aspectFit",
|
|
7099
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7100
|
+
alt: ""
|
|
7101
|
+
},
|
|
7102
|
+
null,
|
|
7103
|
+
-1
|
|
7104
|
+
/* HOISTED */
|
|
7105
|
+
);
|
|
7106
|
+
const _hoisted_12 = { class: "user-feedback-footer" };
|
|
7107
|
+
const _hoisted_13 = {
|
|
7015
7108
|
key: 1,
|
|
7016
7109
|
class: "user-feedback-wrap"
|
|
7017
7110
|
};
|
|
7111
|
+
const _hoisted_14 = /* @__PURE__ */ createElementVNode(
|
|
7112
|
+
"img",
|
|
7113
|
+
{
|
|
7114
|
+
class: "user-feedback-success-img",
|
|
7115
|
+
mode: "aspectFit",
|
|
7116
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7117
|
+
},
|
|
7118
|
+
null,
|
|
7119
|
+
-1
|
|
7120
|
+
/* HOISTED */
|
|
7121
|
+
);
|
|
7122
|
+
const _hoisted_15 = /* @__PURE__ */ createElementVNode(
|
|
7123
|
+
"div",
|
|
7124
|
+
{ class: "user-feedback-success-info" },
|
|
7125
|
+
"\u63D0\u4EA4\u6210\u529F",
|
|
7126
|
+
-1
|
|
7127
|
+
/* HOISTED */
|
|
7128
|
+
);
|
|
7129
|
+
const _hoisted_16 = [
|
|
7130
|
+
_hoisted_14,
|
|
7131
|
+
_hoisted_15
|
|
7132
|
+
];
|
|
7018
7133
|
var script$3 = /* @__PURE__ */ defineComponent({
|
|
7019
7134
|
__name: "UserFeedback",
|
|
7020
7135
|
props: {
|
|
@@ -7187,32 +7302,17 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7187
7302
|
class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
|
|
7188
7303
|
},
|
|
7189
7304
|
[
|
|
7190
|
-
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
7191
|
-
|
|
7192
|
-
|
|
7193
|
-
|
|
7194
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
|
|
7195
|
-
style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
|
|
7196
|
-
},
|
|
7197
|
-
null,
|
|
7198
|
-
-1
|
|
7199
|
-
/* HOISTED */
|
|
7200
|
-
)),
|
|
7201
|
-
_cache[5] || (_cache[5] = createElementVNode(
|
|
7202
|
-
"div",
|
|
7203
|
-
{ class: "user-feedback-tit" },
|
|
7204
|
-
"\u8865\u5145\u63CF\u8FF0",
|
|
7205
|
-
-1
|
|
7206
|
-
/* HOISTED */
|
|
7207
|
-
)),
|
|
7208
|
-
createElementVNode("div", _hoisted_2, [
|
|
7305
|
+
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
|
|
7306
|
+
_hoisted_2$3,
|
|
7307
|
+
_hoisted_3$1,
|
|
7308
|
+
createElementVNode("div", _hoisted_4$1, [
|
|
7209
7309
|
createVNode(_component_editor, {
|
|
7210
7310
|
id: "myEditor",
|
|
7211
7311
|
"show-img-resize": true,
|
|
7212
7312
|
class: "user-feedback-editor",
|
|
7213
7313
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
|
|
7214
7314
|
}),
|
|
7215
|
-
createElementVNode("div",
|
|
7315
|
+
createElementVNode("div", _hoisted_5$1, [
|
|
7216
7316
|
(openBlock(true), createElementBlock(
|
|
7217
7317
|
Fragment,
|
|
7218
7318
|
null,
|
|
@@ -7230,42 +7330,20 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7230
7330
|
class: "user-feedback-handle-item-img",
|
|
7231
7331
|
mode: "aspectFit",
|
|
7232
7332
|
src: item.url
|
|
7233
|
-
}, null, 8,
|
|
7333
|
+
}, null, 8, _hoisted_6)) : (openBlock(), createElementBlock("video", {
|
|
7234
7334
|
key: 1,
|
|
7235
7335
|
class: "user-feedback-handle-item-img",
|
|
7236
7336
|
src: item.url
|
|
7237
|
-
}, null, 8,
|
|
7337
|
+
}, null, 8, _hoisted_7)),
|
|
7238
7338
|
createElementVNode("div", {
|
|
7239
7339
|
class: "user-feedback-handle-item-close",
|
|
7240
7340
|
onClick: ($event) => onDelete(key)
|
|
7241
|
-
}, [...
|
|
7242
|
-
createElementVNode(
|
|
7243
|
-
"img",
|
|
7244
|
-
{
|
|
7245
|
-
class: "user-feedback-handle-item-close-img",
|
|
7246
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7247
|
-
},
|
|
7248
|
-
null,
|
|
7249
|
-
-1
|
|
7250
|
-
/* HOISTED */
|
|
7251
|
-
)
|
|
7252
|
-
])], 8, _hoisted_6)
|
|
7341
|
+
}, [..._hoisted_10], 8, _hoisted_8)
|
|
7253
7342
|
],
|
|
7254
7343
|
64
|
|
7255
7344
|
/* STABLE_FRAGMENT */
|
|
7256
7345
|
)) : createCommentVNode("v-if", true),
|
|
7257
|
-
|
|
7258
|
-
"img",
|
|
7259
|
-
{
|
|
7260
|
-
class: "user-feedback-handle-item-loading",
|
|
7261
|
-
mode: "aspectFit",
|
|
7262
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
|
|
7263
|
-
alt: ""
|
|
7264
|
-
},
|
|
7265
|
-
null,
|
|
7266
|
-
-1
|
|
7267
|
-
/* HOISTED */
|
|
7268
|
-
))
|
|
7346
|
+
_hoisted_11
|
|
7269
7347
|
]);
|
|
7270
7348
|
}),
|
|
7271
7349
|
128
|
|
@@ -7277,16 +7355,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7277
7355
|
}, "+")
|
|
7278
7356
|
])
|
|
7279
7357
|
]),
|
|
7280
|
-
createElementVNode("div",
|
|
7358
|
+
createElementVNode("div", _hoisted_12, [
|
|
7281
7359
|
createVNode(_component_nut_button, {
|
|
7282
7360
|
class: "user-feedback-footer-btn",
|
|
7283
7361
|
plain: "",
|
|
7284
7362
|
type: "primary",
|
|
7285
7363
|
onClick: onCancel
|
|
7286
7364
|
}, {
|
|
7287
|
-
default: withCtx(() =>
|
|
7365
|
+
default: withCtx(() => [
|
|
7288
7366
|
createTextVNode("\u6700\u5C0F\u5316")
|
|
7289
|
-
])
|
|
7367
|
+
]),
|
|
7290
7368
|
_: 1
|
|
7291
7369
|
/* STABLE */
|
|
7292
7370
|
}),
|
|
@@ -7295,33 +7373,14 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
7295
7373
|
type: "primary",
|
|
7296
7374
|
onClick: onOk
|
|
7297
7375
|
}, {
|
|
7298
|
-
default: withCtx(() =>
|
|
7376
|
+
default: withCtx(() => [
|
|
7299
7377
|
createTextVNode("\u53CD\u9988")
|
|
7300
|
-
])
|
|
7378
|
+
]),
|
|
7301
7379
|
_: 1
|
|
7302
7380
|
/* STABLE */
|
|
7303
7381
|
})
|
|
7304
7382
|
])
|
|
7305
|
-
])) : (openBlock(), createElementBlock("div",
|
|
7306
|
-
createElementVNode(
|
|
7307
|
-
"img",
|
|
7308
|
-
{
|
|
7309
|
-
class: "user-feedback-success-img",
|
|
7310
|
-
mode: "aspectFit",
|
|
7311
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
|
|
7312
|
-
},
|
|
7313
|
-
null,
|
|
7314
|
-
-1
|
|
7315
|
-
/* HOISTED */
|
|
7316
|
-
),
|
|
7317
|
-
createElementVNode(
|
|
7318
|
-
"div",
|
|
7319
|
-
{ class: "user-feedback-success-info" },
|
|
7320
|
-
"\u63D0\u4EA4\u6210\u529F",
|
|
7321
|
-
-1
|
|
7322
|
-
/* HOISTED */
|
|
7323
|
-
)
|
|
7324
|
-
])))
|
|
7383
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_13, [..._hoisted_16]))
|
|
7325
7384
|
],
|
|
7326
7385
|
2
|
|
7327
7386
|
/* CLASS */
|
|
@@ -7415,6 +7474,41 @@ function useDragBox() {
|
|
|
7415
7474
|
};
|
|
7416
7475
|
}
|
|
7417
7476
|
|
|
7477
|
+
const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
|
|
7478
|
+
"img",
|
|
7479
|
+
{
|
|
7480
|
+
class: "user-feedback-entry-icon",
|
|
7481
|
+
mode: "aspectFit",
|
|
7482
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7483
|
+
},
|
|
7484
|
+
null,
|
|
7485
|
+
-1
|
|
7486
|
+
/* HOISTED */
|
|
7487
|
+
);
|
|
7488
|
+
const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
|
|
7489
|
+
"div",
|
|
7490
|
+
null,
|
|
7491
|
+
"\u53CD\u9988",
|
|
7492
|
+
-1
|
|
7493
|
+
/* HOISTED */
|
|
7494
|
+
);
|
|
7495
|
+
const _hoisted_3 = [
|
|
7496
|
+
_hoisted_1$2,
|
|
7497
|
+
_hoisted_2$2
|
|
7498
|
+
];
|
|
7499
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode(
|
|
7500
|
+
"img",
|
|
7501
|
+
{
|
|
7502
|
+
class: "user-feedback-entry-close-img",
|
|
7503
|
+
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7504
|
+
},
|
|
7505
|
+
null,
|
|
7506
|
+
-1
|
|
7507
|
+
/* HOISTED */
|
|
7508
|
+
);
|
|
7509
|
+
const _hoisted_5 = [
|
|
7510
|
+
_hoisted_4
|
|
7511
|
+
];
|
|
7418
7512
|
var script$2 = /* @__PURE__ */ defineComponent({
|
|
7419
7513
|
__name: "UserFeedbackEntry",
|
|
7420
7514
|
props: {
|
|
@@ -7502,26 +7596,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7502
7596
|
class: "user-feedback-entry",
|
|
7503
7597
|
onClick: onJump
|
|
7504
7598
|
},
|
|
7505
|
-
|
|
7506
|
-
createElementVNode(
|
|
7507
|
-
"img",
|
|
7508
|
-
{
|
|
7509
|
-
class: "user-feedback-entry-icon",
|
|
7510
|
-
mode: "aspectFit",
|
|
7511
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
|
|
7512
|
-
},
|
|
7513
|
-
null,
|
|
7514
|
-
-1
|
|
7515
|
-
/* HOISTED */
|
|
7516
|
-
),
|
|
7517
|
-
createElementVNode(
|
|
7518
|
-
"div",
|
|
7519
|
-
null,
|
|
7520
|
-
"\u53CD\u9988",
|
|
7521
|
-
-1
|
|
7522
|
-
/* HOISTED */
|
|
7523
|
-
)
|
|
7524
|
-
]),
|
|
7599
|
+
[..._hoisted_3],
|
|
7525
7600
|
36
|
|
7526
7601
|
/* STYLE, NEED_HYDRATION */
|
|
7527
7602
|
)) : (openBlock(), createElementBlock(
|
|
@@ -7545,18 +7620,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7545
7620
|
createElementVNode("div", {
|
|
7546
7621
|
class: "user-feedback-entry-close",
|
|
7547
7622
|
onClick: onClose
|
|
7548
|
-
},
|
|
7549
|
-
createElementVNode(
|
|
7550
|
-
"img",
|
|
7551
|
-
{
|
|
7552
|
-
class: "user-feedback-entry-close-img",
|
|
7553
|
-
src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
|
|
7554
|
-
},
|
|
7555
|
-
null,
|
|
7556
|
-
-1
|
|
7557
|
-
/* HOISTED */
|
|
7558
|
-
)
|
|
7559
|
-
]))
|
|
7623
|
+
}, [..._hoisted_5])
|
|
7560
7624
|
],
|
|
7561
7625
|
36
|
|
7562
7626
|
/* STYLE, NEED_HYDRATION */
|
|
@@ -7567,7 +7631,17 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
7567
7631
|
|
|
7568
7632
|
script$2.__file = "src/user/components/UserFeedbackEntry.vue";
|
|
7569
7633
|
|
|
7570
|
-
const _hoisted_1$1 =
|
|
7634
|
+
const _hoisted_1$1 = /* @__PURE__ */ createElementVNode(
|
|
7635
|
+
"img",
|
|
7636
|
+
{
|
|
7637
|
+
class: "login-setting-img",
|
|
7638
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7639
|
+
},
|
|
7640
|
+
null,
|
|
7641
|
+
-1
|
|
7642
|
+
/* HOISTED */
|
|
7643
|
+
);
|
|
7644
|
+
const _hoisted_2$1 = { class: "login-setting-text" };
|
|
7571
7645
|
var script$1 = /* @__PURE__ */ defineComponent({
|
|
7572
7646
|
__name: "LoginSetting",
|
|
7573
7647
|
props: {
|
|
@@ -7628,19 +7702,10 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7628
7702
|
style: normalizeStyle(style.value)
|
|
7629
7703
|
},
|
|
7630
7704
|
[
|
|
7631
|
-
|
|
7632
|
-
"img",
|
|
7633
|
-
{
|
|
7634
|
-
class: "login-setting-img",
|
|
7635
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7636
|
-
},
|
|
7637
|
-
null,
|
|
7638
|
-
-1
|
|
7639
|
-
/* HOISTED */
|
|
7640
|
-
)),
|
|
7705
|
+
_hoisted_1$1,
|
|
7641
7706
|
createElementVNode(
|
|
7642
7707
|
"div",
|
|
7643
|
-
|
|
7708
|
+
_hoisted_2$1,
|
|
7644
7709
|
toDisplayString(loginRuleTip.value),
|
|
7645
7710
|
1
|
|
7646
7711
|
/* TEXT */
|
|
@@ -7655,7 +7720,17 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
7655
7720
|
|
|
7656
7721
|
script$1.__file = "src/user/components/LoginSetting.vue";
|
|
7657
7722
|
|
|
7658
|
-
const _hoisted_1 =
|
|
7723
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode(
|
|
7724
|
+
"img",
|
|
7725
|
+
{
|
|
7726
|
+
class: "user-resource-empty-img",
|
|
7727
|
+
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7728
|
+
},
|
|
7729
|
+
null,
|
|
7730
|
+
-1
|
|
7731
|
+
/* HOISTED */
|
|
7732
|
+
);
|
|
7733
|
+
const _hoisted_2 = { class: "user-resource-empty-text" };
|
|
7659
7734
|
var script = /* @__PURE__ */ defineComponent({
|
|
7660
7735
|
__name: "UserResourceEmpty",
|
|
7661
7736
|
props: {
|
|
@@ -7686,19 +7761,10 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
7686
7761
|
style: normalizeStyle(style.value)
|
|
7687
7762
|
},
|
|
7688
7763
|
[
|
|
7689
|
-
|
|
7690
|
-
"img",
|
|
7691
|
-
{
|
|
7692
|
-
class: "user-resource-empty-img",
|
|
7693
|
-
src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
|
|
7694
|
-
},
|
|
7695
|
-
null,
|
|
7696
|
-
-1
|
|
7697
|
-
/* HOISTED */
|
|
7698
|
-
)),
|
|
7764
|
+
_hoisted_1,
|
|
7699
7765
|
createElementVNode(
|
|
7700
7766
|
"div",
|
|
7701
|
-
|
|
7767
|
+
_hoisted_2,
|
|
7702
7768
|
" \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 ",
|
|
7703
7769
|
1
|
|
7704
7770
|
/* TEXT */
|
|
@@ -7740,10 +7806,6 @@ const $app = {
|
|
|
7740
7806
|
const appKitOptions = useAppKitOptions();
|
|
7741
7807
|
appKitOptions.tempToken = token;
|
|
7742
7808
|
},
|
|
7743
|
-
setTempAppcode: (appcode) => {
|
|
7744
|
-
const appKitOptions = useAppKitOptions();
|
|
7745
|
-
appKitOptions.tempAppcode = appcode;
|
|
7746
|
-
},
|
|
7747
7809
|
requestPayment: (options) => {
|
|
7748
7810
|
},
|
|
7749
7811
|
invokeRecharge: (options) => {
|