@uxda/appkit 4.1.12 → 4.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/.eslintrc.mjs +7 -7
  2. package/README.md +187 -187
  3. package/babel.config.js +12 -12
  4. package/dist/appkit.css +26 -22
  5. package/dist/assets/asset-3B_CoPto +1 -0
  6. package/dist/index.js +1156 -1063
  7. package/package.json +77 -75
  8. package/project.config.json +15 -15
  9. package/project.tt.json +13 -13
  10. package/rollup.config.mjs +56 -56
  11. package/src/Appkit.ts +72 -65
  12. package/src/balance/api/endpoints.ts +126 -126
  13. package/src/balance/api/index.ts +82 -82
  14. package/src/balance/components/AccountView.vue +748 -748
  15. package/src/balance/components/BalanceCard.vue +205 -205
  16. package/src/balance/components/BalanceReminder.vue +85 -85
  17. package/src/balance/components/ConsumptionFilter.vue +218 -218
  18. package/src/balance/components/ConsumptionRules.vue +68 -68
  19. package/src/balance/components/DateFilter.vue +249 -227
  20. package/src/balance/components/DateRange.vue +80 -77
  21. package/src/balance/components/ListFilter.vue +63 -63
  22. package/src/balance/components/ListFilterPicker.vue +186 -186
  23. package/src/balance/components/SecondBalance.vue +71 -71
  24. package/src/balance/components/Tip.vue +45 -45
  25. package/src/balance/components/index.ts +13 -13
  26. package/src/balance/types.ts +91 -91
  27. package/src/components/bt-cropper/index.vue +774 -774
  28. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  29. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  30. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  31. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  32. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  33. package/src/components/bt-cropper/utils/ratio.js +3 -3
  34. package/src/components/bt-cropper/utils/tools.js +25 -25
  35. package/src/components/dd-area/index.vue +225 -225
  36. package/src/components/dd-icon/doc.md +21 -21
  37. package/src/components/dd-icon/index.vue +23 -23
  38. package/src/components/dd-notice-bar/index.vue +78 -78
  39. package/src/components/dd-search/doc.md +34 -34
  40. package/src/components/dd-search/index.vue +168 -168
  41. package/src/components/dd-selector/index.vue +124 -124
  42. package/src/components/dd-skeleton/doc.md +19 -19
  43. package/src/components/dd-skeleton/index.vue +36 -36
  44. package/src/components/ocr-id/index.vue +114 -114
  45. package/src/components/ocr-id/types.d.ts +12 -12
  46. package/src/global.ts +6 -6
  47. package/src/index.ts +93 -89
  48. package/src/main.scss +1 -1
  49. package/src/notice/api/endpoints.ts +17 -17
  50. package/src/notice/api/index.ts +82 -82
  51. package/src/notice/components/NoticeBanner.vue +243 -243
  52. package/src/notice/components/NoticeEntry.vue +99 -99
  53. package/src/notice/components/NoticeList.vue +315 -315
  54. package/src/notice/components/NoticePopup.vue +162 -161
  55. package/src/notice/components/index.ts +5 -5
  56. package/src/notice/components/useCommonList.ts +86 -86
  57. package/src/notice/components/useNotice.ts +35 -35
  58. package/src/notice/index.ts +1 -1
  59. package/src/notice/types.ts +25 -25
  60. package/src/payment/api/config.ts +7 -7
  61. package/src/payment/api/endpoints.ts +103 -103
  62. package/src/payment/api/index.ts +76 -71
  63. package/src/payment/components/AmountPicker.vue +93 -93
  64. package/src/payment/components/RechargeResult.vue +69 -69
  65. package/src/payment/components/RechargeView.vue +154 -153
  66. package/src/payment/components/RightsPicker.vue +105 -105
  67. package/src/payment/components/TradeView.vue +294 -298
  68. package/src/payment/components/UserAgreement.vue +234 -234
  69. package/src/payment/components/index.ts +22 -22
  70. package/src/payment/index.ts +5 -5
  71. package/src/payment/services/index.ts +16 -16
  72. package/src/payment/services/invoke-recharge.ts +25 -25
  73. package/src/payment/services/request-payment.ts +58 -58
  74. package/src/payment/types.ts +28 -28
  75. package/src/register/components/SelfRegistration.vue +254 -254
  76. package/src/register/components/index.ts +2 -2
  77. package/src/shared/components/AppDrawer.vue +58 -58
  78. package/src/shared/components/AppVerify.vue +129 -129
  79. package/src/shared/components/DeviceVersion.vue +68 -68
  80. package/src/shared/components/EmptyView.vue +33 -33
  81. package/src/shared/components/OcrBusinessLicense.vue +133 -130
  82. package/src/shared/components/OcrIcon.vue +133 -132
  83. package/src/shared/components/PageHeader.vue +79 -79
  84. package/src/shared/components/index.ts +8 -8
  85. package/src/shared/composables/index.ts +7 -7
  86. package/src/shared/composables/useCountdown.ts +46 -46
  87. package/src/shared/composables/useCrypto.ts +76 -76
  88. package/src/shared/composables/useDragBox.ts +97 -97
  89. package/src/shared/composables/useEncode.ts +43 -43
  90. package/src/shared/composables/useSafeArea.ts +46 -46
  91. package/src/shared/composables/useTabbar.ts +24 -24
  92. package/src/shared/composables/useUpload.ts +54 -54
  93. package/src/shared/composables/useValidator.ts +31 -31
  94. package/src/shared/http/Http.ts +136 -136
  95. package/src/shared/http/index.ts +1 -1
  96. package/src/shared/http/types.ts +157 -157
  97. package/src/shared/index.ts +3 -3
  98. package/src/shared/weixin/payment.ts +38 -38
  99. package/src/styles/fonts.scss +2 -2
  100. package/src/styles/vars.scss +3 -3
  101. package/src/user/api/endpoints.ts +17 -17
  102. package/src/user/api/index.ts +87 -87
  103. package/src/user/components/LoginSetting.vue +114 -114
  104. package/src/user/components/UserBinding.vue +307 -307
  105. package/src/user/components/UserBindingSuccess.vue +80 -80
  106. package/src/user/components/UserEntry.vue +137 -137
  107. package/src/user/components/UserFeedback.vue +431 -431
  108. package/src/user/components/UserFeedbackEntry.vue +192 -192
  109. package/src/user/components/UserHeadCrop.vue +65 -65
  110. package/src/user/components/UserInfo.vue +637 -637
  111. package/src/user/components/UserResourceEmpty.vue +75 -75
  112. package/src/user/components/index.ts +21 -21
  113. package/src/user/index.ts +1 -1
  114. package/tsconfig.json +30 -30
  115. package/types/global.d.ts +21 -21
  116. package/types/vue.d.ts +10 -10
package/dist/index.js CHANGED
@@ -4,10 +4,10 @@ import '@nutui/nutui-taro/dist/packages/checkbox/style/css';
4
4
  import { defineComponent, reactive, openBlock, createBlock, withCtx, createElementBlock, Fragment, renderList, normalizeClass, createElementVNode, toDisplayString, createTextVNode, ref, computed, onUnmounted, createCommentVNode, renderSlot, createVNode, unref, isRef, normalizeStyle, onMounted, createStaticVNode, watch, resolveComponent, withDirectives, vShow, useModel, mergeModels, vModelText, watchPostEffect, withModifiers } from 'vue';
5
5
  import '@nutui/nutui-taro/dist/packages/grid/style/css';
6
6
  import '@nutui/nutui-taro/dist/packages/griditem/style/css';
7
- import '@nutui/nutui-taro/dist/packages/popup/style/css';
8
7
  import Taro, { useDidShow, useRouter } from '@tarojs/taro';
8
+ import '@nutui/nutui-taro/dist/packages/popup/style/css';
9
9
  import { isIdentityCard, isMobilePhone } from 'validator';
10
- import { NsForm, NsInput, NsButton, NsIcon, useNutshell } from '@uxda/nutshell/taro';
10
+ import { NsForm, NsInput, NsButton, NsIcon, usePopup, useNutshell } from '@uxda/nutshell/taro';
11
11
  import debounce from 'lodash/debounce';
12
12
  import '@nutui/nutui-taro/dist/packages/dialog/style/css';
13
13
  import '@nutui/nutui-taro/dist/packages/datepicker/style/css';
@@ -23,8 +23,8 @@ import '@nutui/nutui-taro/dist/packages/skeleton/style/css';
23
23
  import '@nutui/nutui-taro/dist/packages/steps/style/css';
24
24
  import '@nutui/nutui-taro/dist/packages/step/style/css';
25
25
 
26
- const _hoisted_1$B = { class: "token-line number" };
27
- const _hoisted_2$o = { class: "number" };
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$B,
66
+ _hoisted_1$E,
67
67
  toDisplayString(amount.token),
68
68
  1
69
69
  /* TEXT */
70
70
  ),
71
71
  createElementVNode("h5", null, [
72
- _cache[0] || (_cache[0] = createTextVNode("\xA5")),
72
+ createTextVNode("\xA5"),
73
73
  createElementVNode(
74
74
  "span",
75
- _hoisted_2$o,
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$A = {
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$A,
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$z = { class: "drawer-body" };
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$z, [
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$y = { class: "app-verify column" };
416
- const _hoisted_2$n = { class: "caption" };
417
- const _hoisted_3$i = { class: "number" };
418
- const _hoisted_4$e = { class: "form-btn" };
419
- const _hoisted_5$a = {
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$5 = { class: "row buttons" };
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$y, [
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$n,
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$i,
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$e, [
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$a,
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$5, [
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(() => _cache[3] || (_cache[3] = [
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(() => _cache[4] || (_cache[4] = [
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$x = { key: 0 };
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$x,
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
- }, _cache[0] || (_cache[0] = [
594
- createElementVNode(
595
- "img",
596
- {
597
- src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
598
- class: "dd-notice-bar__close-img"
599
- },
600
- null,
601
- -1
602
- /* HOISTED */
603
- )
604
- ]))) : createCommentVNode("v-if", true)
606
+ }, [..._hoisted_3$r])) : createCommentVNode("v-if", true)
605
607
  ],
606
608
  6
607
609
  /* CLASS, STYLE */
@@ -721,6 +723,7 @@ const appKitOptions = {
721
723
  tenant: () => "",
722
724
  token: () => "",
723
725
  tempToken: () => "",
726
+ tempAppcode: () => "",
724
727
  baseUrl: () => "",
725
728
  401() {
726
729
  },
@@ -951,7 +954,7 @@ var script$C = /* @__PURE__ */ defineComponent({
951
954
  onClick: onIconClick
952
955
  },
953
956
  [
954
- createVNode(unref(NsIcon), { name: "https://simple.shensi.tech/icons/ocr.svg" })
957
+ createVNode(unref(NsIcon), { name: "https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" })
955
958
  ],
956
959
  2
957
960
  /* CLASS */
@@ -1061,7 +1064,7 @@ var script$B = /* @__PURE__ */ defineComponent({
1061
1064
  onClick: onIconClick
1062
1065
  },
1063
1066
  [
1064
- createVNode(unref(NsIcon), { name: "https://simple.shensi.tech/icons/ocr.svg" })
1067
+ createVNode(unref(NsIcon), { name: "https://cdn.ddjf.com/static/images/beidouxing/ocr-icon.png" })
1065
1068
  ],
1066
1069
  2
1067
1070
  /* CLASS */
@@ -1264,12 +1267,12 @@ const vendor$2 = {
1264
1267
  });
1265
1268
  }
1266
1269
  };
1267
- function useHttp$2() {
1270
+ function useHttp$2(defaultHeader) {
1268
1271
  const appkitOptions = useAppKitOptions();
1269
1272
  const headers = {
1270
1273
  Token: appkitOptions.tempToken() || appkitOptions.token(),
1271
- Appcode: appkitOptions.app(),
1272
- cookie: `tid=${appkitOptions.tenant()}`,
1274
+ Appcode: defaultHeader?.Appcode || appkitOptions.app(),
1275
+ cookie: `tid=${defaultHeader?.Tenant || appkitOptions.tenant()}`,
1273
1276
  gray: appkitOptions.gray ? appkitOptions.gray() : "0"
1274
1277
  };
1275
1278
  const $http = createHttp({
@@ -1370,17 +1373,17 @@ const services$1 = [
1370
1373
  invokeRecharge$1
1371
1374
  ];
1372
1375
 
1373
- const _hoisted_1$w = { class: "view recharge-view" };
1374
- const _hoisted_2$m = { class: "flex-grow" };
1375
- const _hoisted_3$h = { class: "amount-footer" };
1376
- const _hoisted_4$d = { class: "agreement" };
1376
+ const _hoisted_1$z = { class: "view recharge-view" };
1377
+ const _hoisted_2$v = { class: "flex-grow" };
1378
+ const _hoisted_3$q = { class: "amount-footer" };
1379
+ const _hoisted_4$k = { class: "agreement" };
1377
1380
  var script$A = /* @__PURE__ */ defineComponent({
1378
1381
  __name: "RechargeView",
1379
1382
  props: {
1380
1383
  app: { type: String, required: true },
1381
1384
  tenant: { type: String, required: true }
1382
1385
  },
1383
- emits: ["complete"],
1386
+ emits: ["complete", "agree"],
1384
1387
  setup(__props, { emit: __emit }) {
1385
1388
  const props = __props;
1386
1389
  const emit = __emit;
@@ -1391,17 +1394,18 @@ var script$A = /* @__PURE__ */ defineComponent({
1391
1394
  buttonLoading: false
1392
1395
  });
1393
1396
  const amounts = ref([]);
1394
- const onAgreementLinkClick = ($event) => {
1395
- state.agreementOpen = true;
1397
+ const onAgreementLinkClick = (e) => {
1398
+ e.preventDefault();
1399
+ e.stopImmediatePropagation();
1400
+ emit("agree");
1396
1401
  };
1397
1402
  const onAmountSelect = (selected) => {
1398
1403
  state.selected = selected;
1399
1404
  };
1400
1405
  onMounted(() => {
1401
- const $http = useHttp$2();
1406
+ const $http = useHttp$2({ Appcode: props.app, Tenant: props.tenant });
1402
1407
  $http.get(endpoints.\u83B7\u53D6\u5145\u503C\u91D1\u989D\u5217\u8868, {
1403
1408
  app: props.app,
1404
- // stage: 'aiApproveRecharge', // 支付场景
1405
1409
  tenant: props.tenant
1406
1410
  }).then((response) => {
1407
1411
  amounts.value = response;
@@ -1437,22 +1441,22 @@ var script$A = /* @__PURE__ */ defineComponent({
1437
1441
  return (_ctx, _cache) => {
1438
1442
  const _component_nut_checkbox = Checkbox;
1439
1443
  const _component_nut_button = Button;
1440
- return openBlock(), createElementBlock("view", _hoisted_1$w, [
1441
- createElementVNode("view", _hoisted_2$m, [
1444
+ return openBlock(), createElementBlock("view", _hoisted_1$z, [
1445
+ createElementVNode("view", _hoisted_2$v, [
1442
1446
  createVNode(script$I, {
1443
1447
  items: amounts.value,
1444
1448
  selected: state.selected,
1445
1449
  onChange: onAmountSelect
1446
1450
  }, null, 8, ["items", "selected"])
1447
1451
  ]),
1448
- createElementVNode("view", _hoisted_3$h, [
1449
- createElementVNode("view", _hoisted_4$d, [
1452
+ createElementVNode("view", _hoisted_3$q, [
1453
+ createElementVNode("view", _hoisted_4$k, [
1450
1454
  createVNode(_component_nut_checkbox, {
1451
1455
  modelValue: state.agreed,
1452
1456
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
1453
1457
  }, {
1454
1458
  default: withCtx(() => [
1455
- _cache[2] || (_cache[2] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1459
+ createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1456
1460
  createElementVNode("a", {
1457
1461
  class: "link inline",
1458
1462
  onClick: onAgreementLinkClick
@@ -1469,18 +1473,13 @@ var script$A = /* @__PURE__ */ defineComponent({
1469
1473
  onClick: onPayClick,
1470
1474
  class: "recharge-button"
1471
1475
  }, {
1472
- default: withCtx(() => _cache[3] || (_cache[3] = [
1476
+ default: withCtx(() => [
1473
1477
  createTextVNode("\u7ACB\u5373\u5145\u503C")
1474
- ])),
1478
+ ]),
1475
1479
  _: 1
1476
1480
  /* STABLE */
1477
1481
  }, 8, ["loading"])
1478
- ]),
1479
- createVNode(unref(script$G), {
1480
- modelValue: state.agreementOpen,
1481
- "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreementOpen = $event),
1482
- title: "\u5145\u503C\u534F\u8BAE"
1483
- }, null, 8, ["modelValue"])
1482
+ ])
1484
1483
  ]);
1485
1484
  };
1486
1485
  }
@@ -1488,11 +1487,13 @@ var script$A = /* @__PURE__ */ defineComponent({
1488
1487
 
1489
1488
  script$A.__file = "src/payment/components/RechargeView.vue";
1490
1489
 
1491
- const _hoisted_1$v = { class: "agreement-doc" };
1490
+ const _hoisted_1$y = { class: "agreement-doc" };
1491
+ const _hoisted_2$u = /* @__PURE__ */ createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96);
1492
+ const _hoisted_98 = [
1493
+ _hoisted_2$u
1494
+ ];
1492
1495
  function render$2(_ctx, _cache) {
1493
- return openBlock(), createElementBlock("view", _hoisted_1$v, _cache[0] || (_cache[0] = [
1494
- 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)
1495
- ]));
1496
+ return openBlock(), createElementBlock("view", _hoisted_1$y, [..._hoisted_98]);
1496
1497
  }
1497
1498
 
1498
1499
  /* unplugin-vue-components disabled */const script$z = {};
@@ -1500,13 +1501,20 @@ function render$2(_ctx, _cache) {
1500
1501
  script$z.render = render$2;
1501
1502
  script$z.__file = "src/payment/components/UserAgreement.vue";
1502
1503
 
1503
- const _hoisted_1$u = { class: "recharge-result" };
1504
- const _hoisted_2$l = { class: "content" };
1505
- const _hoisted_3$g = {
1504
+ const _hoisted_1$x = { class: "recharge-result" };
1505
+ const _hoisted_2$t = { class: "content" };
1506
+ const _hoisted_3$p = /* @__PURE__ */ createElementVNode(
1507
+ "div",
1508
+ { class: "figure" },
1509
+ null,
1510
+ -1
1511
+ /* HOISTED */
1512
+ );
1513
+ const _hoisted_4$j = {
1506
1514
  key: 0,
1507
1515
  class: "caption"
1508
1516
  };
1509
- const _hoisted_4$c = {
1517
+ const _hoisted_5$g = {
1510
1518
  key: 1,
1511
1519
  class: "caption"
1512
1520
  };
@@ -1528,15 +1536,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1528
1536
  }
1529
1537
  return (_ctx, _cache) => {
1530
1538
  const _component_nut_button = Button;
1531
- return openBlock(), createElementBlock("div", _hoisted_1$u, [
1532
- createElementVNode("div", _hoisted_2$l, [
1533
- _cache[1] || (_cache[1] = createElementVNode(
1534
- "div",
1535
- { class: "figure" },
1536
- null,
1537
- -1
1538
- /* HOISTED */
1539
- )),
1539
+ return openBlock(), createElementBlock("div", _hoisted_1$x, [
1540
+ createElementVNode("div", _hoisted_2$t, [
1541
+ _hoisted_3$p,
1540
1542
  createElementVNode(
1541
1543
  "h2",
1542
1544
  null,
@@ -1544,9 +1546,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1544
1546
  1
1545
1547
  /* TEXT */
1546
1548
  ),
1547
- _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$g, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1549
+ _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_4$j, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1548
1550
  "div",
1549
- _hoisted_4$c,
1551
+ _hoisted_5$g,
1550
1552
  toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
1551
1553
  1
1552
1554
  /* TEXT */
@@ -1556,9 +1558,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1556
1558
  type: "default",
1557
1559
  onClick: onBackClick
1558
1560
  }, {
1559
- default: withCtx(() => _cache[0] || (_cache[0] = [
1561
+ default: withCtx(() => [
1560
1562
  createTextVNode("\u8FD4\u56DE")
1561
- ])),
1563
+ ]),
1562
1564
  _: 1
1563
1565
  /* STABLE */
1564
1566
  })
@@ -1570,9 +1572,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1570
1572
 
1571
1573
  script$y.__file = "src/payment/components/RechargeResult.vue";
1572
1574
 
1573
- const _hoisted_1$t = { class: "tag" };
1574
- const _hoisted_2$k = { class: "token-line number" };
1575
- const _hoisted_3$f = { class: "number" };
1575
+ const _hoisted_1$w = { class: "tag" };
1576
+ const _hoisted_2$s = { class: "token-line number" };
1577
+ const _hoisted_3$o = { class: "number" };
1576
1578
  var script$x = /* @__PURE__ */ defineComponent({
1577
1579
  __name: "RightsPicker",
1578
1580
  props: {
@@ -1611,23 +1613,23 @@ var script$x = /* @__PURE__ */ defineComponent({
1611
1613
  default: withCtx(() => [
1612
1614
  createElementVNode(
1613
1615
  "div",
1614
- _hoisted_1$t,
1616
+ _hoisted_1$w,
1615
1617
  toDisplayString(amount.paymentDesc),
1616
1618
  1
1617
1619
  /* TEXT */
1618
1620
  ),
1619
1621
  createElementVNode(
1620
1622
  "h4",
1621
- _hoisted_2$k,
1623
+ _hoisted_2$s,
1622
1624
  toDisplayString(amount.priceRightNum) + "\u7B14",
1623
1625
  1
1624
1626
  /* TEXT */
1625
1627
  ),
1626
1628
  createElementVNode("h5", null, [
1627
- _cache[0] || (_cache[0] = createTextVNode("\xA5")),
1629
+ createTextVNode("\xA5"),
1628
1630
  createElementVNode(
1629
1631
  "span",
1630
- _hoisted_3$f,
1632
+ _hoisted_3$o,
1631
1633
  toDisplayString(amount.paymentAmount),
1632
1634
  1
1633
1635
  /* TEXT */
@@ -1651,55 +1653,71 @@ var script$x = /* @__PURE__ */ defineComponent({
1651
1653
 
1652
1654
  script$x.__file = "src/payment/components/RightsPicker.vue";
1653
1655
 
1654
- const _hoisted_1$s = { class: "view recharge-view2" };
1655
- const _hoisted_2$j = { class: "flex-grow" };
1656
- const _hoisted_3$e = {
1656
+ const _hoisted_1$v = { class: "view recharge-view2" };
1657
+ const _hoisted_2$r = { class: "flex-grow" };
1658
+ const _hoisted_3$n = {
1657
1659
  key: 0,
1658
1660
  class: "bean-buy"
1659
1661
  };
1660
- const _hoisted_4$b = { class: "left" };
1661
- const _hoisted_5$9 = {
1662
+ const _hoisted_4$i = { class: "left" };
1663
+ const _hoisted_5$f = /* @__PURE__ */ createElementVNode(
1664
+ "div",
1665
+ { class: "title" },
1666
+ "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1667
+ -1
1668
+ /* HOISTED */
1669
+ );
1670
+ const _hoisted_6$b = {
1662
1671
  key: 0,
1663
1672
  class: "amount"
1664
1673
  };
1665
- const _hoisted_6$4 = {
1674
+ const _hoisted_7$9 = {
1666
1675
  key: 1,
1667
1676
  class: "amount"
1668
1677
  };
1669
- const _hoisted_7$4 = { class: "amount" };
1670
- const _hoisted_8$4 = ["src"];
1671
- const _hoisted_9$3 = { class: "amount-footer" };
1672
- const _hoisted_10$2 = {
1678
+ const _hoisted_8$5 = { class: "amount" };
1679
+ const _hoisted_9$5 = ["src"];
1680
+ const _hoisted_10$5 = { class: "amount-footer" };
1681
+ const _hoisted_11$5 = {
1673
1682
  key: 0,
1674
1683
  class: "agreement"
1675
1684
  };
1676
- const _hoisted_11$2 = { class: "buy-amount" };
1677
- const _hoisted_12$2 = { class: "left" };
1678
- const _hoisted_13$2 = { class: "amount" };
1679
- const _hoisted_14$2 = { class: "item" };
1680
- const _hoisted_15$2 = { class: "item" };
1681
- const _hoisted_16$2 = { class: "item" };
1685
+ const _hoisted_12$5 = { class: "buy-amount" };
1686
+ const _hoisted_13$5 = { class: "left" };
1687
+ const _hoisted_14$4 = { class: "amount" };
1688
+ const _hoisted_15$3 = /* @__PURE__ */ createElementVNode(
1689
+ "i",
1690
+ null,
1691
+ "\uFFE5",
1692
+ -1
1693
+ /* HOISTED */
1694
+ );
1695
+ const _hoisted_16$3 = { class: "item" };
1696
+ const _hoisted_17$2 = { class: "item" };
1697
+ const _hoisted_18$2 = { class: "item" };
1682
1698
  var script$w = /* @__PURE__ */ defineComponent({
1683
1699
  __name: "TradeView",
1684
1700
  props: {
1685
1701
  app: { type: String, required: true },
1686
1702
  tenant: { type: String, required: true }
1687
1703
  },
1688
- emits: ["complete"],
1704
+ emits: ["complete", "agree"],
1689
1705
  setup(__props, { emit: __emit }) {
1690
1706
  const props = __props;
1691
1707
  const emit = __emit;
1692
1708
  const state = reactive({
1693
1709
  agreed: false,
1694
1710
  selected: 0,
1695
- agreementOpen: false,
1711
+ // agreementOpen: false,
1696
1712
  buttonLoading: false
1697
1713
  });
1698
1714
  const balance = ref(0);
1699
1715
  const amounts = ref([]);
1700
1716
  const selectBean = ref(false);
1701
- const onAgreementLinkClick = ($event) => {
1702
- state.agreementOpen = true;
1717
+ const onAgreementLinkClick = (e) => {
1718
+ e.preventDefault();
1719
+ e.stopImmediatePropagation();
1720
+ emit("agree");
1703
1721
  };
1704
1722
  const onAmountSelect = (selected) => {
1705
1723
  state.selected = selected;
@@ -1766,31 +1784,25 @@ var script$w = /* @__PURE__ */ defineComponent({
1766
1784
  const _component_nut_checkbox = Checkbox;
1767
1785
  const _component_nut_button = Button;
1768
1786
  const _component_nut_dialog = Dialog;
1769
- return openBlock(), createElementBlock("view", _hoisted_1$s, [
1770
- createElementVNode("view", _hoisted_2$j, [
1787
+ return openBlock(), createElementBlock("view", _hoisted_1$v, [
1788
+ createElementVNode("view", _hoisted_2$r, [
1771
1789
  createVNode(script$x, {
1772
1790
  items: amounts.value,
1773
1791
  selected: state.selected,
1774
1792
  onChange: onAmountSelect
1775
1793
  }, null, 8, ["items", "selected"]),
1776
- amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$e, [
1777
- createElementVNode("div", _hoisted_4$b, [
1778
- _cache[5] || (_cache[5] = createElementVNode(
1779
- "div",
1780
- { class: "title" },
1781
- "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1782
- -1
1783
- /* HOISTED */
1784
- )),
1794
+ amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$n, [
1795
+ createElementVNode("div", _hoisted_4$i, [
1796
+ _hoisted_5$f,
1785
1797
  !selectBean.value ? (openBlock(), createElementBlock(
1786
1798
  "div",
1787
- _hoisted_5$9,
1799
+ _hoisted_6$b,
1788
1800
  "\u4F59\u989D " + toDisplayString(balance.value),
1789
1801
  1
1790
1802
  /* TEXT */
1791
1803
  )) : (openBlock(), createElementBlock(
1792
1804
  "div",
1793
- _hoisted_6$4,
1805
+ _hoisted_7$9,
1794
1806
  "\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1795
1807
  1
1796
1808
  /* TEXT */
@@ -1803,7 +1815,7 @@ var script$w = /* @__PURE__ */ defineComponent({
1803
1815
  }, [
1804
1816
  createElementVNode(
1805
1817
  "div",
1806
- _hoisted_7$4,
1818
+ _hoisted_8$5,
1807
1819
  "-" + toDisplayString(amounts.value[state.selected].paymentAmount),
1808
1820
  1
1809
1821
  /* TEXT */
@@ -1811,18 +1823,18 @@ var script$w = /* @__PURE__ */ defineComponent({
1811
1823
  createElementVNode("img", {
1812
1824
  class: "icon",
1813
1825
  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, _hoisted_8$4)
1826
+ }, null, 8, _hoisted_9$5)
1815
1827
  ])) : createCommentVNode("v-if", true)
1816
1828
  ])) : createCommentVNode("v-if", true)
1817
1829
  ]),
1818
- createElementVNode("view", _hoisted_9$3, [
1819
- !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_10$2, [
1830
+ createElementVNode("view", _hoisted_10$5, [
1831
+ !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_11$5, [
1820
1832
  createVNode(_component_nut_checkbox, {
1821
1833
  modelValue: state.agreed,
1822
1834
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
1823
1835
  }, {
1824
1836
  default: withCtx(() => [
1825
- _cache[6] || (_cache[6] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1837
+ createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1826
1838
  createElementVNode("a", {
1827
1839
  class: "link inline",
1828
1840
  onClick: onAgreementLinkClick
@@ -1832,17 +1844,11 @@ var script$w = /* @__PURE__ */ defineComponent({
1832
1844
  /* STABLE */
1833
1845
  }, 8, ["modelValue"])
1834
1846
  ])) : createCommentVNode("v-if", true),
1835
- createElementVNode("div", _hoisted_11$2, [
1836
- createElementVNode("div", _hoisted_12$2, [
1837
- _cache[8] || (_cache[8] = createTextVNode(" \u5F85\u652F\u4ED8\uFF1A ")),
1838
- createElementVNode("span", _hoisted_13$2, [
1839
- _cache[7] || (_cache[7] = createElementVNode(
1840
- "i",
1841
- null,
1842
- "\uFFE5",
1843
- -1
1844
- /* HOISTED */
1845
- )),
1847
+ createElementVNode("div", _hoisted_12$5, [
1848
+ createElementVNode("div", _hoisted_13$5, [
1849
+ createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
1850
+ createElementVNode("span", _hoisted_14$4, [
1851
+ _hoisted_15$3,
1846
1852
  createTextVNode(
1847
1853
  toDisplayString(currentAmount.value),
1848
1854
  1
@@ -1857,31 +1863,20 @@ var script$w = /* @__PURE__ */ defineComponent({
1857
1863
  onClick: onPayClick,
1858
1864
  class: "recharge-button"
1859
1865
  }, {
1860
- default: withCtx(() => _cache[9] || (_cache[9] = [
1866
+ default: withCtx(() => [
1861
1867
  createTextVNode("\u8D2D\u4E70")
1862
- ])),
1868
+ ]),
1863
1869
  _: 1
1864
1870
  /* STABLE */
1865
1871
  }, 8, ["loading"])
1866
1872
  ])
1867
1873
  ]),
1868
- createVNode(unref(script$G), {
1869
- modelValue: state.agreementOpen,
1870
- "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => state.agreementOpen = $event),
1871
- title: "\u5145\u503C\u534F\u8BAE"
1872
- }, {
1873
- default: withCtx(() => [
1874
- createVNode(script$z)
1875
- ]),
1876
- _: 1
1877
- /* STABLE */
1878
- }, 8, ["modelValue"]),
1879
1874
  createVNode(_component_nut_dialog, {
1880
1875
  title: "\u786E\u8BA4\u8D2D\u4E70",
1881
1876
  "custom-class": "trade-dialog",
1882
1877
  visible: showDialog.value,
1883
- "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => showDialog.value = $event),
1884
- onCancel: _cache[4] || (_cache[4] = ($event) => showDialog.value = !showDialog.value),
1878
+ "onUpdate:visible": _cache[2] || (_cache[2] = ($event) => showDialog.value = $event),
1879
+ onCancel: _cache[3] || (_cache[3] = ($event) => showDialog.value = !showDialog.value),
1885
1880
  onOk: beanPay
1886
1881
  }, {
1887
1882
  default: withCtx(() => [
@@ -1891,21 +1886,21 @@ var script$w = /* @__PURE__ */ defineComponent({
1891
1886
  [
1892
1887
  createElementVNode(
1893
1888
  "div",
1894
- _hoisted_14$2,
1889
+ _hoisted_16$3,
1895
1890
  "\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
1896
1891
  1
1897
1892
  /* TEXT */
1898
1893
  ),
1899
1894
  createElementVNode(
1900
1895
  "div",
1901
- _hoisted_15$2,
1896
+ _hoisted_17$2,
1902
1897
  "\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
1903
1898
  1
1904
1899
  /* TEXT */
1905
1900
  ),
1906
1901
  createElementVNode(
1907
1902
  "div",
1908
- _hoisted_16$2,
1903
+ _hoisted_18$2,
1909
1904
  "\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1910
1905
  1
1911
1906
  /* TEXT */
@@ -1933,11 +1928,84 @@ const components = {
1933
1928
  TradeView: script$w
1934
1929
  };
1935
1930
 
1936
- const _hoisted_1$r = { class: "account-card" };
1937
- const _hoisted_2$i = { class: "card" };
1938
- const _hoisted_3$d = { class: "card-row" };
1939
- const _hoisted_4$a = { class: "card-row-left" };
1940
- const _hoisted_5$8 = { class: "bean-nums number" };
1931
+ const _hoisted_1$u = { class: "account-card" };
1932
+ const _hoisted_2$q = { class: "card" };
1933
+ const _hoisted_3$m = { class: "card-row" };
1934
+ const _hoisted_4$h = { class: "card-row-left" };
1935
+ const _hoisted_5$e = /* @__PURE__ */ createElementVNode(
1936
+ "div",
1937
+ { class: "bean-box" },
1938
+ [
1939
+ /* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
1940
+ /* @__PURE__ */ createElementVNode("img", {
1941
+ class: "bean-icon",
1942
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
1943
+ })
1944
+ ]),
1945
+ /* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
1946
+ ],
1947
+ -1
1948
+ /* HOISTED */
1949
+ );
1950
+ const _hoisted_6$a = { class: "bean-nums number" };
1951
+ const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
1952
+ "div",
1953
+ { class: "account-info-name" },
1954
+ "\u8D26\u6237\u660E\u7EC6",
1955
+ -1
1956
+ /* HOISTED */
1957
+ );
1958
+ const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
1959
+ "div",
1960
+ { class: "account-info-icon" },
1961
+ [
1962
+ /* @__PURE__ */ createElementVNode("img", {
1963
+ class: "icon",
1964
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
1965
+ })
1966
+ ],
1967
+ -1
1968
+ /* HOISTED */
1969
+ );
1970
+ const _hoisted_9$4 = [
1971
+ _hoisted_7$8,
1972
+ _hoisted_8$4
1973
+ ];
1974
+ const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
1975
+ "div",
1976
+ { class: "line" },
1977
+ null,
1978
+ -1
1979
+ /* HOISTED */
1980
+ );
1981
+ const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
1982
+ "div",
1983
+ { class: "card-row-left desc" },
1984
+ "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
1985
+ -1
1986
+ /* HOISTED */
1987
+ );
1988
+ const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
1989
+ "div",
1990
+ null,
1991
+ "\u5145\u503C",
1992
+ -1
1993
+ /* HOISTED */
1994
+ );
1995
+ const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
1996
+ "img",
1997
+ {
1998
+ class: "pay-icon",
1999
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2000
+ },
2001
+ null,
2002
+ -1
2003
+ /* HOISTED */
2004
+ );
2005
+ const _hoisted_14$3 = [
2006
+ _hoisted_12$4,
2007
+ _hoisted_13$4
2008
+ ];
1941
2009
  var script$v = /* @__PURE__ */ defineComponent({
1942
2010
  __name: "BalanceCard",
1943
2011
  props: {
@@ -1981,28 +2049,14 @@ var script$v = /* @__PURE__ */ defineComponent({
1981
2049
  reload: loadBalance
1982
2050
  });
1983
2051
  return (_ctx, _cache) => {
1984
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
1985
- createElementVNode("div", _hoisted_2$i, [
1986
- createElementVNode("div", _hoisted_3$d, [
1987
- createElementVNode("div", _hoisted_4$a, [
1988
- _cache[0] || (_cache[0] = createElementVNode(
1989
- "div",
1990
- { class: "bean-box" },
1991
- [
1992
- createElementVNode("div", { class: "bean-icon-box" }, [
1993
- createElementVNode("img", {
1994
- class: "bean-icon",
1995
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
1996
- })
1997
- ]),
1998
- createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
1999
- ],
2000
- -1
2001
- /* HOISTED */
2002
- )),
2052
+ return openBlock(), createElementBlock("div", _hoisted_1$u, [
2053
+ createElementVNode("div", _hoisted_2$q, [
2054
+ createElementVNode("div", _hoisted_3$m, [
2055
+ createElementVNode("div", _hoisted_4$h, [
2056
+ _hoisted_5$e,
2003
2057
  createElementVNode(
2004
2058
  "div",
2005
- _hoisted_5$8,
2059
+ _hoisted_6$a,
2006
2060
  toDisplayString(balance.value.total || 0),
2007
2061
  1
2008
2062
  /* TEXT */
@@ -2012,67 +2066,17 @@ var script$v = /* @__PURE__ */ defineComponent({
2012
2066
  createElementVNode("div", {
2013
2067
  class: "account-info-entry",
2014
2068
  onClick: gotoDetail
2015
- }, _cache[1] || (_cache[1] = [
2016
- createElementVNode(
2017
- "div",
2018
- { class: "account-info-name" },
2019
- "\u8D26\u6237\u660E\u7EC6",
2020
- -1
2021
- /* HOISTED */
2022
- ),
2023
- createElementVNode(
2024
- "div",
2025
- { class: "account-info-icon" },
2026
- [
2027
- createElementVNode("img", {
2028
- class: "icon",
2029
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
2030
- })
2031
- ],
2032
- -1
2033
- /* HOISTED */
2034
- )
2035
- ]))
2069
+ }, [..._hoisted_9$4])
2036
2070
  ])
2037
2071
  ]),
2038
- _cache[4] || (_cache[4] = createElementVNode(
2039
- "div",
2040
- { class: "line" },
2041
- null,
2042
- -1
2043
- /* HOISTED */
2044
- )),
2072
+ _hoisted_10$4,
2045
2073
  createElementVNode("div", { class: "card-row" }, [
2046
- _cache[3] || (_cache[3] = createElementVNode(
2047
- "div",
2048
- { class: "card-row-left desc" },
2049
- "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
2050
- -1
2051
- /* HOISTED */
2052
- )),
2074
+ _hoisted_11$4,
2053
2075
  createElementVNode("div", { class: "card-row-right" }, [
2054
2076
  createElementVNode("div", {
2055
2077
  class: "pay",
2056
2078
  onClick: gotoRecharge
2057
- }, _cache[2] || (_cache[2] = [
2058
- createElementVNode(
2059
- "div",
2060
- null,
2061
- "\u5145\u503C",
2062
- -1
2063
- /* HOISTED */
2064
- ),
2065
- createElementVNode(
2066
- "img",
2067
- {
2068
- class: "pay-icon",
2069
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2070
- },
2071
- null,
2072
- -1
2073
- /* HOISTED */
2074
- )
2075
- ]))
2079
+ }, [..._hoisted_14$3])
2076
2080
  ])
2077
2081
  ])
2078
2082
  ])
@@ -2098,11 +2102,27 @@ const consumptionTypes = [
2098
2102
  const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
2099
2103
  const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
2100
2104
 
2101
- const _hoisted_1$q = { class: "consumption-filter" };
2102
- const _hoisted_2$h = { class: "consumption-filter-content" };
2103
- const _hoisted_3$c = { class: "title" };
2104
- const _hoisted_4$9 = { class: "info" };
2105
- const _hoisted_5$7 = ["onClick"];
2105
+ const _hoisted_1$t = { class: "consumption-filter" };
2106
+ const _hoisted_2$p = /* @__PURE__ */ createElementVNode(
2107
+ "div",
2108
+ { class: "consumption-filter-title" },
2109
+ [
2110
+ /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2111
+ ],
2112
+ -1
2113
+ /* HOISTED */
2114
+ );
2115
+ const _hoisted_3$l = { class: "consumption-filter-content" };
2116
+ const _hoisted_4$g = { class: "title" };
2117
+ const _hoisted_5$d = { class: "info" };
2118
+ const _hoisted_6$9 = ["onClick"];
2119
+ const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
2120
+ "div",
2121
+ { class: "consumption-filter-bottom" },
2122
+ null,
2123
+ -1
2124
+ /* HOISTED */
2125
+ );
2106
2126
  var script$u = /* @__PURE__ */ defineComponent({
2107
2127
  __name: "ConsumptionFilter",
2108
2128
  props: {
@@ -2155,17 +2175,9 @@ var script$u = /* @__PURE__ */ defineComponent({
2155
2175
  emit("complete", result);
2156
2176
  };
2157
2177
  return (_ctx, _cache) => {
2158
- return openBlock(), createElementBlock("div", _hoisted_1$q, [
2159
- _cache[0] || (_cache[0] = createElementVNode(
2160
- "div",
2161
- { class: "consumption-filter-title" },
2162
- [
2163
- createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2164
- ],
2165
- -1
2166
- /* HOISTED */
2167
- )),
2168
- createElementVNode("div", _hoisted_2$h, [
2178
+ return openBlock(), createElementBlock("div", _hoisted_1$t, [
2179
+ _hoisted_2$p,
2180
+ createElementVNode("div", _hoisted_3$l, [
2169
2181
  (openBlock(true), createElementBlock(
2170
2182
  Fragment,
2171
2183
  null,
@@ -2176,12 +2188,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2176
2188
  [
2177
2189
  createElementVNode(
2178
2190
  "div",
2179
- _hoisted_3$c,
2191
+ _hoisted_4$g,
2180
2192
  toDisplayString(item.title),
2181
2193
  1
2182
2194
  /* TEXT */
2183
2195
  ),
2184
- createElementVNode("div", _hoisted_4$9, [
2196
+ createElementVNode("div", _hoisted_5$d, [
2185
2197
  (openBlock(true), createElementBlock(
2186
2198
  Fragment,
2187
2199
  null,
@@ -2190,7 +2202,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2190
2202
  onClick: () => onFilterSectionClick(index, it.code),
2191
2203
  class: normalizeClass([getItemClass(index, it.code), "info-item"]),
2192
2204
  key: i
2193
- }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$7);
2205
+ }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_6$9);
2194
2206
  }),
2195
2207
  128
2196
2208
  /* KEYED_FRAGMENT */
@@ -2215,13 +2227,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2215
2227
  onClick: onOkClick
2216
2228
  }, "\u786E\u5B9A")
2217
2229
  ]),
2218
- _cache[1] || (_cache[1] = createElementVNode(
2219
- "div",
2220
- { class: "consumption-filter-bottom" },
2221
- null,
2222
- -1
2223
- /* HOISTED */
2224
- ))
2230
+ _hoisted_7$7
2225
2231
  ]);
2226
2232
  };
2227
2233
  }
@@ -2229,9 +2235,37 @@ var script$u = /* @__PURE__ */ defineComponent({
2229
2235
 
2230
2236
  script$u.__file = "src/balance/components/ConsumptionFilter.vue";
2231
2237
 
2232
- const _hoisted_1$p = { class: "consumption-date-filter" };
2233
- const _hoisted_2$g = { class: "content" };
2234
- const _hoisted_3$b = { class: "time" };
2238
+ const _hoisted_1$s = { class: "appkit-date-filter" };
2239
+ const _hoisted_2$o = /* @__PURE__ */ createElementVNode(
2240
+ "div",
2241
+ { class: "date-filter-header" },
2242
+ "\u65E5\u671F\u9009\u62E9",
2243
+ -1
2244
+ /* HOISTED */
2245
+ );
2246
+ const _hoisted_3$k = { class: "content" };
2247
+ const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
2248
+ "div",
2249
+ { class: "title" },
2250
+ "\u81EA\u5B9A\u4E49",
2251
+ -1
2252
+ /* HOISTED */
2253
+ );
2254
+ const _hoisted_5$c = { class: "time" };
2255
+ const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
2256
+ "div",
2257
+ { class: "line" },
2258
+ "-",
2259
+ -1
2260
+ /* HOISTED */
2261
+ );
2262
+ const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
2263
+ "div",
2264
+ { class: "bottom" },
2265
+ null,
2266
+ -1
2267
+ /* HOISTED */
2268
+ );
2235
2269
  var script$t = /* @__PURE__ */ defineComponent({
2236
2270
  __name: "DateFilter",
2237
2271
  props: {
@@ -2241,7 +2275,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2241
2275
  emits: ["complete", "reset"],
2242
2276
  setup(__props, { emit: __emit }) {
2243
2277
  const props = __props;
2244
- const emit = __emit;
2278
+ const emit = __emit, state = usePopup();
2245
2279
  watch(
2246
2280
  () => `${props.from}${props.to}`,
2247
2281
  () => {
@@ -2255,6 +2289,10 @@ var script$t = /* @__PURE__ */ defineComponent({
2255
2289
  const minDate = ref();
2256
2290
  const maxDate = ref(/* @__PURE__ */ new Date());
2257
2291
  const datePickerOpen = ref(false);
2292
+ state.beforeClose = () => {
2293
+ datePickerOpen.value = false;
2294
+ return true;
2295
+ };
2258
2296
  function reset() {
2259
2297
  emit("reset");
2260
2298
  }
@@ -2273,6 +2311,11 @@ var script$t = /* @__PURE__ */ defineComponent({
2273
2311
  result.to = time;
2274
2312
  }
2275
2313
  datePickerOpen.value = false;
2314
+ state.couldClose = true;
2315
+ }
2316
+ function onDatePickerCancel() {
2317
+ datePickerOpen.value = false;
2318
+ state.couldClose = true;
2276
2319
  }
2277
2320
  function switchDateInput(shift) {
2278
2321
  if (shift === "from") {
@@ -2285,27 +2328,16 @@ var script$t = /* @__PURE__ */ defineComponent({
2285
2328
  focusedDate.value = new Date(result[shift]);
2286
2329
  focused.value = shift;
2287
2330
  datePickerOpen.value = true;
2331
+ state.couldClose = false;
2288
2332
  }
2289
2333
  return (_ctx, _cache) => {
2290
2334
  const _component_nut_date_picker = DatePicker;
2291
2335
  const _component_nut_popup = Popup;
2292
- return openBlock(), createElementBlock("div", _hoisted_1$p, [
2293
- _cache[7] || (_cache[7] = createElementVNode(
2294
- "div",
2295
- { class: "date-filter-header" },
2296
- "\u65E5\u671F\u9009\u62E9",
2297
- -1
2298
- /* HOISTED */
2299
- )),
2300
- createElementVNode("div", _hoisted_2$g, [
2301
- _cache[6] || (_cache[6] = createElementVNode(
2302
- "div",
2303
- { class: "title" },
2304
- "\u81EA\u5B9A\u4E49",
2305
- -1
2306
- /* HOISTED */
2307
- )),
2308
- createElementVNode("div", _hoisted_3$b, [
2336
+ return openBlock(), createElementBlock("div", _hoisted_1$s, [
2337
+ _hoisted_2$o,
2338
+ createElementVNode("div", _hoisted_3$k, [
2339
+ _hoisted_4$f,
2340
+ createElementVNode("div", _hoisted_5$c, [
2309
2341
  createElementVNode(
2310
2342
  "div",
2311
2343
  {
@@ -2316,13 +2348,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2316
2348
  3
2317
2349
  /* TEXT, CLASS */
2318
2350
  ),
2319
- _cache[5] || (_cache[5] = createElementVNode(
2320
- "div",
2321
- { class: "line" },
2322
- "-",
2323
- -1
2324
- /* HOISTED */
2325
- )),
2351
+ _hoisted_6$8,
2326
2352
  createElementVNode(
2327
2353
  "div",
2328
2354
  {
@@ -2345,17 +2371,13 @@ var script$t = /* @__PURE__ */ defineComponent({
2345
2371
  onClick: onOkClick
2346
2372
  }, "\u786E\u5B9A")
2347
2373
  ]),
2348
- _cache[8] || (_cache[8] = createElementVNode(
2349
- "div",
2350
- { class: "bottom" },
2351
- null,
2352
- -1
2353
- /* HOISTED */
2354
- )),
2374
+ _hoisted_7$6,
2355
2375
  createVNode(_component_nut_popup, {
2356
2376
  visible: datePickerOpen.value,
2357
- "onUpdate:visible": _cache[4] || (_cache[4] = ($event) => datePickerOpen.value = $event),
2358
- position: "bottom"
2377
+ "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event),
2378
+ class: "appkit-date-filter-picker-popup",
2379
+ position: "bottom",
2380
+ "overlay-class": "appkit-date-filter-picker-overlay"
2359
2381
  }, {
2360
2382
  default: withCtx(() => [
2361
2383
  createVNode(_component_nut_date_picker, {
@@ -2365,7 +2387,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2365
2387
  "max-date": maxDate.value,
2366
2388
  "is-show-chinese": false,
2367
2389
  "three-dimensional": false,
2368
- onCancel: _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = false),
2390
+ onCancel: onDatePickerCancel,
2369
2391
  onConfirm: onDatePickerComplete
2370
2392
  }, null, 8, ["modelValue", "min-date", "max-date"])
2371
2393
  ]),
@@ -2379,36 +2401,38 @@ var script$t = /* @__PURE__ */ defineComponent({
2379
2401
 
2380
2402
  script$t.__file = "src/balance/components/DateFilter.vue";
2381
2403
 
2382
- const _hoisted_1$o = { class: "consumption-rules" };
2404
+ const _hoisted_1$r = { class: "consumption-rules" };
2405
+ const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
2406
+ "div",
2407
+ { class: "title" },
2408
+ "\u89C4\u5219\u8BF4\u660E",
2409
+ -1
2410
+ /* HOISTED */
2411
+ );
2412
+ const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
2413
+ "div",
2414
+ { class: "desc" },
2415
+ [
2416
+ /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2417
+ /* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
2418
+ /* @__PURE__ */ createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
2419
+ /* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
2420
+ /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2421
+ /* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
2422
+ /* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
2423
+ ],
2424
+ -1
2425
+ /* HOISTED */
2426
+ );
2383
2427
  var script$s = /* @__PURE__ */ defineComponent({
2384
2428
  __name: "ConsumptionRules",
2385
2429
  emits: ["complete"],
2386
2430
  setup(__props, { emit: __emit }) {
2387
2431
  const emit = __emit;
2388
2432
  return (_ctx, _cache) => {
2389
- return openBlock(), createElementBlock("div", _hoisted_1$o, [
2390
- _cache[1] || (_cache[1] = createElementVNode(
2391
- "div",
2392
- { class: "title" },
2393
- "\u89C4\u5219\u8BF4\u660E",
2394
- -1
2395
- /* HOISTED */
2396
- )),
2397
- _cache[2] || (_cache[2] = createElementVNode(
2398
- "div",
2399
- { class: "desc" },
2400
- [
2401
- createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2402
- 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 "),
2403
- 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 "),
2404
- 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 "),
2405
- createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2406
- 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 "),
2407
- 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 ")
2408
- ],
2409
- -1
2410
- /* HOISTED */
2411
- )),
2433
+ return openBlock(), createElementBlock("div", _hoisted_1$r, [
2434
+ _hoisted_2$n,
2435
+ _hoisted_3$j,
2412
2436
  createElementVNode("div", {
2413
2437
  class: "know",
2414
2438
  onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
@@ -2420,27 +2444,30 @@ var script$s = /* @__PURE__ */ defineComponent({
2420
2444
 
2421
2445
  script$s.__file = "src/balance/components/ConsumptionRules.vue";
2422
2446
 
2423
- const _hoisted_1$n = { class: "empty-view" };
2447
+ const _hoisted_1$q = { class: "empty-view" };
2448
+ const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
2449
+ "img",
2450
+ {
2451
+ class: "empty-view-image",
2452
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2453
+ },
2454
+ null,
2455
+ -1
2456
+ /* HOISTED */
2457
+ );
2458
+ const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
2459
+ "div",
2460
+ { class: "empty-view-text" },
2461
+ "\u6682\u65E0\u6570\u636E",
2462
+ -1
2463
+ /* HOISTED */
2464
+ );
2465
+ const _hoisted_4$e = [
2466
+ _hoisted_2$m,
2467
+ _hoisted_3$i
2468
+ ];
2424
2469
  function render$1(_ctx, _cache) {
2425
- return openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2426
- createElementVNode(
2427
- "img",
2428
- {
2429
- class: "empty-view-image",
2430
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2431
- },
2432
- null,
2433
- -1
2434
- /* HOISTED */
2435
- ),
2436
- createElementVNode(
2437
- "div",
2438
- { class: "empty-view-text" },
2439
- "\u6682\u65E0\u6570\u636E",
2440
- -1
2441
- /* HOISTED */
2442
- )
2443
- ]));
2470
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [..._hoisted_4$e]);
2444
2471
  }
2445
2472
 
2446
2473
  /* unplugin-vue-components disabled */const script$r = {};
@@ -2448,10 +2475,31 @@ function render$1(_ctx, _cache) {
2448
2475
  script$r.render = render$1;
2449
2476
  script$r.__file = "src/shared/components/EmptyView.vue";
2450
2477
 
2451
- const _hoisted_1$m = {
2478
+ const _hoisted_1$p = {
2452
2479
  key: 0,
2453
2480
  class: "tip"
2454
2481
  };
2482
+ const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
2483
+ "img",
2484
+ {
2485
+ class: "tip-icon",
2486
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2487
+ },
2488
+ null,
2489
+ -1
2490
+ /* HOISTED */
2491
+ );
2492
+ const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
2493
+ "div",
2494
+ { class: "tip-content" },
2495
+ "2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
2496
+ -1
2497
+ /* HOISTED */
2498
+ );
2499
+ const _hoisted_4$d = [
2500
+ _hoisted_2$l,
2501
+ _hoisted_3$h
2502
+ ];
2455
2503
  var script$q = /* @__PURE__ */ defineComponent({
2456
2504
  __name: "Tip",
2457
2505
  setup(__props) {
@@ -2464,73 +2512,141 @@ var script$q = /* @__PURE__ */ defineComponent({
2464
2512
  }
2465
2513
  });
2466
2514
  return (_ctx, _cache) => {
2467
- return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$m, _cache[0] || (_cache[0] = [
2468
- createElementVNode(
2469
- "img",
2470
- {
2471
- class: "tip-icon",
2472
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2473
- },
2474
- null,
2475
- -1
2476
- /* HOISTED */
2477
- ),
2478
- createElementVNode(
2479
- "div",
2480
- { class: "tip-content" },
2481
- "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",
2482
- -1
2483
- /* HOISTED */
2484
- )
2485
- ]))) : createCommentVNode("v-if", true);
2515
+ return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$p, [..._hoisted_4$d])) : createCommentVNode("v-if", true);
2486
2516
  };
2487
2517
  }
2488
2518
  });
2489
2519
 
2490
2520
  script$q.__file = "src/balance/components/Tip.vue";
2491
2521
 
2492
- const _hoisted_1$l = { class: "account-view" };
2493
- const _hoisted_2$f = { class: "scroll-content" };
2494
- const _hoisted_3$a = { class: "balance" };
2495
- const _hoisted_4$8 = { class: "bean-box spa-between" };
2496
- const _hoisted_5$6 = { class: "bean-counts spa-between" };
2497
- const _hoisted_6$3 = { class: "counts number" };
2498
- const _hoisted_7$3 = {
2522
+ const _hoisted_1$o = { class: "account-view" };
2523
+ const _hoisted_2$k = { class: "scroll-content" };
2524
+ const _hoisted_3$g = /* @__PURE__ */ createElementVNode(
2525
+ "label",
2526
+ null,
2527
+ "\u6536\u652F\u660E\u7EC6",
2528
+ -1
2529
+ /* HOISTED */
2530
+ );
2531
+ const _hoisted_4$c = [
2532
+ _hoisted_3$g
2533
+ ];
2534
+ const _hoisted_5$b = { class: "balance" };
2535
+ const _hoisted_6$7 = { class: "bean-box spa-between" };
2536
+ const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
2537
+ "div",
2538
+ { class: "bean-img" },
2539
+ [
2540
+ /* @__PURE__ */ createElementVNode("img", {
2541
+ class: "bean-icon",
2542
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2543
+ }),
2544
+ /* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2545
+ ],
2546
+ -1
2547
+ /* HOISTED */
2548
+ );
2549
+ const _hoisted_8$3 = { class: "bean-counts spa-between" };
2550
+ const _hoisted_9$3 = { class: "counts number" };
2551
+ const _hoisted_10$3 = {
2499
2552
  key: 0,
2500
2553
  class: "rights-card"
2501
2554
  };
2502
- const _hoisted_8$3 = { class: "list" };
2503
- const _hoisted_9$2 = { class: "item-count" };
2504
- const _hoisted_10$1 = { class: "item-title" };
2505
- const _hoisted_11$1 = {
2555
+ const _hoisted_11$3 = /* @__PURE__ */ createElementVNode(
2556
+ "div",
2557
+ { class: "title" },
2558
+ "\u4F01\u660E\u661F\u6743\u76CA",
2559
+ -1
2560
+ /* HOISTED */
2561
+ );
2562
+ const _hoisted_12$3 = { class: "list" };
2563
+ const _hoisted_13$3 = { class: "item-count" };
2564
+ const _hoisted_14$2 = { class: "item-title" };
2565
+ const _hoisted_15$2 = {
2506
2566
  key: 0,
2507
2567
  class: "item-title-button"
2508
2568
  };
2509
- const _hoisted_12$1 = ["onClick"];
2510
- const _hoisted_13$1 = {
2569
+ const _hoisted_16$2 = ["onClick"];
2570
+ const _hoisted_17$1 = /* @__PURE__ */ createElementVNode(
2571
+ "img",
2572
+ {
2573
+ class: "button-icon",
2574
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2575
+ },
2576
+ null,
2577
+ -1
2578
+ /* HOISTED */
2579
+ );
2580
+ const _hoisted_18$1 = {
2511
2581
  key: 1,
2512
2582
  class: "rights-card"
2513
2583
  };
2514
- const _hoisted_14$1 = { class: "list" };
2515
- const _hoisted_15$1 = { class: "item-count" };
2516
- const _hoisted_16$1 = { class: "item-title" };
2517
- const _hoisted_17$1 = { class: "operation-box" };
2518
- const _hoisted_18$1 = { class: "search-time" };
2519
- const _hoisted_19$1 = { class: "text number" };
2520
- const _hoisted_20$1 = { class: "operation-list" };
2521
- const _hoisted_21$1 = {
2584
+ const _hoisted_19$1 = /* @__PURE__ */ createElementVNode(
2585
+ "div",
2586
+ { class: "title" },
2587
+ "AI\u5BA1\u6279\u6743\u76CA",
2588
+ -1
2589
+ /* HOISTED */
2590
+ );
2591
+ const _hoisted_20$1 = { class: "list" };
2592
+ const _hoisted_21$1 = { class: "item-count" };
2593
+ const _hoisted_22$1 = { class: "item-title" };
2594
+ const _hoisted_23$1 = { class: "operation-box" };
2595
+ const _hoisted_24$1 = { class: "search-time" };
2596
+ const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
2597
+ "div",
2598
+ { class: "title" },
2599
+ "\u6536\u652F\u660E\u7EC6",
2600
+ -1
2601
+ /* HOISTED */
2602
+ );
2603
+ const _hoisted_26 = { class: "text number" };
2604
+ const _hoisted_27 = /* @__PURE__ */ createElementVNode(
2605
+ "img",
2606
+ {
2607
+ style: { "margin-top": "-2px" },
2608
+ class: "time-icon",
2609
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
2610
+ },
2611
+ null,
2612
+ -1
2613
+ /* HOISTED */
2614
+ );
2615
+ const _hoisted_28 = /* @__PURE__ */ createElementVNode(
2616
+ "span",
2617
+ { class: "text" },
2618
+ "\u7B5B\u9009",
2619
+ -1
2620
+ /* HOISTED */
2621
+ );
2622
+ const _hoisted_29 = /* @__PURE__ */ createElementVNode(
2623
+ "img",
2624
+ {
2625
+ class: "time-icon",
2626
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
2627
+ },
2628
+ null,
2629
+ -1
2630
+ /* HOISTED */
2631
+ );
2632
+ const _hoisted_30 = [
2633
+ _hoisted_28,
2634
+ _hoisted_29
2635
+ ];
2636
+ const _hoisted_31 = { class: "operation-list" };
2637
+ const _hoisted_32 = {
2522
2638
  key: 0,
2523
2639
  class: "box"
2524
2640
  };
2525
- const _hoisted_22$1 = { class: "title number" };
2526
- const _hoisted_23 = { class: "item-type" };
2527
- const _hoisted_24 = { class: "item-detail" };
2528
- const _hoisted_25 = { class: "item-info spa-between" };
2529
- const _hoisted_26 = { class: "item-info-type" };
2530
- const _hoisted_27 = { class: "item-info-title" };
2531
- const _hoisted_28 = { class: "item-info-amount number" };
2532
- const _hoisted_29 = { class: "item-detail-remark" };
2533
- const _hoisted_30 = {
2641
+ const _hoisted_33 = { class: "title number" };
2642
+ const _hoisted_34 = { class: "item-type" };
2643
+ const _hoisted_35 = { class: "item-detail" };
2644
+ const _hoisted_36 = { class: "item-info spa-between" };
2645
+ const _hoisted_37 = { class: "item-info-type" };
2646
+ const _hoisted_38 = { class: "item-info-title" };
2647
+ const _hoisted_39 = { class: "item-info-amount number" };
2648
+ const _hoisted_40 = { class: "item-detail-remark" };
2649
+ const _hoisted_41 = {
2534
2650
  key: 0,
2535
2651
  class: "box-not-text"
2536
2652
  };
@@ -2711,8 +2827,8 @@ var script$p = /* @__PURE__ */ defineComponent({
2711
2827
  Fragment,
2712
2828
  null,
2713
2829
  [
2714
- createElementVNode("div", _hoisted_1$l, [
2715
- createElementVNode("div", _hoisted_2$f, [
2830
+ createElementVNode("div", _hoisted_1$o, [
2831
+ createElementVNode("div", _hoisted_2$k, [
2716
2832
  createVNode(unref(script$H), {
2717
2833
  "color-mode": "dark",
2718
2834
  title: "\u6211\u7684\u8D26\u6237",
@@ -2723,40 +2839,20 @@ var script$p = /* @__PURE__ */ defineComponent({
2723
2839
  createElementVNode("div", {
2724
2840
  class: "small-bean-button",
2725
2841
  onClick: onSecondBalanceButtonClick
2726
- }, _cache[7] || (_cache[7] = [
2727
- createElementVNode(
2728
- "label",
2729
- null,
2730
- "\u6536\u652F\u660E\u7EC6",
2731
- -1
2732
- /* HOISTED */
2733
- )
2734
- ]))
2842
+ }, [..._hoisted_4$c])
2735
2843
  ]),
2736
- createElementVNode("div", _hoisted_3$a, [
2737
- createElementVNode("div", _hoisted_4$8, [
2738
- _cache[8] || (_cache[8] = createElementVNode(
2739
- "div",
2740
- { class: "bean-img" },
2741
- [
2742
- createElementVNode("img", {
2743
- class: "bean-icon",
2744
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2745
- }),
2746
- createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2747
- ],
2748
- -1
2749
- /* HOISTED */
2750
- )),
2844
+ createElementVNode("div", _hoisted_5$b, [
2845
+ createElementVNode("div", _hoisted_6$7, [
2846
+ _hoisted_7$5,
2751
2847
  createElementVNode("div", {
2752
2848
  class: "rule",
2753
2849
  onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
2754
2850
  }, "\u89C4\u5219\u8BF4\u660E")
2755
2851
  ]),
2756
- createElementVNode("div", _hoisted_5$6, [
2852
+ createElementVNode("div", _hoisted_8$3, [
2757
2853
  createElementVNode(
2758
2854
  "div",
2759
- _hoisted_6$3,
2855
+ _hoisted_9$3,
2760
2856
  toDisplayString(balance.value.total || 0),
2761
2857
  1
2762
2858
  /* TEXT */
@@ -2768,15 +2864,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2768
2864
  ])
2769
2865
  ]),
2770
2866
  createVNode(script$q),
2771
- balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
2772
- _cache[10] || (_cache[10] = createElementVNode(
2773
- "div",
2774
- { class: "title" },
2775
- "\u4F01\u660E\u661F\u6743\u76CA",
2776
- -1
2777
- /* HOISTED */
2778
- )),
2779
- createElementVNode("div", _hoisted_8$3, [
2867
+ balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_10$3, [
2868
+ _hoisted_11$3,
2869
+ createElementVNode("div", _hoisted_12$3, [
2780
2870
  (openBlock(true), createElementBlock(
2781
2871
  Fragment,
2782
2872
  null,
@@ -2785,7 +2875,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2785
2875
  class: "item star-item",
2786
2876
  key: index
2787
2877
  }, [
2788
- createElementVNode("div", _hoisted_9$2, [
2878
+ createElementVNode("div", _hoisted_13$3, [
2789
2879
  createElementVNode(
2790
2880
  "span",
2791
2881
  null,
@@ -2801,7 +2891,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2801
2891
  /* TEXT */
2802
2892
  )
2803
2893
  ]),
2804
- createElementVNode("div", _hoisted_10$1, [
2894
+ createElementVNode("div", _hoisted_14$2, [
2805
2895
  createElementVNode(
2806
2896
  "div",
2807
2897
  null,
@@ -2809,20 +2899,11 @@ var script$p = /* @__PURE__ */ defineComponent({
2809
2899
  1
2810
2900
  /* TEXT */
2811
2901
  ),
2812
- item.id ? (openBlock(), createElementBlock("div", _hoisted_11$1, [
2902
+ item.id ? (openBlock(), createElementBlock("div", _hoisted_15$2, [
2813
2903
  createElementVNode("div", {
2814
2904
  onClick: ($event) => gotoTrade(item)
2815
- }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_12$1),
2816
- _cache[9] || (_cache[9] = createElementVNode(
2817
- "img",
2818
- {
2819
- class: "button-icon",
2820
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2821
- },
2822
- null,
2823
- -1
2824
- /* HOISTED */
2825
- ))
2905
+ }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_16$2),
2906
+ _hoisted_17$1
2826
2907
  ])) : createCommentVNode("v-if", true)
2827
2908
  ])
2828
2909
  ]);
@@ -2832,15 +2913,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2832
2913
  ))
2833
2914
  ])
2834
2915
  ])) : createCommentVNode("v-if", true),
2835
- balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_13$1, [
2836
- _cache[11] || (_cache[11] = createElementVNode(
2837
- "div",
2838
- { class: "title" },
2839
- "AI\u5BA1\u6279\u6743\u76CA",
2840
- -1
2841
- /* HOISTED */
2842
- )),
2843
- createElementVNode("div", _hoisted_14$1, [
2916
+ balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
2917
+ _hoisted_19$1,
2918
+ createElementVNode("div", _hoisted_20$1, [
2844
2919
  (openBlock(true), createElementBlock(
2845
2920
  Fragment,
2846
2921
  null,
@@ -2851,14 +2926,14 @@ var script$p = /* @__PURE__ */ defineComponent({
2851
2926
  }, [
2852
2927
  createElementVNode(
2853
2928
  "div",
2854
- _hoisted_15$1,
2929
+ _hoisted_21$1,
2855
2930
  toDisplayString(item.count) + toDisplayString(item.unit),
2856
2931
  1
2857
2932
  /* TEXT */
2858
2933
  ),
2859
2934
  createElementVNode(
2860
2935
  "div",
2861
- _hoisted_16$1,
2936
+ _hoisted_22$1,
2862
2937
  toDisplayString(item.title),
2863
2938
  1
2864
2939
  /* TEXT */
@@ -2934,21 +3009,15 @@ var script$p = /* @__PURE__ */ defineComponent({
2934
3009
  title: "\u6536\u652F\u660E\u7EC6"
2935
3010
  }, {
2936
3011
  default: withCtx(() => [
2937
- createElementVNode("div", _hoisted_17$1, [
3012
+ createElementVNode("div", _hoisted_23$1, [
2938
3013
  createElementVNode(
2939
3014
  "div",
2940
3015
  {
2941
3016
  class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
2942
3017
  },
2943
3018
  [
2944
- createElementVNode("div", _hoisted_18$1, [
2945
- _cache[13] || (_cache[13] = createElementVNode(
2946
- "div",
2947
- { class: "title" },
2948
- "\u6536\u652F\u660E\u7EC6",
2949
- -1
2950
- /* HOISTED */
2951
- )),
3019
+ createElementVNode("div", _hoisted_24$1, [
3020
+ _hoisted_25$1,
2952
3021
  withDirectives(createElementVNode(
2953
3022
  "div",
2954
3023
  {
@@ -2958,22 +3027,12 @@ var script$p = /* @__PURE__ */ defineComponent({
2958
3027
  [
2959
3028
  createElementVNode(
2960
3029
  "div",
2961
- _hoisted_19$1,
3030
+ _hoisted_26,
2962
3031
  toDisplayString(dateRangeDisplay.value),
2963
3032
  1
2964
3033
  /* TEXT */
2965
3034
  ),
2966
- _cache[12] || (_cache[12] = createElementVNode(
2967
- "img",
2968
- {
2969
- style: { "margin-top": "-2px" },
2970
- class: "time-icon",
2971
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
2972
- },
2973
- null,
2974
- -1
2975
- /* HOISTED */
2976
- ))
3035
+ _hoisted_27
2977
3036
  ],
2978
3037
  512
2979
3038
  /* NEED_PATCH */
@@ -2984,30 +3043,12 @@ var script$p = /* @__PURE__ */ defineComponent({
2984
3043
  createElementVNode("div", {
2985
3044
  class: "search",
2986
3045
  onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
2987
- }, _cache[14] || (_cache[14] = [
2988
- createElementVNode(
2989
- "span",
2990
- { class: "text" },
2991
- "\u7B5B\u9009",
2992
- -1
2993
- /* HOISTED */
2994
- ),
2995
- createElementVNode(
2996
- "img",
2997
- {
2998
- class: "time-icon",
2999
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3000
- },
3001
- null,
3002
- -1
3003
- /* HOISTED */
3004
- )
3005
- ]))
3046
+ }, [..._hoisted_30])
3006
3047
  ],
3007
3048
  2
3008
3049
  /* CLASS */
3009
3050
  ),
3010
- createElementVNode("div", _hoisted_20$1, [
3051
+ createElementVNode("div", _hoisted_31, [
3011
3052
  createVNode(_component_scroll_view, {
3012
3053
  class: "operation-scroll",
3013
3054
  "scroll-y": true,
@@ -3016,7 +3057,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3016
3057
  onScrolltolower: onReachBottom
3017
3058
  }, {
3018
3059
  default: withCtx(() => [
3019
- consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_21$1, [
3060
+ consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_32, [
3020
3061
  (openBlock(true), createElementBlock(
3021
3062
  Fragment,
3022
3063
  null,
@@ -3027,7 +3068,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3027
3068
  }, [
3028
3069
  createElementVNode(
3029
3070
  "div",
3030
- _hoisted_22$1,
3071
+ _hoisted_33,
3031
3072
  toDisplayString(item.date),
3032
3073
  1
3033
3074
  /* TEXT */
@@ -3042,24 +3083,24 @@ var script$p = /* @__PURE__ */ defineComponent({
3042
3083
  }, [
3043
3084
  createElementVNode(
3044
3085
  "div",
3045
- _hoisted_23,
3086
+ _hoisted_34,
3046
3087
  toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
3047
3088
  1
3048
3089
  /* TEXT */
3049
3090
  ),
3050
- createElementVNode("div", _hoisted_24, [
3051
- createElementVNode("div", _hoisted_25, [
3091
+ createElementVNode("div", _hoisted_35, [
3092
+ createElementVNode("div", _hoisted_36, [
3052
3093
  createElementVNode("div", null, [
3053
3094
  createElementVNode(
3054
3095
  "div",
3055
- _hoisted_26,
3096
+ _hoisted_37,
3056
3097
  toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
3057
3098
  1
3058
3099
  /* TEXT */
3059
3100
  ),
3060
3101
  createElementVNode(
3061
3102
  "div",
3062
- _hoisted_27,
3103
+ _hoisted_38,
3063
3104
  toDisplayString(it.title),
3064
3105
  1
3065
3106
  /* TEXT */
@@ -3067,7 +3108,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3067
3108
  ]),
3068
3109
  createElementVNode(
3069
3110
  "div",
3070
- _hoisted_28,
3111
+ _hoisted_39,
3071
3112
  toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
3072
3113
  1
3073
3114
  /* TEXT */
@@ -3075,7 +3116,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3075
3116
  ]),
3076
3117
  createElementVNode(
3077
3118
  "div",
3078
- _hoisted_29,
3119
+ _hoisted_40,
3079
3120
  toDisplayString(it.description),
3080
3121
  1
3081
3122
  /* TEXT */
@@ -3091,7 +3132,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3091
3132
  128
3092
3133
  /* KEYED_FRAGMENT */
3093
3134
  )),
3094
- reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3135
+ reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_41, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3095
3136
  ])) : (openBlock(), createBlock(script$r, { key: 1 }))
3096
3137
  ]),
3097
3138
  _: 1
@@ -3113,10 +3154,20 @@ var script$p = /* @__PURE__ */ defineComponent({
3113
3154
 
3114
3155
  script$p.__file = "src/balance/components/AccountView.vue";
3115
3156
 
3116
- const _hoisted_1$k = { class: "balance-reminder" };
3117
- const _hoisted_2$e = { class: "footer" };
3118
- const _hoisted_3$9 = { class: "col" };
3119
- const _hoisted_4$7 = { class: "col" };
3157
+ const _hoisted_1$n = { class: "balance-reminder" };
3158
+ const _hoisted_2$j = /* @__PURE__ */ createElementVNode(
3159
+ "div",
3160
+ { class: "body" },
3161
+ [
3162
+ /* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3163
+ /* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3164
+ ],
3165
+ -1
3166
+ /* HOISTED */
3167
+ );
3168
+ const _hoisted_3$f = { class: "footer" };
3169
+ const _hoisted_4$b = { class: "col" };
3170
+ const _hoisted_5$a = { class: "col" };
3120
3171
  var script$o = /* @__PURE__ */ defineComponent({
3121
3172
  __name: "BalanceReminder",
3122
3173
  props: {
@@ -3137,32 +3188,23 @@ var script$o = /* @__PURE__ */ defineComponent({
3137
3188
  "close-on-click-overlay": false
3138
3189
  }, {
3139
3190
  default: withCtx(() => [
3140
- createElementVNode("div", _hoisted_1$k, [
3141
- _cache[3] || (_cache[3] = createElementVNode(
3142
- "div",
3143
- { class: "body" },
3144
- [
3145
- createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3146
- createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3147
- ],
3148
- -1
3149
- /* HOISTED */
3150
- )),
3151
- createElementVNode("div", _hoisted_2$e, [
3152
- createElementVNode("div", _hoisted_3$9, [
3191
+ createElementVNode("div", _hoisted_1$n, [
3192
+ _hoisted_2$j,
3193
+ createElementVNode("div", _hoisted_3$f, [
3194
+ createElementVNode("div", _hoisted_4$b, [
3153
3195
  createVNode(_component_nut_button, {
3154
3196
  class: "cancel-button",
3155
3197
  onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
3156
3198
  block: ""
3157
3199
  }, {
3158
- default: withCtx(() => _cache[2] || (_cache[2] = [
3200
+ default: withCtx(() => [
3159
3201
  createTextVNode("\u53D6\u6D88")
3160
- ])),
3202
+ ]),
3161
3203
  _: 1
3162
3204
  /* STABLE */
3163
3205
  })
3164
3206
  ]),
3165
- createElementVNode("div", _hoisted_4$7, [
3207
+ createElementVNode("div", _hoisted_5$a, [
3166
3208
  createVNode(_component_nut_button, {
3167
3209
  block: "",
3168
3210
  class: "recharge-button",
@@ -3191,7 +3233,18 @@ var script$o = /* @__PURE__ */ defineComponent({
3191
3233
 
3192
3234
  script$o.__file = "src/balance/components/BalanceReminder.vue";
3193
3235
 
3194
- const _hoisted_1$j = { class: "text" };
3236
+ const _hoisted_1$m = { class: "text" };
3237
+ const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
3238
+ "img",
3239
+ {
3240
+ style: { "margin-top": "-2px" },
3241
+ class: "time-icon",
3242
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3243
+ },
3244
+ null,
3245
+ -1
3246
+ /* HOISTED */
3247
+ );
3195
3248
  var script$n = /* @__PURE__ */ defineComponent({
3196
3249
  __name: "DateRange",
3197
3250
  props: {
@@ -3210,14 +3263,18 @@ var script$n = /* @__PURE__ */ defineComponent({
3210
3263
  const $n = useNutshell();
3211
3264
  const model = useModel(__props, "modelValue");
3212
3265
  const openDateRangePicker = () => {
3266
+ const child = ref();
3213
3267
  $n.sheet({
3214
3268
  component: script$t,
3269
+ ref: child,
3215
3270
  props: {
3216
3271
  from: model.value.from,
3217
3272
  to: model.value.to
3218
3273
  },
3274
+ modal: true,
3275
+ // 不允许点击 overlay 关闭弹窗
3276
+ mask: true,
3219
3277
  onComplete(result) {
3220
- console.log("===openDateFilter complete", result);
3221
3278
  model.value = {
3222
3279
  from: result.from,
3223
3280
  to: result.to
@@ -3237,22 +3294,12 @@ var script$n = /* @__PURE__ */ defineComponent({
3237
3294
  }, [
3238
3295
  createElementVNode(
3239
3296
  "div",
3240
- _hoisted_1$j,
3297
+ _hoisted_1$m,
3241
3298
  toDisplayString(dateRangeDisplay.value),
3242
3299
  1
3243
3300
  /* TEXT */
3244
3301
  ),
3245
- _cache[0] || (_cache[0] = createElementVNode(
3246
- "img",
3247
- {
3248
- style: { "margin-top": "-2px" },
3249
- class: "time-icon",
3250
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3251
- },
3252
- null,
3253
- -1
3254
- /* HOISTED */
3255
- ))
3302
+ _hoisted_2$i
3256
3303
  ]);
3257
3304
  };
3258
3305
  }
@@ -3260,11 +3307,27 @@ var script$n = /* @__PURE__ */ defineComponent({
3260
3307
 
3261
3308
  script$n.__file = "src/balance/components/DateRange.vue";
3262
3309
 
3263
- const _hoisted_1$i = { class: "list-filter-picker" };
3264
- const _hoisted_2$d = { class: "consumption-filter-content" };
3265
- const _hoisted_3$8 = { class: "title" };
3266
- const _hoisted_4$6 = { class: "info" };
3267
- const _hoisted_5$5 = ["onClick"];
3310
+ const _hoisted_1$l = { class: "list-filter-picker" };
3311
+ const _hoisted_2$h = /* @__PURE__ */ createElementVNode(
3312
+ "div",
3313
+ { class: "list-filter-picker-title" },
3314
+ [
3315
+ /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3316
+ ],
3317
+ -1
3318
+ /* HOISTED */
3319
+ );
3320
+ const _hoisted_3$e = { class: "consumption-filter-content" };
3321
+ const _hoisted_4$a = { class: "title" };
3322
+ const _hoisted_5$9 = { class: "info" };
3323
+ const _hoisted_6$6 = ["onClick"];
3324
+ const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
3325
+ "div",
3326
+ { class: "consumption-filter-bottom" },
3327
+ null,
3328
+ -1
3329
+ /* HOISTED */
3330
+ );
3268
3331
  var script$m = /* @__PURE__ */ defineComponent({
3269
3332
  __name: "ListFilterPicker",
3270
3333
  props: {
@@ -3311,17 +3374,9 @@ var script$m = /* @__PURE__ */ defineComponent({
3311
3374
  emit("complete", result);
3312
3375
  };
3313
3376
  return (_ctx, _cache) => {
3314
- return openBlock(), createElementBlock("div", _hoisted_1$i, [
3315
- _cache[0] || (_cache[0] = createElementVNode(
3316
- "div",
3317
- { class: "list-filter-picker-title" },
3318
- [
3319
- createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3320
- ],
3321
- -1
3322
- /* HOISTED */
3323
- )),
3324
- createElementVNode("div", _hoisted_2$d, [
3377
+ return openBlock(), createElementBlock("div", _hoisted_1$l, [
3378
+ _hoisted_2$h,
3379
+ createElementVNode("div", _hoisted_3$e, [
3325
3380
  (openBlock(true), createElementBlock(
3326
3381
  Fragment,
3327
3382
  null,
@@ -3332,12 +3387,12 @@ var script$m = /* @__PURE__ */ defineComponent({
3332
3387
  [
3333
3388
  createElementVNode(
3334
3389
  "div",
3335
- _hoisted_3$8,
3390
+ _hoisted_4$a,
3336
3391
  toDisplayString(item.label),
3337
3392
  1
3338
3393
  /* TEXT */
3339
3394
  ),
3340
- createElementVNode("div", _hoisted_4$6, [
3395
+ createElementVNode("div", _hoisted_5$9, [
3341
3396
  (openBlock(true), createElementBlock(
3342
3397
  Fragment,
3343
3398
  null,
@@ -3346,7 +3401,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3346
3401
  onClick: () => onFilterSectionClick(item.name, it.value),
3347
3402
  class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
3348
3403
  key: i
3349
- }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$5);
3404
+ }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_6$6);
3350
3405
  }),
3351
3406
  128
3352
3407
  /* KEYED_FRAGMENT */
@@ -3371,13 +3426,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3371
3426
  onClick: onOkClick
3372
3427
  }, "\u786E\u5B9A")
3373
3428
  ]),
3374
- _cache[1] || (_cache[1] = createElementVNode(
3375
- "div",
3376
- { class: "consumption-filter-bottom" },
3377
- null,
3378
- -1
3379
- /* HOISTED */
3380
- ))
3429
+ _hoisted_7$4
3381
3430
  ]);
3382
3431
  };
3383
3432
  }
@@ -3385,6 +3434,27 @@ var script$m = /* @__PURE__ */ defineComponent({
3385
3434
 
3386
3435
  script$m.__file = "src/balance/components/ListFilterPicker.vue";
3387
3436
 
3437
+ const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
3438
+ "span",
3439
+ { class: "text" },
3440
+ "\u7B5B\u9009",
3441
+ -1
3442
+ /* HOISTED */
3443
+ );
3444
+ const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
3445
+ "img",
3446
+ {
3447
+ class: "icon",
3448
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3449
+ },
3450
+ null,
3451
+ -1
3452
+ /* HOISTED */
3453
+ );
3454
+ const _hoisted_3$d = [
3455
+ _hoisted_1$k,
3456
+ _hoisted_2$g
3457
+ ];
3388
3458
  var script$l = /* @__PURE__ */ defineComponent({
3389
3459
  __name: "ListFilter",
3390
3460
  props: {
@@ -3419,31 +3489,23 @@ var script$l = /* @__PURE__ */ defineComponent({
3419
3489
  return openBlock(), createElementBlock("div", {
3420
3490
  class: "list-filter",
3421
3491
  onClick: openPicker
3422
- }, _cache[0] || (_cache[0] = [
3423
- createElementVNode(
3424
- "span",
3425
- { class: "text" },
3426
- "\u7B5B\u9009",
3427
- -1
3428
- /* HOISTED */
3429
- ),
3430
- createElementVNode(
3431
- "img",
3432
- {
3433
- class: "icon",
3434
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3435
- },
3436
- null,
3437
- -1
3438
- /* HOISTED */
3439
- )
3440
- ]));
3492
+ }, [..._hoisted_3$d]);
3441
3493
  };
3442
3494
  }
3443
3495
  });
3444
3496
 
3445
3497
  script$l.__file = "src/balance/components/ListFilter.vue";
3446
3498
 
3499
+ const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
3500
+ "img",
3501
+ {
3502
+ class: "ocr-id__img",
3503
+ src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3504
+ },
3505
+ null,
3506
+ -1
3507
+ /* HOISTED */
3508
+ );
3447
3509
  var script$k = /* @__PURE__ */ defineComponent({
3448
3510
  __name: "index",
3449
3511
  emits: ["ocr"],
@@ -3533,16 +3595,7 @@ var script$k = /* @__PURE__ */ defineComponent({
3533
3595
  onClick: ocrIDCard
3534
3596
  }, [
3535
3597
  renderSlot(_ctx.$slots, "icon", {}, () => [
3536
- _cache[0] || (_cache[0] = createElementVNode(
3537
- "img",
3538
- {
3539
- class: "ocr-id__img",
3540
- src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3541
- },
3542
- null,
3543
- -1
3544
- /* HOISTED */
3545
- ))
3598
+ _hoisted_1$j
3546
3599
  ])
3547
3600
  ]);
3548
3601
  };
@@ -3581,7 +3634,7 @@ var script$j = /* @__PURE__ */ defineComponent({
3581
3634
 
3582
3635
  script$j.__file = "src/components/dd-icon/index.vue";
3583
3636
 
3584
- const _hoisted_1$h = { class: "dd-area" };
3637
+ const _hoisted_1$i = { class: "dd-area" };
3585
3638
  var script$i = /* @__PURE__ */ defineComponent({
3586
3639
  __name: "index",
3587
3640
  props: {
@@ -3741,7 +3794,7 @@ var script$i = /* @__PURE__ */ defineComponent({
3741
3794
  disabled: props.disabled
3742
3795
  }, {
3743
3796
  default: withCtx(() => [
3744
- createElementVNode("div", _hoisted_1$h, [
3797
+ createElementVNode("div", _hoisted_1$i, [
3745
3798
  createElementVNode(
3746
3799
  "div",
3747
3800
  {
@@ -3771,8 +3824,8 @@ var script$i = /* @__PURE__ */ defineComponent({
3771
3824
 
3772
3825
  script$i.__file = "src/components/dd-area/index.vue";
3773
3826
 
3774
- const _hoisted_1$g = { class: "dd-selector" };
3775
- const _hoisted_2$c = { class: "dd-selector-value" };
3827
+ const _hoisted_1$h = { class: "dd-selector" };
3828
+ const _hoisted_2$f = { class: "dd-selector-value" };
3776
3829
  var script$h = /* @__PURE__ */ defineComponent({
3777
3830
  __name: "index",
3778
3831
  props: {
@@ -3833,8 +3886,8 @@ var script$h = /* @__PURE__ */ defineComponent({
3833
3886
  }, {
3834
3887
  default: withCtx(() => [
3835
3888
  renderSlot(_ctx.$slots, "content", {}, () => [
3836
- createElementVNode("div", _hoisted_1$g, [
3837
- createElementVNode("div", _hoisted_2$c, [
3889
+ createElementVNode("div", _hoisted_1$h, [
3890
+ createElementVNode("div", _hoisted_2$f, [
3838
3891
  createElementVNode(
3839
3892
  "div",
3840
3893
  {
@@ -3871,11 +3924,11 @@ var script$h = /* @__PURE__ */ defineComponent({
3871
3924
 
3872
3925
  script$h.__file = "src/components/dd-selector/index.vue";
3873
3926
 
3874
- const _hoisted_1$f = { class: "self-registration" };
3875
- const _hoisted_2$b = { class: "self-registration-body" };
3876
- const _hoisted_3$7 = ["src"];
3877
- const _hoisted_4$5 = { class: "self-registration__input" };
3878
- const _hoisted_5$4 = { class: "self-registration-bottom" };
3927
+ const _hoisted_1$g = { class: "self-registration" };
3928
+ const _hoisted_2$e = { class: "self-registration-body" };
3929
+ const _hoisted_3$c = ["src"];
3930
+ const _hoisted_4$9 = { class: "self-registration__input" };
3931
+ const _hoisted_5$8 = { class: "self-registration-bottom" };
3879
3932
  var script$g = /* @__PURE__ */ defineComponent({
3880
3933
  __name: "SelfRegistration",
3881
3934
  props: {
@@ -3978,13 +4031,13 @@ var script$g = /* @__PURE__ */ defineComponent({
3978
4031
  const _component_nut_form_item = FormItem;
3979
4032
  const _component_nut_form = Form;
3980
4033
  const _component_nut_button = Button;
3981
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
3982
- createElementVNode("div", _hoisted_2$b, [
4034
+ return openBlock(), createElementBlock("div", _hoisted_1$g, [
4035
+ createElementVNode("div", _hoisted_2$e, [
3983
4036
  createElementVNode("img", {
3984
4037
  src: _ctx.banner,
3985
4038
  class: "self-registration-banner",
3986
4039
  alt: ""
3987
- }, null, 8, _hoisted_3$7),
4040
+ }, null, 8, _hoisted_3$c),
3988
4041
  createVNode(_component_nut_form, null, {
3989
4042
  default: withCtx(() => [
3990
4043
  createVNode(_component_nut_form_item, {
@@ -4000,16 +4053,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4000
4053
  }, {
4001
4054
  default: withCtx(() => [
4002
4055
  createVNode(_component_nut_radio, { label: "person" }, {
4003
- default: withCtx(() => _cache[7] || (_cache[7] = [
4056
+ default: withCtx(() => [
4004
4057
  createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
4005
- ])),
4058
+ ]),
4006
4059
  _: 1
4007
4060
  /* STABLE */
4008
4061
  }),
4009
4062
  createVNode(_component_nut_radio, { label: "company" }, {
4010
- default: withCtx(() => _cache[8] || (_cache[8] = [
4063
+ default: withCtx(() => [
4011
4064
  createTextVNode("\u516C\u53F8\u4F7F\u7528")
4012
- ])),
4065
+ ]),
4013
4066
  _: 1
4014
4067
  /* STABLE */
4015
4068
  })
@@ -4026,7 +4079,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4026
4079
  required: ""
4027
4080
  }, {
4028
4081
  default: withCtx(() => [
4029
- createElementVNode("div", _hoisted_4$5, [
4082
+ createElementVNode("div", _hoisted_4$9, [
4030
4083
  withDirectives(createElementVNode(
4031
4084
  "input",
4032
4085
  {
@@ -4165,16 +4218,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4165
4218
  /* STABLE */
4166
4219
  })
4167
4220
  ]),
4168
- createElementVNode("div", _hoisted_5$4, [
4221
+ createElementVNode("div", _hoisted_5$8, [
4169
4222
  createVNode(_component_nut_button, {
4170
4223
  block: "",
4171
4224
  type: "primary",
4172
4225
  class: "experience-button",
4173
4226
  onClick: submit
4174
4227
  }, {
4175
- default: withCtx(() => _cache[9] || (_cache[9] = [
4228
+ default: withCtx(() => [
4176
4229
  createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
4177
- ])),
4230
+ ]),
4178
4231
  _: 1
4179
4232
  /* STABLE */
4180
4233
  })
@@ -4261,8 +4314,22 @@ function useHttp$1() {
4261
4314
  return $http;
4262
4315
  }
4263
4316
 
4264
- const _hoisted_1$e = { class: "notice-popup-bd" };
4265
- const _hoisted_2$a = { style: { "white-space": "pre-wrap" } };
4317
+ const _hoisted_1$f = /* @__PURE__ */ createElementVNode(
4318
+ "div",
4319
+ { class: "notice-popup-hd" },
4320
+ [
4321
+ /* @__PURE__ */ createElementVNode("img", {
4322
+ class: "notice-popup-hd-icon",
4323
+ src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4324
+ alt: ""
4325
+ }),
4326
+ /* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4327
+ ],
4328
+ -1
4329
+ /* HOISTED */
4330
+ );
4331
+ const _hoisted_2$d = { class: "notice-popup-bd" };
4332
+ const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
4266
4333
  var script$f = /* @__PURE__ */ defineComponent({
4267
4334
  __name: "NoticePopup",
4268
4335
  props: {
@@ -4303,24 +4370,11 @@ var script$f = /* @__PURE__ */ defineComponent({
4303
4370
  round: ""
4304
4371
  }, {
4305
4372
  default: withCtx(() => [
4306
- _cache[1] || (_cache[1] = createElementVNode(
4307
- "div",
4308
- { class: "notice-popup-hd" },
4309
- [
4310
- createElementVNode("img", {
4311
- class: "notice-popup-hd-icon",
4312
- src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4313
- alt: ""
4314
- }),
4315
- createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4316
- ],
4317
- -1
4318
- /* HOISTED */
4319
- )),
4320
- createElementVNode("div", _hoisted_1$e, [
4373
+ _hoisted_1$f,
4374
+ createElementVNode("div", _hoisted_2$d, [
4321
4375
  createElementVNode(
4322
4376
  "div",
4323
- _hoisted_2$a,
4377
+ _hoisted_3$b,
4324
4378
  toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
4325
4379
  1
4326
4380
  /* TEXT */
@@ -4373,8 +4427,19 @@ function useNotice() {
4373
4427
  };
4374
4428
  }
4375
4429
 
4376
- const _hoisted_1$d = { class: "notice-banner-text" };
4377
- const _hoisted_2$9 = ["onClick"];
4430
+ const _hoisted_1$e = /* @__PURE__ */ createElementVNode(
4431
+ "img",
4432
+ {
4433
+ class: "notice-banner-icon",
4434
+ src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4435
+ alt: ""
4436
+ },
4437
+ null,
4438
+ -1
4439
+ /* HOISTED */
4440
+ );
4441
+ const _hoisted_2$c = { class: "notice-banner-text" };
4442
+ const _hoisted_3$a = ["onClick"];
4378
4443
  var script$e = /* @__PURE__ */ defineComponent({
4379
4444
  __name: "NoticeBanner",
4380
4445
  props: {
@@ -4506,20 +4571,10 @@ var script$e = /* @__PURE__ */ defineComponent({
4506
4571
  onClose: ($event) => unref(onClose)(item, key)
4507
4572
  }, {
4508
4573
  default: withCtx(() => [
4509
- _cache[1] || (_cache[1] = createElementVNode(
4510
- "img",
4511
- {
4512
- class: "notice-banner-icon",
4513
- src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4514
- alt: ""
4515
- },
4516
- null,
4517
- -1
4518
- /* HOISTED */
4519
- )),
4574
+ _hoisted_1$e,
4520
4575
  createElementVNode(
4521
4576
  "div",
4522
- _hoisted_1$d,
4577
+ _hoisted_2$c,
4523
4578
  toDisplayString(item.context),
4524
4579
  1
4525
4580
  /* TEXT */
@@ -4527,7 +4582,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4527
4582
  createElementVNode("div", {
4528
4583
  class: "notice-banner-btn",
4529
4584
  onClick: ($event) => onDetail(item)
4530
- }, "\u8BE6\u60C5", 8, _hoisted_2$9)
4585
+ }, "\u8BE6\u60C5", 8, _hoisted_3$a)
4531
4586
  ]),
4532
4587
  _: 2
4533
4588
  /* DYNAMIC */
@@ -4565,8 +4620,26 @@ var script$e = /* @__PURE__ */ defineComponent({
4565
4620
 
4566
4621
  script$e.__file = "src/notice/components/NoticeBanner.vue";
4567
4622
 
4568
- const _hoisted_1$c = { class: "notice-entry" };
4569
- const _hoisted_2$8 = {
4623
+ const _hoisted_1$d = { class: "notice-entry" };
4624
+ const _hoisted_2$b = /* @__PURE__ */ createElementVNode(
4625
+ "img",
4626
+ {
4627
+ class: "notice-entry-img",
4628
+ src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4629
+ alt: ""
4630
+ },
4631
+ null,
4632
+ -1
4633
+ /* HOISTED */
4634
+ );
4635
+ const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
4636
+ "span",
4637
+ null,
4638
+ "\u901A\u77E5",
4639
+ -1
4640
+ /* HOISTED */
4641
+ );
4642
+ const _hoisted_4$8 = {
4570
4643
  key: 0,
4571
4644
  class: "notice-entry-icon"
4572
4645
  };
@@ -4606,26 +4679,10 @@ var script$d = /* @__PURE__ */ defineComponent({
4606
4679
  });
4607
4680
  }
4608
4681
  return (_ctx, _cache) => {
4609
- return openBlock(), createElementBlock("div", _hoisted_1$c, [
4610
- _cache[0] || (_cache[0] = createElementVNode(
4611
- "img",
4612
- {
4613
- class: "notice-entry-img",
4614
- src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4615
- alt: ""
4616
- },
4617
- null,
4618
- -1
4619
- /* HOISTED */
4620
- )),
4621
- _cache[1] || (_cache[1] = createElementVNode(
4622
- "span",
4623
- null,
4624
- "\u901A\u77E5",
4625
- -1
4626
- /* HOISTED */
4627
- )),
4628
- noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
4682
+ return openBlock(), createElementBlock("div", _hoisted_1$d, [
4683
+ _hoisted_2$b,
4684
+ _hoisted_3$9,
4685
+ noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_4$8)) : createCommentVNode("v-if", true)
4629
4686
  ]);
4630
4687
  };
4631
4688
  }
@@ -4633,9 +4690,34 @@ var script$d = /* @__PURE__ */ defineComponent({
4633
4690
 
4634
4691
  script$d.__file = "src/notice/components/NoticeEntry.vue";
4635
4692
 
4636
- const _hoisted_1$b = { class: "dd-search__form" };
4637
- const _hoisted_2$7 = { class: "dd-search__control" };
4638
- const _hoisted_3$6 = ["disabled", "placeholder", "focus"];
4693
+ const _hoisted_1$c = { class: "dd-search__form" };
4694
+ const _hoisted_2$a = /* @__PURE__ */ createElementVNode(
4695
+ "div",
4696
+ { class: "dd-search__prefix" },
4697
+ [
4698
+ /* @__PURE__ */ createElementVNode("image", {
4699
+ class: "full-img",
4700
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4701
+ })
4702
+ ],
4703
+ -1
4704
+ /* HOISTED */
4705
+ );
4706
+ const _hoisted_3$8 = { class: "dd-search__control" };
4707
+ const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
4708
+ const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
4709
+ "image",
4710
+ {
4711
+ class: "full-img",
4712
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4713
+ },
4714
+ null,
4715
+ -1
4716
+ /* HOISTED */
4717
+ );
4718
+ const _hoisted_6$5 = [
4719
+ _hoisted_5$7
4720
+ ];
4639
4721
  var script$c = /* @__PURE__ */ defineComponent({
4640
4722
  __name: "index",
4641
4723
  props: {
@@ -4689,20 +4771,9 @@ var script$c = /* @__PURE__ */ defineComponent({
4689
4771
  }])
4690
4772
  },
4691
4773
  [
4692
- createElementVNode("div", _hoisted_1$b, [
4693
- _cache[2] || (_cache[2] = createElementVNode(
4694
- "div",
4695
- { class: "dd-search__prefix" },
4696
- [
4697
- createElementVNode("image", {
4698
- class: "full-img",
4699
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4700
- })
4701
- ],
4702
- -1
4703
- /* HOISTED */
4704
- )),
4705
- createElementVNode("div", _hoisted_2$7, [
4774
+ createElementVNode("div", _hoisted_1$c, [
4775
+ _hoisted_2$a,
4776
+ createElementVNode("div", _hoisted_3$8, [
4706
4777
  withDirectives(createElementVNode("input", {
4707
4778
  class: "dd-search__input",
4708
4779
  type: "text",
@@ -4716,7 +4787,7 @@ var script$c = /* @__PURE__ */ defineComponent({
4716
4787
  onConfirm,
4717
4788
  onFocus: onFoucs,
4718
4789
  onBlur
4719
- }, null, 40, _hoisted_3$6), [
4790
+ }, null, 40, _hoisted_4$7), [
4720
4791
  [vModelText, key.value]
4721
4792
  ])
4722
4793
  ]),
@@ -4726,18 +4797,7 @@ var script$c = /* @__PURE__ */ defineComponent({
4726
4797
  class: "dd-search__suffix",
4727
4798
  onTap: onClear
4728
4799
  },
4729
- _cache[1] || (_cache[1] = [
4730
- createElementVNode(
4731
- "image",
4732
- {
4733
- class: "full-img",
4734
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4735
- },
4736
- null,
4737
- -1
4738
- /* HOISTED */
4739
- )
4740
- ]),
4800
+ [..._hoisted_6$5],
4741
4801
  544
4742
4802
  /* NEED_HYDRATION, NEED_PATCH */
4743
4803
  ), [
@@ -4818,28 +4878,59 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
4818
4878
  };
4819
4879
  }
4820
4880
 
4821
- const _hoisted_1$a = { class: "notice-list" };
4822
- const _hoisted_2$6 = { style: { "flex": "1", "overflow": "hidden" } };
4823
- const _hoisted_3$5 = {
4881
+ const _hoisted_1$b = { class: "notice-list" };
4882
+ const _hoisted_2$9 = { style: { "flex": "1", "overflow": "hidden" } };
4883
+ const _hoisted_3$7 = {
4824
4884
  key: 0,
4825
4885
  class: "wrapper"
4826
4886
  };
4827
- const _hoisted_4$4 = ["onClick"];
4828
- const _hoisted_5$3 = { class: "time" };
4829
- const _hoisted_6$2 = {
4887
+ const _hoisted_4$6 = ["onClick"];
4888
+ const _hoisted_5$6 = /* @__PURE__ */ createElementVNode(
4889
+ "div",
4890
+ { class: "point" },
4891
+ null,
4892
+ -1
4893
+ /* HOISTED */
4894
+ );
4895
+ const _hoisted_6$4 = { class: "time" };
4896
+ const _hoisted_7$3 = {
4830
4897
  key: 0,
4831
4898
  class: "notice-list-label"
4832
4899
  };
4833
- const _hoisted_7$2 = ["onClick"];
4834
- const _hoisted_8$2 = {
4900
+ const _hoisted_8$2 = ["onClick"];
4901
+ const _hoisted_9$2 = {
4835
4902
  key: 0,
4836
4903
  class: "cue-text",
4837
4904
  style: { "padding-bottom": "40px" }
4838
4905
  };
4839
- const _hoisted_9$1 = {
4906
+ const _hoisted_10$2 = {
4840
4907
  key: 1,
4841
4908
  class: "no-data"
4842
4909
  };
4910
+ const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
4911
+ "div",
4912
+ { class: "no-data-img" },
4913
+ [
4914
+ /* @__PURE__ */ createElementVNode("img", {
4915
+ style: { "width": "100%", "height": "100%" },
4916
+ src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
4917
+ alt: ""
4918
+ })
4919
+ ],
4920
+ -1
4921
+ /* HOISTED */
4922
+ );
4923
+ const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
4924
+ "div",
4925
+ { class: "text" },
4926
+ "\u6682\u65E0\u8BB0\u5F55",
4927
+ -1
4928
+ /* HOISTED */
4929
+ );
4930
+ const _hoisted_13$2 = [
4931
+ _hoisted_11$2,
4932
+ _hoisted_12$2
4933
+ ];
4843
4934
  var script$b = /* @__PURE__ */ defineComponent({
4844
4935
  __name: "NoticeList",
4845
4936
  props: {
@@ -4914,7 +5005,7 @@ var script$b = /* @__PURE__ */ defineComponent({
4914
5005
  return (_ctx, _cache) => {
4915
5006
  const _component_rich_text = resolveComponent("rich-text");
4916
5007
  const _component_scroll_view = resolveComponent("scroll-view");
4917
- return openBlock(), createElementBlock("div", _hoisted_1$a, [
5008
+ return openBlock(), createElementBlock("div", _hoisted_1$b, [
4918
5009
  createVNode(script$c, {
4919
5010
  bordered: false,
4920
5011
  focus: false,
@@ -4922,8 +5013,8 @@ var script$b = /* @__PURE__ */ defineComponent({
4922
5013
  placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
4923
5014
  onSearch
4924
5015
  }, null, 8, ["value"]),
4925
- createElementVNode("div", _hoisted_2$6, [
4926
- unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
5016
+ createElementVNode("div", _hoisted_2$9, [
5017
+ unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
4927
5018
  createVNode(_component_scroll_view, {
4928
5019
  class: "content",
4929
5020
  "scroll-y": true,
@@ -4944,17 +5035,11 @@ var script$b = /* @__PURE__ */ defineComponent({
4944
5035
  key: index,
4945
5036
  onClick: ($event) => notifyRead(item, index)
4946
5037
  }, [
4947
- _cache[0] || (_cache[0] = createElementVNode(
4948
- "div",
4949
- { class: "point" },
4950
- null,
4951
- -1
4952
- /* HOISTED */
4953
- )),
5038
+ _hoisted_5$6,
4954
5039
  createElementVNode("div", null, [
4955
5040
  createElementVNode(
4956
5041
  "div",
4957
- _hoisted_5$3,
5042
+ _hoisted_6$4,
4958
5043
  toDisplayString(formatMinutes(item.receiveTime)),
4959
5044
  1
4960
5045
  /* TEXT */
@@ -4974,7 +5059,7 @@ var script$b = /* @__PURE__ */ defineComponent({
4974
5059
  ),
4975
5060
  _ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
4976
5061
  "div",
4977
- _hoisted_6$2,
5062
+ _hoisted_7$3,
4978
5063
  toDisplayString(appMap[item.appCode]),
4979
5064
  1
4980
5065
  /* TEXT */
@@ -4997,44 +5082,23 @@ var script$b = /* @__PURE__ */ defineComponent({
4997
5082
  key: 0,
4998
5083
  class: "notice-list-file",
4999
5084
  onClick: ($event) => onNoticeView(item.link)
5000
- }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$2)) : createCommentVNode("v-if", true)
5085
+ }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_8$2)) : createCommentVNode("v-if", true)
5001
5086
  ],
5002
5087
  2
5003
5088
  /* CLASS */
5004
5089
  )
5005
5090
  ])
5006
- ], 10, _hoisted_4$4);
5091
+ ], 10, _hoisted_4$6);
5007
5092
  }),
5008
5093
  128
5009
5094
  /* KEYED_FRAGMENT */
5010
5095
  )),
5011
- unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_8$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5096
+ unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_9$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5012
5097
  ]),
5013
5098
  _: 1
5014
5099
  /* STABLE */
5015
5100
  }, 8, ["refresherTriggered", "onScrolltolower"])
5016
- ])) : (openBlock(), createElementBlock("div", _hoisted_9$1, _cache[1] || (_cache[1] = [
5017
- createElementVNode(
5018
- "div",
5019
- { class: "no-data-img" },
5020
- [
5021
- createElementVNode("img", {
5022
- style: { "width": "100%", "height": "100%" },
5023
- src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
5024
- alt: ""
5025
- })
5026
- ],
5027
- -1
5028
- /* HOISTED */
5029
- ),
5030
- createElementVNode(
5031
- "div",
5032
- { class: "text" },
5033
- "\u6682\u65E0\u8BB0\u5F55",
5034
- -1
5035
- /* HOISTED */
5036
- )
5037
- ])))
5101
+ ])) : (openBlock(), createElementBlock("div", _hoisted_10$2, [..._hoisted_13$2]))
5038
5102
  ])
5039
5103
  ]);
5040
5104
  };
@@ -5043,10 +5107,24 @@ var script$b = /* @__PURE__ */ defineComponent({
5043
5107
 
5044
5108
  script$b.__file = "src/notice/components/NoticeList.vue";
5045
5109
 
5046
- const _hoisted_1$9 = { class: "user-entry" };
5047
- const _hoisted_2$5 = { class: "user-entry-head" };
5048
- const _hoisted_3$4 = ["src"];
5049
- const _hoisted_4$3 = { class: "user-entry-bd" };
5110
+ const _hoisted_1$a = { class: "user-entry" };
5111
+ const _hoisted_2$8 = { class: "user-entry-head" };
5112
+ const _hoisted_3$6 = ["src"];
5113
+ const _hoisted_4$5 = { class: "user-entry-bd" };
5114
+ const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
5115
+ "span",
5116
+ { class: "user-entry-bd-arrow" },
5117
+ ">",
5118
+ -1
5119
+ /* HOISTED */
5120
+ );
5121
+ const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
5122
+ "span",
5123
+ { class: "user-entry-bd-arrow" },
5124
+ ">",
5125
+ -1
5126
+ /* HOISTED */
5127
+ );
5050
5128
  var script$a = /* @__PURE__ */ defineComponent({
5051
5129
  __name: "UserEntry",
5052
5130
  props: {
@@ -5069,8 +5147,8 @@ var script$a = /* @__PURE__ */ defineComponent({
5069
5147
  }
5070
5148
  const emits = __emit;
5071
5149
  return (_ctx, _cache) => {
5072
- return openBlock(), createElementBlock("div", _hoisted_1$9, [
5073
- createElementVNode("div", _hoisted_2$5, [
5150
+ return openBlock(), createElementBlock("div", _hoisted_1$a, [
5151
+ createElementVNode("div", _hoisted_2$8, [
5074
5152
  _ctx.avatar ? (openBlock(), createElementBlock("img", {
5075
5153
  key: 0,
5076
5154
  class: "user-entry-head-img",
@@ -5078,7 +5156,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5078
5156
  mode: "aspectFit",
5079
5157
  src: _ctx.avatar,
5080
5158
  alt: ""
5081
- }, null, 8, _hoisted_3$4)) : (openBlock(), createElementBlock("img", {
5159
+ }, null, 8, _hoisted_3$6)) : (openBlock(), createElementBlock("img", {
5082
5160
  key: 1,
5083
5161
  class: "user-entry-head-img",
5084
5162
  mode: "aspectFit",
@@ -5087,21 +5165,15 @@ var script$a = /* @__PURE__ */ defineComponent({
5087
5165
  alt: ""
5088
5166
  }))
5089
5167
  ]),
5090
- createElementVNode("div", _hoisted_4$3, [
5168
+ createElementVNode("div", _hoisted_4$5, [
5091
5169
  !_ctx.mobile ? (openBlock(), createElementBlock("div", {
5092
5170
  key: 0,
5093
5171
  class: "user-entry-bd-bigtxt",
5094
5172
  onClick: toLogin
5095
- }, _cache[0] || (_cache[0] = [
5173
+ }, [
5096
5174
  createTextVNode(" \u8BF7\u767B\u5F55 "),
5097
- createElementVNode(
5098
- "span",
5099
- { class: "user-entry-bd-arrow" },
5100
- ">",
5101
- -1
5102
- /* HOISTED */
5103
- )
5104
- ]))) : (openBlock(), createElementBlock(
5175
+ _hoisted_5$5
5176
+ ])) : (openBlock(), createElementBlock(
5105
5177
  Fragment,
5106
5178
  { key: 1 },
5107
5179
  [
@@ -5114,13 +5186,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5114
5186
  1
5115
5187
  /* TEXT */
5116
5188
  ),
5117
- _cache[1] || (_cache[1] = createElementVNode(
5118
- "span",
5119
- { class: "user-entry-bd-arrow" },
5120
- ">",
5121
- -1
5122
- /* HOISTED */
5123
- ))
5189
+ _hoisted_6$3
5124
5190
  ]),
5125
5191
  createElementVNode(
5126
5192
  "div",
@@ -5144,7 +5210,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5144
5210
 
5145
5211
  script$a.__file = "src/user/components/UserEntry.vue";
5146
5212
 
5147
- const _hoisted_1$8 = { class: "dd-skeleton" };
5213
+ const _hoisted_1$9 = { class: "dd-skeleton" };
5148
5214
  var script$9 = /* @__PURE__ */ defineComponent({
5149
5215
  __name: "index",
5150
5216
  props: {
@@ -5155,7 +5221,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
5155
5221
  setup(__props) {
5156
5222
  return (_ctx, _cache) => {
5157
5223
  const _component_nut_skeleton = Skeleton;
5158
- return openBlock(), createElementBlock("div", _hoisted_1$8, [
5224
+ return openBlock(), createElementBlock("div", _hoisted_1$9, [
5159
5225
  (openBlock(true), createElementBlock(
5160
5226
  Fragment,
5161
5227
  null,
@@ -5269,49 +5335,77 @@ function useHttp() {
5269
5335
  return $http;
5270
5336
  }
5271
5337
 
5272
- const _hoisted_1$7 = {
5338
+ const _hoisted_1$8 = {
5273
5339
  key: 1,
5274
5340
  class: "user-info-wrap"
5275
5341
  };
5276
- const _hoisted_2$4 = { class: "user-info-head" };
5277
- const _hoisted_3$3 = ["src"];
5278
- const _hoisted_4$2 = {
5342
+ const _hoisted_2$7 = /* @__PURE__ */ createElementVNode(
5343
+ "div",
5344
+ { class: "user-info-tit" },
5345
+ "\u8D26\u53F7\u4FE1\u606F",
5346
+ -1
5347
+ /* HOISTED */
5348
+ );
5349
+ const _hoisted_3$5 = { class: "user-info-head" };
5350
+ const _hoisted_4$4 = ["src"];
5351
+ const _hoisted_5$4 = {
5279
5352
  key: 1,
5280
5353
  class: "user-info-head-img",
5281
5354
  mode: "aspectFit",
5282
5355
  src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
5283
5356
  alt: ""
5284
5357
  };
5285
- const _hoisted_5$2 = { class: "user-info-team" };
5286
- const _hoisted_6$1 = { class: "user-info-team-item-avatar" };
5287
- const _hoisted_7$1 = ["src"];
5288
- const _hoisted_8$1 = {
5358
+ const _hoisted_6$2 = /* @__PURE__ */ createElementVNode(
5359
+ "div",
5360
+ { class: "user-info-head-upload" },
5361
+ [
5362
+ /* @__PURE__ */ createElementVNode("img", {
5363
+ class: "user-info-head-upload-icon",
5364
+ mode: "aspectFit",
5365
+ src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5366
+ alt: ""
5367
+ })
5368
+ ],
5369
+ -1
5370
+ /* HOISTED */
5371
+ );
5372
+ const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
5373
+ "div",
5374
+ { class: "user-info-tit" },
5375
+ "\u4F01\u4E1A/\u56E2\u961F",
5376
+ -1
5377
+ /* HOISTED */
5378
+ );
5379
+ const _hoisted_8$1 = { class: "user-info-team" };
5380
+ const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
5381
+ const _hoisted_10$1 = ["src"];
5382
+ const _hoisted_11$1 = {
5289
5383
  key: 1,
5290
5384
  class: "user-info-team-item-avatar-img empty",
5291
5385
  mode: "aspectFit",
5292
5386
  src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
5293
5387
  alt: ""
5294
5388
  };
5295
- const _hoisted_9 = { class: "user-info-team-item-bd" };
5296
- const _hoisted_10 = { class: "user-info-team-item-title" };
5297
- const _hoisted_11 = {
5389
+ const _hoisted_12$1 = { class: "user-info-team-item-bd" };
5390
+ const _hoisted_13$1 = { class: "user-info-team-item-title" };
5391
+ const _hoisted_14$1 = {
5298
5392
  key: 0,
5299
5393
  class: "user-info-team-item-app"
5300
5394
  };
5301
- const _hoisted_12 = ["onClick"];
5302
- const _hoisted_13 = {
5395
+ const _hoisted_15$1 = ["onClick"];
5396
+ const _hoisted_16$1 = {
5303
5397
  key: 1,
5304
5398
  class: "user-info-team-item-role"
5305
5399
  };
5306
- const _hoisted_14 = { class: "user-info-team-item-role-item-name" };
5307
- const _hoisted_15 = { class: "user-info-team-item-role-item-info" };
5308
- const _hoisted_16 = { class: "user-info-team-item-user" };
5309
- const _hoisted_17 = ["onClick"];
5310
- const _hoisted_18 = { class: "user-info-team-item-dept" };
5311
- const _hoisted_19 = { class: "user-info-ft" };
5312
- const _hoisted_20 = { class: "upload-avatar-popup-box" };
5313
- const _hoisted_21 = ["src"];
5314
- const _hoisted_22 = {
5400
+ const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
5401
+ const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
5402
+ const _hoisted_19 = { class: "user-info-team-item-user" };
5403
+ const _hoisted_20 = ["onClick"];
5404
+ const _hoisted_21 = { class: "user-info-team-item-dept" };
5405
+ const _hoisted_22 = { class: "user-info-ft" };
5406
+ const _hoisted_23 = { class: "upload-avatar-popup-box" };
5407
+ const _hoisted_24 = ["src"];
5408
+ const _hoisted_25 = {
5315
5409
  key: 1,
5316
5410
  class: "upload-avatar-popup-avatar",
5317
5411
  mode: "aspectFit",
@@ -5489,15 +5583,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5489
5583
  firstLoading.value ? (openBlock(), createBlock(script$9, {
5490
5584
  key: 0,
5491
5585
  row: 3
5492
- })) : (openBlock(), createElementBlock("div", _hoisted_1$7, [
5493
- _cache[7] || (_cache[7] = createElementVNode(
5494
- "div",
5495
- { class: "user-info-tit" },
5496
- "\u8D26\u53F7\u4FE1\u606F",
5497
- -1
5498
- /* HOISTED */
5499
- )),
5500
- createElementVNode("div", _hoisted_2$4, [
5586
+ })) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
5587
+ _hoisted_2$7,
5588
+ createElementVNode("div", _hoisted_3$5, [
5501
5589
  createElementVNode("div", {
5502
5590
  class: "user-info-head-avatar",
5503
5591
  onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
@@ -5508,21 +5596,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
5508
5596
  mode: "aspectFit",
5509
5597
  src: userInfo.value.avatar,
5510
5598
  alt: ""
5511
- }, null, 8, _hoisted_3$3)) : (openBlock(), createElementBlock("img", _hoisted_4$2)),
5512
- _cache[4] || (_cache[4] = createElementVNode(
5513
- "div",
5514
- { class: "user-info-head-upload" },
5515
- [
5516
- createElementVNode("img", {
5517
- class: "user-info-head-upload-icon",
5518
- mode: "aspectFit",
5519
- src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5520
- alt: ""
5521
- })
5522
- ],
5523
- -1
5524
- /* HOISTED */
5525
- ))
5599
+ }, null, 8, _hoisted_4$4)) : (openBlock(), createElementBlock("img", _hoisted_5$4)),
5600
+ _hoisted_6$2
5526
5601
  ]),
5527
5602
  createVNode(_component_nut_cell, {
5528
5603
  title: "\u767B\u5F55\u624B\u673A\u53F7",
@@ -5531,14 +5606,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
5531
5606
  onClick: toBinding
5532
5607
  }, null, 8, ["desc"])
5533
5608
  ]),
5534
- _cache[8] || (_cache[8] = createElementVNode(
5535
- "div",
5536
- { class: "user-info-tit" },
5537
- "\u4F01\u4E1A/\u56E2\u961F",
5538
- -1
5539
- /* HOISTED */
5540
- )),
5541
- createElementVNode("div", _hoisted_5$2, [
5609
+ _hoisted_7$2,
5610
+ createElementVNode("div", _hoisted_8$1, [
5542
5611
  (openBlock(true), createElementBlock(
5543
5612
  Fragment,
5544
5613
  null,
@@ -5547,24 +5616,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
5547
5616
  key,
5548
5617
  class: "user-info-team-item"
5549
5618
  }, [
5550
- createElementVNode("div", _hoisted_6$1, [
5619
+ createElementVNode("div", _hoisted_9$1, [
5551
5620
  item.tenantLogo ? (openBlock(), createElementBlock("img", {
5552
5621
  key: 0,
5553
5622
  class: "user-info-team-item-avatar-img",
5554
5623
  mode: "aspectFit",
5555
5624
  src: item.tenantLogo,
5556
5625
  alt: ""
5557
- }, null, 8, _hoisted_7$1)) : (openBlock(), createElementBlock("img", _hoisted_8$1))
5626
+ }, null, 8, _hoisted_10$1)) : (openBlock(), createElementBlock("img", _hoisted_11$1))
5558
5627
  ]),
5559
- createElementVNode("div", _hoisted_9, [
5628
+ createElementVNode("div", _hoisted_12$1, [
5560
5629
  createElementVNode(
5561
5630
  "div",
5562
- _hoisted_10,
5631
+ _hoisted_13$1,
5563
5632
  toDisplayString(item.tenantName),
5564
5633
  1
5565
5634
  /* TEXT */
5566
5635
  ),
5567
- item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_11, [
5636
+ item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
5568
5637
  (openBlock(true), createElementBlock(
5569
5638
  Fragment,
5570
5639
  null,
@@ -5587,7 +5656,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5587
5656
  class: "user-info-team-item-role-btn",
5588
5657
  onClick: ($event) => toShowRole(item)
5589
5658
  }, [
5590
- _cache[5] || (_cache[5] = createTextVNode(" \u89D2\u8272\u8BE6\u60C5 ")),
5659
+ createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
5591
5660
  createElementVNode(
5592
5661
  "img",
5593
5662
  {
@@ -5599,9 +5668,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5599
5668
  2
5600
5669
  /* CLASS */
5601
5670
  )
5602
- ], 8, _hoisted_12)
5671
+ ], 8, _hoisted_15$1)
5603
5672
  ])) : createCommentVNode("v-if", true),
5604
- item.showRole ? (openBlock(), createElementBlock("div", _hoisted_13, [
5673
+ item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16$1, [
5605
5674
  (openBlock(true), createElementBlock(
5606
5675
  Fragment,
5607
5676
  null,
@@ -5612,14 +5681,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5612
5681
  }, [
5613
5682
  createElementVNode(
5614
5683
  "div",
5615
- _hoisted_14,
5684
+ _hoisted_17,
5616
5685
  toDisplayString(aitem.appAbbr),
5617
5686
  1
5618
5687
  /* TEXT */
5619
5688
  ),
5620
5689
  createElementVNode(
5621
5690
  "div",
5622
- _hoisted_15,
5691
+ _hoisted_18,
5623
5692
  toDisplayString(aitem.roleName),
5624
5693
  1
5625
5694
  /* TEXT */
@@ -5630,7 +5699,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5630
5699
  /* KEYED_FRAGMENT */
5631
5700
  ))
5632
5701
  ])) : createCommentVNode("v-if", true),
5633
- createElementVNode("div", _hoisted_16, [
5702
+ createElementVNode("div", _hoisted_19, [
5634
5703
  createTextVNode(
5635
5704
  toDisplayString(item.fullName) + " ",
5636
5705
  1
@@ -5641,9 +5710,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5641
5710
  class: "user-info-team-item-user-icon",
5642
5711
  src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
5643
5712
  alt: ""
5644
- }, null, 8, _hoisted_17)
5713
+ }, null, 8, _hoisted_20)
5645
5714
  ]),
5646
- createElementVNode("div", _hoisted_18, [
5715
+ createElementVNode("div", _hoisted_21, [
5647
5716
  (openBlock(true), createElementBlock(
5648
5717
  Fragment,
5649
5718
  null,
@@ -5670,7 +5739,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5670
5739
  /* KEYED_FRAGMENT */
5671
5740
  ))
5672
5741
  ]),
5673
- createElementVNode("div", _hoisted_19, [
5742
+ createElementVNode("div", _hoisted_22, [
5674
5743
  createVNode(_component_nut_button, {
5675
5744
  class: "user-info-ft-btn",
5676
5745
  style: { "width": "100%" },
@@ -5678,9 +5747,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5678
5747
  plain: "",
5679
5748
  type: "primary"
5680
5749
  }, {
5681
- default: withCtx(() => _cache[6] || (_cache[6] = [
5750
+ default: withCtx(() => [
5682
5751
  createTextVNode("\u9000\u51FA\u767B\u5F55")
5683
- ])),
5752
+ ]),
5684
5753
  _: 1
5685
5754
  /* STABLE */
5686
5755
  })
@@ -5705,9 +5774,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5705
5774
  type: "default",
5706
5775
  onClick: onUserNameCancel
5707
5776
  }, {
5708
- default: withCtx(() => _cache[9] || (_cache[9] = [
5777
+ default: withCtx(() => [
5709
5778
  createTextVNode(" \u53D6\u6D88 ")
5710
- ])),
5779
+ ]),
5711
5780
  _: 1
5712
5781
  /* STABLE */
5713
5782
  }),
@@ -5716,9 +5785,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5716
5785
  type: "primary",
5717
5786
  onClick: onUserNameOk
5718
5787
  }, {
5719
- default: withCtx(() => _cache[10] || (_cache[10] = [
5788
+ default: withCtx(() => [
5720
5789
  createTextVNode(" \u786E\u5B9A ")
5721
- ])),
5790
+ ]),
5722
5791
  _: 1
5723
5792
  /* STABLE */
5724
5793
  })
@@ -5743,14 +5812,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5743
5812
  "overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
5744
5813
  }, {
5745
5814
  default: withCtx(() => [
5746
- createElementVNode("div", _hoisted_20, [
5815
+ createElementVNode("div", _hoisted_23, [
5747
5816
  userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
5748
5817
  key: 0,
5749
5818
  class: "upload-avatar-popup-avatar",
5750
5819
  mode: "aspectFit",
5751
5820
  src: userInfo.value.avatar,
5752
5821
  alt: ""
5753
- }, null, 8, _hoisted_21)) : (openBlock(), createElementBlock("img", _hoisted_22)),
5822
+ }, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
5754
5823
  createElementVNode("div", {
5755
5824
  class: "upload-avatar-popup-btn",
5756
5825
  onClick: toUpload
@@ -5770,15 +5839,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
5770
5839
 
5771
5840
  script$8.__file = "src/user/components/UserInfo.vue";
5772
5841
 
5773
- const _hoisted_1$6 = { class: "user-binding" };
5774
- const _hoisted_2$3 = { class: "user-binding-layout" };
5775
- const _hoisted_3$2 = ["src"];
5776
- const _hoisted_4$1 = {
5842
+ const _hoisted_1$7 = { class: "user-binding" };
5843
+ const _hoisted_2$6 = { class: "user-binding-layout" };
5844
+ const _hoisted_3$4 = ["src"];
5845
+ const _hoisted_4$3 = {
5777
5846
  key: 0,
5778
5847
  class: "user-binding-layout user-binding-inputlayout",
5779
5848
  style: { "flex": "1" }
5780
5849
  };
5781
- const _hoisted_5$1 = {
5850
+ const _hoisted_5$3 = {
5782
5851
  key: 1,
5783
5852
  class: "user-binding-layout user-binding-inputlayout",
5784
5853
  style: { "flex": "1" }
@@ -5865,28 +5934,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
5865
5934
  const _component_nut_form_item = FormItem;
5866
5935
  const _component_nut_button = Button;
5867
5936
  const _component_nut_form = Form;
5868
- return openBlock(), createElementBlock("div", _hoisted_1$6, [
5869
- createElementVNode("div", _hoisted_2$3, [
5937
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
5938
+ createElementVNode("div", _hoisted_2$6, [
5870
5939
  createElementVNode("img", {
5871
5940
  class: "user-binding-img",
5872
5941
  src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
5873
- }, null, 8, _hoisted_3$2),
5942
+ }, null, 8, _hoisted_3$4),
5874
5943
  createVNode(_component_nut_steps, {
5875
5944
  current: current.value,
5876
5945
  class: "user-binding-steps"
5877
5946
  }, {
5878
5947
  default: withCtx(() => [
5879
5948
  createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
5880
- default: withCtx(() => _cache[4] || (_cache[4] = [
5949
+ default: withCtx(() => [
5881
5950
  createTextVNode("1")
5882
- ])),
5951
+ ]),
5883
5952
  _: 1
5884
5953
  /* STABLE */
5885
5954
  }),
5886
5955
  createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
5887
- default: withCtx(() => _cache[5] || (_cache[5] = [
5956
+ default: withCtx(() => [
5888
5957
  createTextVNode("2")
5889
- ])),
5958
+ ]),
5890
5959
  _: 1
5891
5960
  /* STABLE */
5892
5961
  })
@@ -5895,7 +5964,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
5895
5964
  /* STABLE */
5896
5965
  }, 8, ["current"])
5897
5966
  ]),
5898
- current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
5967
+ current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
5899
5968
  createVNode(_component_nut_form, null, {
5900
5969
  default: withCtx(() => [
5901
5970
  createVNode(_component_nut_form_item, {
@@ -5963,13 +6032,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
5963
6032
  type: "primary",
5964
6033
  onClick: onAuth
5965
6034
  }, {
5966
- default: withCtx(() => _cache[6] || (_cache[6] = [
6035
+ default: withCtx(() => [
5967
6036
  createTextVNode("\u63D0\u4EA4")
5968
- ])),
6037
+ ]),
5969
6038
  _: 1
5970
6039
  /* STABLE */
5971
6040
  }, 8, ["disabled"])
5972
- ])) : (openBlock(), createElementBlock("div", _hoisted_5$1, [
6041
+ ])) : (openBlock(), createElementBlock("div", _hoisted_5$3, [
5973
6042
  createVNode(_component_nut_form, null, {
5974
6043
  default: withCtx(() => [
5975
6044
  createVNode(_component_nut_form_item, {
@@ -6036,9 +6105,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
6036
6105
  type: "primary",
6037
6106
  onClick: onBinding
6038
6107
  }, {
6039
- default: withCtx(() => _cache[7] || (_cache[7] = [
6108
+ default: withCtx(() => [
6040
6109
  createTextVNode("\u63D0\u4EA4")
6041
- ])),
6110
+ ]),
6042
6111
  _: 1
6043
6112
  /* STABLE */
6044
6113
  }, 8, ["disabled"])
@@ -6050,8 +6119,19 @@ var script$7 = /* @__PURE__ */ defineComponent({
6050
6119
 
6051
6120
  script$7.__file = "src/user/components/UserBinding.vue";
6052
6121
 
6053
- const _hoisted_1$5 = { class: "user-binding-success" };
6054
- const _hoisted_2$2 = { class: "user-binding-success-info" };
6122
+ const _hoisted_1$6 = { class: "user-binding-success" };
6123
+ const _hoisted_2$5 = /* @__PURE__ */ createElementVNode(
6124
+ "img",
6125
+ {
6126
+ class: "user-binding-success-icon",
6127
+ src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6128
+ alt: ""
6129
+ },
6130
+ null,
6131
+ -1
6132
+ /* HOISTED */
6133
+ );
6134
+ const _hoisted_3$3 = { class: "user-binding-success-info" };
6055
6135
  var script$6 = /* @__PURE__ */ defineComponent({
6056
6136
  __name: "UserBindingSuccess",
6057
6137
  emits: ["binding"],
@@ -6070,21 +6150,11 @@ var script$6 = /* @__PURE__ */ defineComponent({
6070
6150
  const emits = __emit;
6071
6151
  return (_ctx, _cache) => {
6072
6152
  const _component_nut_button = Button;
6073
- return openBlock(), createElementBlock("div", _hoisted_1$5, [
6074
- _cache[2] || (_cache[2] = createElementVNode(
6075
- "img",
6076
- {
6077
- class: "user-binding-success-icon",
6078
- src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6079
- alt: ""
6080
- },
6081
- null,
6082
- -1
6083
- /* HOISTED */
6084
- )),
6153
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
6154
+ _hoisted_2$5,
6085
6155
  createElementVNode(
6086
6156
  "div",
6087
- _hoisted_2$2,
6157
+ _hoisted_3$3,
6088
6158
  toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
6089
6159
  1
6090
6160
  /* TEXT */
@@ -6104,9 +6174,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
6104
6174
  type: "primary",
6105
6175
  onClick: toBinding
6106
6176
  }, {
6107
- default: withCtx(() => _cache[1] || (_cache[1] = [
6177
+ default: withCtx(() => [
6108
6178
  createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
6109
- ])),
6179
+ ]),
6110
6180
  _: 1
6111
6181
  /* STABLE */
6112
6182
  })
@@ -6724,11 +6794,39 @@ var script$5 = {
6724
6794
  }
6725
6795
  };
6726
6796
 
6727
- const _hoisted_1$4 = { class: "bt-container" };
6728
- const _hoisted_2$1 = ["src"];
6729
- const _hoisted_3$1 = { class: "slot" };
6797
+ const _hoisted_1$5 = { class: "bt-container" };
6798
+ const _hoisted_2$4 = ["src"];
6799
+ const _hoisted_3$2 = /* @__PURE__ */ createElementVNode(
6800
+ "view",
6801
+ { class: "line row row1" },
6802
+ null,
6803
+ -1
6804
+ /* HOISTED */
6805
+ );
6806
+ const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
6807
+ "view",
6808
+ { class: "line row row2" },
6809
+ null,
6810
+ -1
6811
+ /* HOISTED */
6812
+ );
6813
+ const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
6814
+ "view",
6815
+ { class: "line col col1" },
6816
+ null,
6817
+ -1
6818
+ /* HOISTED */
6819
+ );
6820
+ const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
6821
+ "view",
6822
+ { class: "line col col2" },
6823
+ null,
6824
+ -1
6825
+ /* HOISTED */
6826
+ );
6827
+ const _hoisted_7$1 = { class: "slot" };
6730
6828
  function render(_ctx, _cache, $props, $setup, $data, $options) {
6731
- return openBlock(), createElementBlock("view", _hoisted_1$4, [
6829
+ return openBlock(), createElementBlock("view", _hoisted_1$5, [
6732
6830
  createElementVNode("view", {
6733
6831
  class: "iconfont icon-replay",
6734
6832
  onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
@@ -6748,7 +6846,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6748
6846
  onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
6749
6847
  style: normalizeStyle([$options.imageStyle]),
6750
6848
  class: "image"
6751
- }, null, 44, _hoisted_2$1),
6849
+ }, null, 44, _hoisted_2$4),
6752
6850
  $props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
6753
6851
  "view",
6754
6852
  {
@@ -6767,34 +6865,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6767
6865
  Fragment,
6768
6866
  { key: 0 },
6769
6867
  [
6770
- _cache[12] || (_cache[12] = createElementVNode(
6771
- "view",
6772
- { class: "line row row1" },
6773
- null,
6774
- -1
6775
- /* HOISTED */
6776
- )),
6777
- _cache[13] || (_cache[13] = createElementVNode(
6778
- "view",
6779
- { class: "line row row2" },
6780
- null,
6781
- -1
6782
- /* HOISTED */
6783
- )),
6784
- _cache[14] || (_cache[14] = createElementVNode(
6785
- "view",
6786
- { class: "line col col1" },
6787
- null,
6788
- -1
6789
- /* HOISTED */
6790
- )),
6791
- _cache[15] || (_cache[15] = createElementVNode(
6792
- "view",
6793
- { class: "line col col2" },
6794
- null,
6795
- -1
6796
- /* HOISTED */
6797
- ))
6868
+ _hoisted_3$2,
6869
+ _hoisted_4$2,
6870
+ _hoisted_5$2,
6871
+ _hoisted_6$1
6798
6872
  ],
6799
6873
  64
6800
6874
  /* STABLE_FRAGMENT */
@@ -6903,7 +6977,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6903
6977
  32
6904
6978
  /* NEED_HYDRATION */
6905
6979
  ),
6906
- createElementVNode("view", _hoisted_3$1, [
6980
+ createElementVNode("view", _hoisted_7$1, [
6907
6981
  renderSlot(_ctx.$slots, "default")
6908
6982
  ]),
6909
6983
  $options.isWeapp ? (openBlock(), createElementBlock(
@@ -6942,7 +7016,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6942
7016
  script$5.render = render;
6943
7017
  script$5.__file = "src/components/bt-cropper/index.vue";
6944
7018
 
6945
- const _hoisted_1$3 = { class: "user-head-crop" };
7019
+ const _hoisted_1$4 = { class: "user-head-crop" };
6946
7020
  var script$4 = /* @__PURE__ */ defineComponent({
6947
7021
  __name: "UserHeadCrop",
6948
7022
  setup(__props) {
@@ -6967,7 +7041,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
6967
7041
  }
6968
7042
  }
6969
7043
  return (_ctx, _cache) => {
6970
- return openBlock(), createElementBlock("div", _hoisted_1$3, [
7044
+ return openBlock(), createElementBlock("div", _hoisted_1$4, [
6971
7045
  createVNode(script$5, {
6972
7046
  ref_key: "cropperRef",
6973
7047
  ref: cropperRef,
@@ -6996,20 +7070,84 @@ var script$4 = /* @__PURE__ */ defineComponent({
6996
7070
 
6997
7071
  script$4.__file = "src/user/components/UserHeadCrop.vue";
6998
7072
 
6999
- const _hoisted_1$2 = {
7073
+ const _hoisted_1$3 = {
7000
7074
  key: 0,
7001
7075
  class: "user-feedback-wrap"
7002
7076
  };
7003
- const _hoisted_2 = { class: "user-feedback-body" };
7004
- const _hoisted_3 = { class: "user-feedback-handle" };
7005
- const _hoisted_4 = ["src"];
7006
- const _hoisted_5 = ["src"];
7007
- const _hoisted_6 = ["onClick"];
7008
- const _hoisted_7 = { class: "user-feedback-footer" };
7009
- const _hoisted_8 = {
7077
+ const _hoisted_2$3 = /* @__PURE__ */ createElementVNode(
7078
+ "img",
7079
+ {
7080
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7081
+ style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7082
+ },
7083
+ null,
7084
+ -1
7085
+ /* HOISTED */
7086
+ );
7087
+ const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
7088
+ "div",
7089
+ { class: "user-feedback-tit" },
7090
+ "\u8865\u5145\u63CF\u8FF0",
7091
+ -1
7092
+ /* HOISTED */
7093
+ );
7094
+ const _hoisted_4$1 = { class: "user-feedback-body" };
7095
+ const _hoisted_5$1 = { class: "user-feedback-handle" };
7096
+ const _hoisted_6 = ["src"];
7097
+ const _hoisted_7 = ["src"];
7098
+ const _hoisted_8 = ["onClick"];
7099
+ const _hoisted_9 = /* @__PURE__ */ createElementVNode(
7100
+ "img",
7101
+ {
7102
+ class: "user-feedback-handle-item-close-img",
7103
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7104
+ },
7105
+ null,
7106
+ -1
7107
+ /* HOISTED */
7108
+ );
7109
+ const _hoisted_10 = [
7110
+ _hoisted_9
7111
+ ];
7112
+ const _hoisted_11 = /* @__PURE__ */ createElementVNode(
7113
+ "img",
7114
+ {
7115
+ class: "user-feedback-handle-item-loading",
7116
+ mode: "aspectFit",
7117
+ src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7118
+ alt: ""
7119
+ },
7120
+ null,
7121
+ -1
7122
+ /* HOISTED */
7123
+ );
7124
+ const _hoisted_12 = { class: "user-feedback-footer" };
7125
+ const _hoisted_13 = {
7010
7126
  key: 1,
7011
7127
  class: "user-feedback-wrap"
7012
7128
  };
7129
+ const _hoisted_14 = /* @__PURE__ */ createElementVNode(
7130
+ "img",
7131
+ {
7132
+ class: "user-feedback-success-img",
7133
+ mode: "aspectFit",
7134
+ src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7135
+ },
7136
+ null,
7137
+ -1
7138
+ /* HOISTED */
7139
+ );
7140
+ const _hoisted_15 = /* @__PURE__ */ createElementVNode(
7141
+ "div",
7142
+ { class: "user-feedback-success-info" },
7143
+ "\u63D0\u4EA4\u6210\u529F",
7144
+ -1
7145
+ /* HOISTED */
7146
+ );
7147
+ const _hoisted_16 = [
7148
+ _hoisted_14,
7149
+ _hoisted_15
7150
+ ];
7013
7151
  var script$3 = /* @__PURE__ */ defineComponent({
7014
7152
  __name: "UserFeedback",
7015
7153
  props: {
@@ -7182,32 +7320,17 @@ var script$3 = /* @__PURE__ */ defineComponent({
7182
7320
  class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
7183
7321
  },
7184
7322
  [
7185
- !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
7186
- _cache[4] || (_cache[4] = createElementVNode(
7187
- "img",
7188
- {
7189
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7190
- style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7191
- },
7192
- null,
7193
- -1
7194
- /* HOISTED */
7195
- )),
7196
- _cache[5] || (_cache[5] = createElementVNode(
7197
- "div",
7198
- { class: "user-feedback-tit" },
7199
- "\u8865\u5145\u63CF\u8FF0",
7200
- -1
7201
- /* HOISTED */
7202
- )),
7203
- createElementVNode("div", _hoisted_2, [
7323
+ !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
7324
+ _hoisted_2$3,
7325
+ _hoisted_3$1,
7326
+ createElementVNode("div", _hoisted_4$1, [
7204
7327
  createVNode(_component_editor, {
7205
7328
  id: "myEditor",
7206
7329
  "show-img-resize": true,
7207
7330
  class: "user-feedback-editor",
7208
7331
  placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
7209
7332
  }),
7210
- createElementVNode("div", _hoisted_3, [
7333
+ createElementVNode("div", _hoisted_5$1, [
7211
7334
  (openBlock(true), createElementBlock(
7212
7335
  Fragment,
7213
7336
  null,
@@ -7225,42 +7348,20 @@ var script$3 = /* @__PURE__ */ defineComponent({
7225
7348
  class: "user-feedback-handle-item-img",
7226
7349
  mode: "aspectFit",
7227
7350
  src: item.url
7228
- }, null, 8, _hoisted_4)) : (openBlock(), createElementBlock("video", {
7351
+ }, null, 8, _hoisted_6)) : (openBlock(), createElementBlock("video", {
7229
7352
  key: 1,
7230
7353
  class: "user-feedback-handle-item-img",
7231
7354
  src: item.url
7232
- }, null, 8, _hoisted_5)),
7355
+ }, null, 8, _hoisted_7)),
7233
7356
  createElementVNode("div", {
7234
7357
  class: "user-feedback-handle-item-close",
7235
7358
  onClick: ($event) => onDelete(key)
7236
- }, [..._cache[0] || (_cache[0] = [
7237
- createElementVNode(
7238
- "img",
7239
- {
7240
- class: "user-feedback-handle-item-close-img",
7241
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7242
- },
7243
- null,
7244
- -1
7245
- /* HOISTED */
7246
- )
7247
- ])], 8, _hoisted_6)
7359
+ }, [..._hoisted_10], 8, _hoisted_8)
7248
7360
  ],
7249
7361
  64
7250
7362
  /* STABLE_FRAGMENT */
7251
7363
  )) : createCommentVNode("v-if", true),
7252
- _cache[1] || (_cache[1] = createElementVNode(
7253
- "img",
7254
- {
7255
- class: "user-feedback-handle-item-loading",
7256
- mode: "aspectFit",
7257
- src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7258
- alt: ""
7259
- },
7260
- null,
7261
- -1
7262
- /* HOISTED */
7263
- ))
7364
+ _hoisted_11
7264
7365
  ]);
7265
7366
  }),
7266
7367
  128
@@ -7272,16 +7373,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
7272
7373
  }, "+")
7273
7374
  ])
7274
7375
  ]),
7275
- createElementVNode("div", _hoisted_7, [
7376
+ createElementVNode("div", _hoisted_12, [
7276
7377
  createVNode(_component_nut_button, {
7277
7378
  class: "user-feedback-footer-btn",
7278
7379
  plain: "",
7279
7380
  type: "primary",
7280
7381
  onClick: onCancel
7281
7382
  }, {
7282
- default: withCtx(() => _cache[2] || (_cache[2] = [
7383
+ default: withCtx(() => [
7283
7384
  createTextVNode("\u6700\u5C0F\u5316")
7284
- ])),
7385
+ ]),
7285
7386
  _: 1
7286
7387
  /* STABLE */
7287
7388
  }),
@@ -7290,33 +7391,14 @@ var script$3 = /* @__PURE__ */ defineComponent({
7290
7391
  type: "primary",
7291
7392
  onClick: onOk
7292
7393
  }, {
7293
- default: withCtx(() => _cache[3] || (_cache[3] = [
7394
+ default: withCtx(() => [
7294
7395
  createTextVNode("\u53CD\u9988")
7295
- ])),
7396
+ ]),
7296
7397
  _: 1
7297
7398
  /* STABLE */
7298
7399
  })
7299
7400
  ])
7300
- ])) : (openBlock(), createElementBlock("div", _hoisted_8, _cache[6] || (_cache[6] = [
7301
- createElementVNode(
7302
- "img",
7303
- {
7304
- class: "user-feedback-success-img",
7305
- mode: "aspectFit",
7306
- src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7307
- },
7308
- null,
7309
- -1
7310
- /* HOISTED */
7311
- ),
7312
- createElementVNode(
7313
- "div",
7314
- { class: "user-feedback-success-info" },
7315
- "\u63D0\u4EA4\u6210\u529F",
7316
- -1
7317
- /* HOISTED */
7318
- )
7319
- ])))
7401
+ ])) : (openBlock(), createElementBlock("div", _hoisted_13, [..._hoisted_16]))
7320
7402
  ],
7321
7403
  2
7322
7404
  /* CLASS */
@@ -7410,6 +7492,41 @@ function useDragBox() {
7410
7492
  };
7411
7493
  }
7412
7494
 
7495
+ const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
7496
+ "img",
7497
+ {
7498
+ class: "user-feedback-entry-icon",
7499
+ mode: "aspectFit",
7500
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7501
+ },
7502
+ null,
7503
+ -1
7504
+ /* HOISTED */
7505
+ );
7506
+ const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
7507
+ "div",
7508
+ null,
7509
+ "\u53CD\u9988",
7510
+ -1
7511
+ /* HOISTED */
7512
+ );
7513
+ const _hoisted_3 = [
7514
+ _hoisted_1$2,
7515
+ _hoisted_2$2
7516
+ ];
7517
+ const _hoisted_4 = /* @__PURE__ */ createElementVNode(
7518
+ "img",
7519
+ {
7520
+ class: "user-feedback-entry-close-img",
7521
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7522
+ },
7523
+ null,
7524
+ -1
7525
+ /* HOISTED */
7526
+ );
7527
+ const _hoisted_5 = [
7528
+ _hoisted_4
7529
+ ];
7413
7530
  var script$2 = /* @__PURE__ */ defineComponent({
7414
7531
  __name: "UserFeedbackEntry",
7415
7532
  props: {
@@ -7497,26 +7614,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
7497
7614
  class: "user-feedback-entry",
7498
7615
  onClick: onJump
7499
7616
  },
7500
- _cache[2] || (_cache[2] = [
7501
- createElementVNode(
7502
- "img",
7503
- {
7504
- class: "user-feedback-entry-icon",
7505
- mode: "aspectFit",
7506
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7507
- },
7508
- null,
7509
- -1
7510
- /* HOISTED */
7511
- ),
7512
- createElementVNode(
7513
- "div",
7514
- null,
7515
- "\u53CD\u9988",
7516
- -1
7517
- /* HOISTED */
7518
- )
7519
- ]),
7617
+ [..._hoisted_3],
7520
7618
  36
7521
7619
  /* STYLE, NEED_HYDRATION */
7522
7620
  )) : (openBlock(), createElementBlock(
@@ -7540,18 +7638,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
7540
7638
  createElementVNode("div", {
7541
7639
  class: "user-feedback-entry-close",
7542
7640
  onClick: onClose
7543
- }, _cache[3] || (_cache[3] = [
7544
- createElementVNode(
7545
- "img",
7546
- {
7547
- class: "user-feedback-entry-close-img",
7548
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7549
- },
7550
- null,
7551
- -1
7552
- /* HOISTED */
7553
- )
7554
- ]))
7641
+ }, [..._hoisted_5])
7555
7642
  ],
7556
7643
  36
7557
7644
  /* STYLE, NEED_HYDRATION */
@@ -7562,7 +7649,17 @@ var script$2 = /* @__PURE__ */ defineComponent({
7562
7649
 
7563
7650
  script$2.__file = "src/user/components/UserFeedbackEntry.vue";
7564
7651
 
7565
- const _hoisted_1$1 = { class: "login-setting-text" };
7652
+ const _hoisted_1$1 = /* @__PURE__ */ createElementVNode(
7653
+ "img",
7654
+ {
7655
+ class: "login-setting-img",
7656
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7657
+ },
7658
+ null,
7659
+ -1
7660
+ /* HOISTED */
7661
+ );
7662
+ const _hoisted_2$1 = { class: "login-setting-text" };
7566
7663
  var script$1 = /* @__PURE__ */ defineComponent({
7567
7664
  __name: "LoginSetting",
7568
7665
  props: {
@@ -7623,19 +7720,10 @@ var script$1 = /* @__PURE__ */ defineComponent({
7623
7720
  style: normalizeStyle(style.value)
7624
7721
  },
7625
7722
  [
7626
- _cache[0] || (_cache[0] = createElementVNode(
7627
- "img",
7628
- {
7629
- class: "login-setting-img",
7630
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7631
- },
7632
- null,
7633
- -1
7634
- /* HOISTED */
7635
- )),
7723
+ _hoisted_1$1,
7636
7724
  createElementVNode(
7637
7725
  "div",
7638
- _hoisted_1$1,
7726
+ _hoisted_2$1,
7639
7727
  toDisplayString(loginRuleTip.value),
7640
7728
  1
7641
7729
  /* TEXT */
@@ -7650,7 +7738,17 @@ var script$1 = /* @__PURE__ */ defineComponent({
7650
7738
 
7651
7739
  script$1.__file = "src/user/components/LoginSetting.vue";
7652
7740
 
7653
- const _hoisted_1 = { class: "user-resource-empty-text" };
7741
+ const _hoisted_1 = /* @__PURE__ */ createElementVNode(
7742
+ "img",
7743
+ {
7744
+ class: "user-resource-empty-img",
7745
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7746
+ },
7747
+ null,
7748
+ -1
7749
+ /* HOISTED */
7750
+ );
7751
+ const _hoisted_2 = { class: "user-resource-empty-text" };
7654
7752
  var script = /* @__PURE__ */ defineComponent({
7655
7753
  __name: "UserResourceEmpty",
7656
7754
  props: {
@@ -7681,19 +7779,10 @@ var script = /* @__PURE__ */ defineComponent({
7681
7779
  style: normalizeStyle(style.value)
7682
7780
  },
7683
7781
  [
7684
- _cache[0] || (_cache[0] = createElementVNode(
7685
- "img",
7686
- {
7687
- class: "user-resource-empty-img",
7688
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7689
- },
7690
- null,
7691
- -1
7692
- /* HOISTED */
7693
- )),
7782
+ _hoisted_1,
7694
7783
  createElementVNode(
7695
7784
  "div",
7696
- _hoisted_1,
7785
+ _hoisted_2,
7697
7786
  " \u5E94\u7528\u5DF2\u4E8E" + toDisplayString(unref(dayjs)(_ctx.appInfo.endTime).format("YYYY\u5E74MM\u6708DD\u65E5")) + "\u5230\u671F\uFF0C\u5982\u9700\u7EE7\u7EED\u4F7F\u7528\uFF0C \u8BF7\u8054\u7CFB\u5927\u9053\u5BA2\u6237\u603B\u76D1\u8FDB\u884C\u7EED\u8D39 ",
7698
7787
  1
7699
7788
  /* TEXT */
@@ -7735,6 +7824,10 @@ const $app = {
7735
7824
  const appKitOptions = useAppKitOptions();
7736
7825
  appKitOptions.tempToken = token;
7737
7826
  },
7827
+ setTempAppcode: (appcode) => {
7828
+ const appKitOptions = useAppKitOptions();
7829
+ appKitOptions.tempAppcode = appcode;
7830
+ },
7738
7831
  requestPayment: (options) => {
7739
7832
  },
7740
7833
  invokeRecharge: (options) => {