@uxda/appkit 4.1.28 → 4.1.29

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 +4 -7
  5. package/dist/index.js +1110 -1025
  6. package/package.json +77 -77
  7. package/project.config.json +15 -15
  8. package/project.tt.json +13 -13
  9. package/rollup.config.mjs +56 -56
  10. package/src/Appkit.ts +66 -66
  11. package/src/balance/api/endpoints.ts +126 -126
  12. package/src/balance/api/index.ts +106 -106
  13. package/src/balance/components/AccountView.vue +748 -748
  14. package/src/balance/components/BalanceCard.vue +205 -205
  15. package/src/balance/components/BalanceReminder.vue +85 -85
  16. package/src/balance/components/ConsumptionFilter.vue +218 -218
  17. package/src/balance/components/ConsumptionRules.vue +68 -68
  18. package/src/balance/components/DateFilter.vue +251 -251
  19. package/src/balance/components/DateRange.vue +80 -80
  20. package/src/balance/components/ListFilter.vue +63 -63
  21. package/src/balance/components/ListFilterPicker.vue +186 -186
  22. package/src/balance/components/SecondBalance.vue +71 -71
  23. package/src/balance/components/Tip.vue +45 -45
  24. package/src/balance/components/index.ts +13 -13
  25. package/src/balance/types.ts +91 -91
  26. package/src/components/bt-cropper/index.vue +774 -774
  27. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  28. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  29. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  30. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  31. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  32. package/src/components/bt-cropper/utils/ratio.js +3 -3
  33. package/src/components/bt-cropper/utils/tools.js +25 -25
  34. package/src/components/dd-area/index.vue +225 -225
  35. package/src/components/dd-icon/doc.md +21 -21
  36. package/src/components/dd-icon/index.vue +23 -23
  37. package/src/components/dd-notice-bar/index.vue +78 -78
  38. package/src/components/dd-search/doc.md +34 -34
  39. package/src/components/dd-search/index.vue +168 -168
  40. package/src/components/dd-selector/index.vue +124 -124
  41. package/src/components/dd-skeleton/doc.md +19 -19
  42. package/src/components/dd-skeleton/index.vue +36 -36
  43. package/src/components/ocr-id/index.vue +114 -114
  44. package/src/components/ocr-id/types.d.ts +12 -12
  45. package/src/global.ts +6 -6
  46. package/src/index.ts +90 -89
  47. package/src/main.scss +1 -1
  48. package/src/notice/api/endpoints.ts +17 -17
  49. package/src/notice/api/index.ts +106 -106
  50. package/src/notice/components/NoticeBanner.vue +243 -243
  51. package/src/notice/components/NoticeEntry.vue +99 -99
  52. package/src/notice/components/NoticeList.vue +315 -315
  53. package/src/notice/components/NoticePopup.vue +162 -162
  54. package/src/notice/components/index.ts +5 -5
  55. package/src/notice/components/useCommonList.ts +86 -86
  56. package/src/notice/components/useNotice.ts +35 -35
  57. package/src/notice/index.ts +1 -1
  58. package/src/notice/types.ts +25 -25
  59. package/src/payment/api/config.ts +7 -7
  60. package/src/payment/api/endpoints.ts +103 -103
  61. package/src/payment/api/index.ts +101 -100
  62. package/src/payment/components/AmountPicker.vue +93 -93
  63. package/src/payment/components/RechargeResult.vue +69 -69
  64. package/src/payment/components/RechargeView.vue +154 -154
  65. package/src/payment/components/RightsPicker.vue +105 -105
  66. package/src/payment/components/TradeView.vue +294 -294
  67. package/src/payment/components/UserAgreement.vue +234 -234
  68. package/src/payment/components/index.ts +22 -22
  69. package/src/payment/index.ts +5 -5
  70. package/src/payment/services/index.ts +16 -16
  71. package/src/payment/services/invoke-recharge.ts +25 -25
  72. package/src/payment/services/request-payment.ts +58 -58
  73. package/src/payment/types.ts +28 -28
  74. package/src/register/components/SelfRegistration.vue +254 -254
  75. package/src/register/components/index.ts +2 -2
  76. package/src/shared/components/AppDrawer.vue +58 -58
  77. package/src/shared/components/AppVerify.vue +126 -129
  78. package/src/shared/components/DeviceVersion.vue +68 -68
  79. package/src/shared/components/EmptyView.vue +33 -33
  80. package/src/shared/components/OcrBusinessLicense.vue +133 -133
  81. package/src/shared/components/OcrIcon.vue +133 -133
  82. package/src/shared/components/PageHeader.vue +79 -79
  83. package/src/shared/components/index.ts +8 -8
  84. package/src/shared/composables/index.ts +8 -8
  85. package/src/shared/composables/useCountdown.ts +46 -46
  86. package/src/shared/composables/useCrypto.ts +76 -76
  87. package/src/shared/composables/useDragBox.ts +97 -97
  88. package/src/shared/composables/useEncode.ts +43 -43
  89. package/src/shared/composables/useLogger.ts +123 -123
  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 +0 -3
  100. package/src/styles/vars.scss +3 -3
  101. package/src/user/api/endpoints.ts +17 -17
  102. package/src/user/api/index.ts +111 -111
  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
@@ -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 */
@@ -423,7 +423,7 @@ function useLogger(options) {
423
423
  };
424
424
  }
425
425
 
426
- const _hoisted_1$A = {
426
+ const _hoisted_1$D = {
427
427
  key: 0,
428
428
  class: "page-title"
429
429
  };
@@ -457,7 +457,7 @@ var script$H = /* @__PURE__ */ defineComponent({
457
457
  [
458
458
  _ctx.title ? (openBlock(), createElementBlock(
459
459
  "h1",
460
- _hoisted_1$A,
460
+ _hoisted_1$D,
461
461
  toDisplayString(_ctx.title),
462
462
  1
463
463
  /* TEXT */
@@ -477,7 +477,7 @@ var script$H = /* @__PURE__ */ defineComponent({
477
477
 
478
478
  script$H.__file = "src/shared/components/PageHeader.vue";
479
479
 
480
- const _hoisted_1$z = { class: "drawer-body" };
480
+ const _hoisted_1$C = { class: "drawer-body" };
481
481
  var script$G = /* @__PURE__ */ defineComponent({
482
482
  __name: "AppDrawer",
483
483
  props: {
@@ -506,7 +506,7 @@ var script$G = /* @__PURE__ */ defineComponent({
506
506
  title: _ctx.title,
507
507
  onClose: onPageHeaderClose
508
508
  }, null, 8, ["title"]),
509
- createElementVNode("div", _hoisted_1$z, [
509
+ createElementVNode("div", _hoisted_1$C, [
510
510
  renderSlot(_ctx.$slots, "default")
511
511
  ])
512
512
  ]),
@@ -519,15 +519,15 @@ var script$G = /* @__PURE__ */ defineComponent({
519
519
 
520
520
  script$G.__file = "src/shared/components/AppDrawer.vue";
521
521
 
522
- const _hoisted_1$y = { class: "app-verify column" };
523
- const _hoisted_2$n = { class: "caption" };
524
- const _hoisted_3$i = { class: "number" };
525
- const _hoisted_4$e = { class: "form-btn" };
526
- const _hoisted_5$a = {
522
+ const _hoisted_1$B = { class: "app-verify column" };
523
+ const _hoisted_2$x = { class: "caption" };
524
+ const _hoisted_3$s = { class: "number" };
525
+ const _hoisted_4$l = { class: "form-btn" };
526
+ const _hoisted_5$h = {
527
527
  key: 1,
528
528
  class: "caption"
529
529
  };
530
- const _hoisted_6$5 = { class: "row buttons" };
530
+ const _hoisted_6$c = { class: "row buttons" };
531
531
  var script$F = /* @__PURE__ */ defineComponent({
532
532
  __name: "AppVerify",
533
533
  props: {
@@ -560,7 +560,7 @@ var script$F = /* @__PURE__ */ defineComponent({
560
560
  };
561
561
  const props = __props;
562
562
  return (_ctx, _cache) => {
563
- return openBlock(), createElementBlock("div", _hoisted_1$y, [
563
+ return openBlock(), createElementBlock("div", _hoisted_1$B, [
564
564
  createElementVNode(
565
565
  "h2",
566
566
  null,
@@ -570,14 +570,14 @@ var script$F = /* @__PURE__ */ defineComponent({
570
570
  ),
571
571
  createElementVNode(
572
572
  "p",
573
- _hoisted_2$n,
573
+ _hoisted_2$x,
574
574
  toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
575
575
  1
576
576
  /* TEXT */
577
577
  ),
578
578
  createElementVNode(
579
579
  "p",
580
- _hoisted_3$i,
580
+ _hoisted_3$s,
581
581
  toDisplayString(_ctx.phone),
582
582
  1
583
583
  /* TEXT */
@@ -602,7 +602,7 @@ var script$F = /* @__PURE__ */ defineComponent({
602
602
  method: (value) => value.length === 6
603
603
  }]
604
604
  }, null, 8, ["modelValue", "rules"]),
605
- createElementVNode("div", _hoisted_4$e, [
605
+ createElementVNode("div", _hoisted_4$l, [
606
606
  !sent.value ? (openBlock(), createBlock(unref(NsButton), {
607
607
  key: 0,
608
608
  size: "xs",
@@ -613,7 +613,7 @@ var script$F = /* @__PURE__ */ defineComponent({
613
613
  })) : createCommentVNode("v-if", true),
614
614
  sent.value ? (openBlock(), createElementBlock(
615
615
  "div",
616
- _hoisted_5$a,
616
+ _hoisted_5$h,
617
617
  toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
618
618
  1
619
619
  /* TEXT */
@@ -623,26 +623,24 @@ var script$F = /* @__PURE__ */ defineComponent({
623
623
  _: 1
624
624
  /* STABLE */
625
625
  }, 8, ["modelValue"]),
626
- createElementVNode("div", _hoisted_6$5, [
626
+ createElementVNode("div", _hoisted_6$c, [
627
627
  createVNode(unref(NsButton), {
628
628
  class: "cancel-btn",
629
- round: "",
630
629
  onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
631
630
  }, {
632
- default: withCtx(() => _cache[3] || (_cache[3] = [
631
+ default: withCtx(() => [
633
632
  createTextVNode("\u53D6\u6D88")
634
- ])),
633
+ ]),
635
634
  _: 1
636
635
  /* STABLE */
637
636
  }),
638
637
  createVNode(unref(NsButton), {
639
- round: "",
640
638
  gradient: "#FFEBC1,#FFD7A7,#FFB875/90",
641
639
  onClick: onOk
642
640
  }, {
643
- default: withCtx(() => _cache[4] || (_cache[4] = [
641
+ default: withCtx(() => [
644
642
  createTextVNode("\u786E\u8BA4")
645
- ])),
643
+ ]),
646
644
  _: 1
647
645
  /* STABLE */
648
646
  })
@@ -654,7 +652,20 @@ var script$F = /* @__PURE__ */ defineComponent({
654
652
 
655
653
  script$F.__file = "src/shared/components/AppVerify.vue";
656
654
 
657
- const _hoisted_1$x = { key: 0 };
655
+ const _hoisted_1$A = { key: 0 };
656
+ const _hoisted_2$w = /* @__PURE__ */ createElementVNode(
657
+ "img",
658
+ {
659
+ src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
660
+ class: "dd-notice-bar__close-img"
661
+ },
662
+ null,
663
+ -1
664
+ /* HOISTED */
665
+ );
666
+ const _hoisted_3$r = [
667
+ _hoisted_2$w
668
+ ];
658
669
  var script$E = /* @__PURE__ */ defineComponent({
659
670
  __name: "index",
660
671
  props: {
@@ -686,7 +697,7 @@ var script$E = /* @__PURE__ */ defineComponent({
686
697
  }, [
687
698
  _ctx.text ? (openBlock(), createElementBlock(
688
699
  "span",
689
- _hoisted_1$x,
700
+ _hoisted_1$A,
690
701
  toDisplayString(_ctx.text),
691
702
  1
692
703
  /* TEXT */
@@ -697,18 +708,7 @@ var script$E = /* @__PURE__ */ defineComponent({
697
708
  key: 0,
698
709
  class: "dd-notice-bar__close",
699
710
  onClick: close
700
- }, _cache[0] || (_cache[0] = [
701
- createElementVNode(
702
- "img",
703
- {
704
- src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
705
- class: "dd-notice-bar__close-img"
706
- },
707
- null,
708
- -1
709
- /* HOISTED */
710
- )
711
- ]))) : createCommentVNode("v-if", true)
711
+ }, [..._hoisted_3$r])) : createCommentVNode("v-if", true)
712
712
  ],
713
713
  6
714
714
  /* CLASS, STYLE */
@@ -1394,6 +1394,7 @@ const vendor$2 = {
1394
1394
  };
1395
1395
  function useHttp$2(defaultHeader) {
1396
1396
  const appkitOptions = useAppKitOptions();
1397
+ console.log(appkitOptions.tempToken(), ":----- appkitOptions.tempToken()");
1397
1398
  const headers = {
1398
1399
  Token: appkitOptions.tempToken() || appkitOptions.token(),
1399
1400
  Appcode: defaultHeader?.Appcode || appkitOptions.app(),
@@ -1498,10 +1499,10 @@ const services$1 = [
1498
1499
  invokeRecharge$1
1499
1500
  ];
1500
1501
 
1501
- const _hoisted_1$w = { class: "view recharge-view" };
1502
- const _hoisted_2$m = { class: "flex-grow" };
1503
- const _hoisted_3$h = { class: "amount-footer" };
1504
- const _hoisted_4$d = { class: "agreement" };
1502
+ const _hoisted_1$z = { class: "view recharge-view" };
1503
+ const _hoisted_2$v = { class: "flex-grow" };
1504
+ const _hoisted_3$q = { class: "amount-footer" };
1505
+ const _hoisted_4$k = { class: "agreement" };
1505
1506
  var script$A = /* @__PURE__ */ defineComponent({
1506
1507
  __name: "RechargeView",
1507
1508
  props: {
@@ -1566,22 +1567,22 @@ var script$A = /* @__PURE__ */ defineComponent({
1566
1567
  return (_ctx, _cache) => {
1567
1568
  const _component_nut_checkbox = Checkbox;
1568
1569
  const _component_nut_button = Button;
1569
- return openBlock(), createElementBlock("view", _hoisted_1$w, [
1570
- createElementVNode("view", _hoisted_2$m, [
1570
+ return openBlock(), createElementBlock("view", _hoisted_1$z, [
1571
+ createElementVNode("view", _hoisted_2$v, [
1571
1572
  createVNode(script$I, {
1572
1573
  items: amounts.value,
1573
1574
  selected: state.selected,
1574
1575
  onChange: onAmountSelect
1575
1576
  }, null, 8, ["items", "selected"])
1576
1577
  ]),
1577
- createElementVNode("view", _hoisted_3$h, [
1578
- createElementVNode("view", _hoisted_4$d, [
1578
+ createElementVNode("view", _hoisted_3$q, [
1579
+ createElementVNode("view", _hoisted_4$k, [
1579
1580
  createVNode(_component_nut_checkbox, {
1580
1581
  modelValue: state.agreed,
1581
1582
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
1582
1583
  }, {
1583
1584
  default: withCtx(() => [
1584
- _cache[1] || (_cache[1] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1585
+ createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1585
1586
  createElementVNode("a", {
1586
1587
  class: "link inline",
1587
1588
  onClick: onAgreementLinkClick
@@ -1598,9 +1599,9 @@ var script$A = /* @__PURE__ */ defineComponent({
1598
1599
  onClick: onPayClick,
1599
1600
  class: "recharge-button"
1600
1601
  }, {
1601
- default: withCtx(() => _cache[2] || (_cache[2] = [
1602
+ default: withCtx(() => [
1602
1603
  createTextVNode("\u7ACB\u5373\u5145\u503C")
1603
- ])),
1604
+ ]),
1604
1605
  _: 1
1605
1606
  /* STABLE */
1606
1607
  }, 8, ["loading"])
@@ -1612,11 +1613,13 @@ var script$A = /* @__PURE__ */ defineComponent({
1612
1613
 
1613
1614
  script$A.__file = "src/payment/components/RechargeView.vue";
1614
1615
 
1615
- const _hoisted_1$v = { class: "agreement-doc" };
1616
+ const _hoisted_1$y = { class: "agreement-doc" };
1617
+ 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);
1618
+ const _hoisted_98 = [
1619
+ _hoisted_2$u
1620
+ ];
1616
1621
  function render$2(_ctx, _cache) {
1617
- return openBlock(), createElementBlock("view", _hoisted_1$v, _cache[0] || (_cache[0] = [
1618
- createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96)
1619
- ]));
1622
+ return openBlock(), createElementBlock("view", _hoisted_1$y, [..._hoisted_98]);
1620
1623
  }
1621
1624
 
1622
1625
  /* unplugin-vue-components disabled */const script$z = {};
@@ -1624,13 +1627,20 @@ function render$2(_ctx, _cache) {
1624
1627
  script$z.render = render$2;
1625
1628
  script$z.__file = "src/payment/components/UserAgreement.vue";
1626
1629
 
1627
- const _hoisted_1$u = { class: "recharge-result" };
1628
- const _hoisted_2$l = { class: "content" };
1629
- const _hoisted_3$g = {
1630
+ const _hoisted_1$x = { class: "recharge-result" };
1631
+ const _hoisted_2$t = { class: "content" };
1632
+ const _hoisted_3$p = /* @__PURE__ */ createElementVNode(
1633
+ "div",
1634
+ { class: "figure" },
1635
+ null,
1636
+ -1
1637
+ /* HOISTED */
1638
+ );
1639
+ const _hoisted_4$j = {
1630
1640
  key: 0,
1631
1641
  class: "caption"
1632
1642
  };
1633
- const _hoisted_4$c = {
1643
+ const _hoisted_5$g = {
1634
1644
  key: 1,
1635
1645
  class: "caption"
1636
1646
  };
@@ -1652,15 +1662,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1652
1662
  }
1653
1663
  return (_ctx, _cache) => {
1654
1664
  const _component_nut_button = Button;
1655
- return openBlock(), createElementBlock("div", _hoisted_1$u, [
1656
- createElementVNode("div", _hoisted_2$l, [
1657
- _cache[1] || (_cache[1] = createElementVNode(
1658
- "div",
1659
- { class: "figure" },
1660
- null,
1661
- -1
1662
- /* HOISTED */
1663
- )),
1665
+ return openBlock(), createElementBlock("div", _hoisted_1$x, [
1666
+ createElementVNode("div", _hoisted_2$t, [
1667
+ _hoisted_3$p,
1664
1668
  createElementVNode(
1665
1669
  "h2",
1666
1670
  null,
@@ -1668,9 +1672,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1668
1672
  1
1669
1673
  /* TEXT */
1670
1674
  ),
1671
- _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$g, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1675
+ _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_4$j, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1672
1676
  "div",
1673
- _hoisted_4$c,
1677
+ _hoisted_5$g,
1674
1678
  toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
1675
1679
  1
1676
1680
  /* TEXT */
@@ -1680,9 +1684,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1680
1684
  type: "default",
1681
1685
  onClick: onBackClick
1682
1686
  }, {
1683
- default: withCtx(() => _cache[0] || (_cache[0] = [
1687
+ default: withCtx(() => [
1684
1688
  createTextVNode("\u8FD4\u56DE")
1685
- ])),
1689
+ ]),
1686
1690
  _: 1
1687
1691
  /* STABLE */
1688
1692
  })
@@ -1694,9 +1698,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1694
1698
 
1695
1699
  script$y.__file = "src/payment/components/RechargeResult.vue";
1696
1700
 
1697
- const _hoisted_1$t = { class: "tag" };
1698
- const _hoisted_2$k = { class: "token-line number" };
1699
- const _hoisted_3$f = { class: "number" };
1701
+ const _hoisted_1$w = { class: "tag" };
1702
+ const _hoisted_2$s = { class: "token-line number" };
1703
+ const _hoisted_3$o = { class: "number" };
1700
1704
  var script$x = /* @__PURE__ */ defineComponent({
1701
1705
  __name: "RightsPicker",
1702
1706
  props: {
@@ -1735,23 +1739,23 @@ var script$x = /* @__PURE__ */ defineComponent({
1735
1739
  default: withCtx(() => [
1736
1740
  createElementVNode(
1737
1741
  "div",
1738
- _hoisted_1$t,
1742
+ _hoisted_1$w,
1739
1743
  toDisplayString(amount.paymentDesc),
1740
1744
  1
1741
1745
  /* TEXT */
1742
1746
  ),
1743
1747
  createElementVNode(
1744
1748
  "h4",
1745
- _hoisted_2$k,
1749
+ _hoisted_2$s,
1746
1750
  toDisplayString(amount.priceRightNum) + "\u7B14",
1747
1751
  1
1748
1752
  /* TEXT */
1749
1753
  ),
1750
1754
  createElementVNode("h5", null, [
1751
- _cache[0] || (_cache[0] = createTextVNode("\xA5")),
1755
+ createTextVNode("\xA5"),
1752
1756
  createElementVNode(
1753
1757
  "span",
1754
- _hoisted_3$f,
1758
+ _hoisted_3$o,
1755
1759
  toDisplayString(amount.paymentAmount),
1756
1760
  1
1757
1761
  /* TEXT */
@@ -1775,34 +1779,48 @@ var script$x = /* @__PURE__ */ defineComponent({
1775
1779
 
1776
1780
  script$x.__file = "src/payment/components/RightsPicker.vue";
1777
1781
 
1778
- const _hoisted_1$s = { class: "view recharge-view2" };
1779
- const _hoisted_2$j = { class: "flex-grow" };
1780
- const _hoisted_3$e = {
1782
+ const _hoisted_1$v = { class: "view recharge-view2" };
1783
+ const _hoisted_2$r = { class: "flex-grow" };
1784
+ const _hoisted_3$n = {
1781
1785
  key: 0,
1782
1786
  class: "bean-buy"
1783
1787
  };
1784
- const _hoisted_4$b = { class: "left" };
1785
- const _hoisted_5$9 = {
1788
+ const _hoisted_4$i = { class: "left" };
1789
+ const _hoisted_5$f = /* @__PURE__ */ createElementVNode(
1790
+ "div",
1791
+ { class: "title" },
1792
+ "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1793
+ -1
1794
+ /* HOISTED */
1795
+ );
1796
+ const _hoisted_6$b = {
1786
1797
  key: 0,
1787
1798
  class: "amount"
1788
1799
  };
1789
- const _hoisted_6$4 = {
1800
+ const _hoisted_7$9 = {
1790
1801
  key: 1,
1791
1802
  class: "amount"
1792
1803
  };
1793
- const _hoisted_7$4 = { class: "amount" };
1794
- const _hoisted_8$4 = ["src"];
1795
- const _hoisted_9$3 = { class: "amount-footer" };
1796
- const _hoisted_10$2 = {
1804
+ const _hoisted_8$5 = { class: "amount" };
1805
+ const _hoisted_9$5 = ["src"];
1806
+ const _hoisted_10$5 = { class: "amount-footer" };
1807
+ const _hoisted_11$5 = {
1797
1808
  key: 0,
1798
1809
  class: "agreement"
1799
1810
  };
1800
- const _hoisted_11$2 = { class: "buy-amount" };
1801
- const _hoisted_12$2 = { class: "left" };
1802
- const _hoisted_13$2 = { class: "amount" };
1803
- const _hoisted_14$2 = { class: "item" };
1804
- const _hoisted_15$2 = { class: "item" };
1805
- const _hoisted_16$2 = { class: "item" };
1811
+ const _hoisted_12$5 = { class: "buy-amount" };
1812
+ const _hoisted_13$5 = { class: "left" };
1813
+ const _hoisted_14$4 = { class: "amount" };
1814
+ const _hoisted_15$3 = /* @__PURE__ */ createElementVNode(
1815
+ "i",
1816
+ null,
1817
+ "\uFFE5",
1818
+ -1
1819
+ /* HOISTED */
1820
+ );
1821
+ const _hoisted_16$3 = { class: "item" };
1822
+ const _hoisted_17$2 = { class: "item" };
1823
+ const _hoisted_18$2 = { class: "item" };
1806
1824
  var script$w = /* @__PURE__ */ defineComponent({
1807
1825
  __name: "TradeView",
1808
1826
  props: {
@@ -1892,31 +1910,25 @@ var script$w = /* @__PURE__ */ defineComponent({
1892
1910
  const _component_nut_checkbox = Checkbox;
1893
1911
  const _component_nut_button = Button;
1894
1912
  const _component_nut_dialog = Dialog;
1895
- return openBlock(), createElementBlock("view", _hoisted_1$s, [
1896
- createElementVNode("view", _hoisted_2$j, [
1913
+ return openBlock(), createElementBlock("view", _hoisted_1$v, [
1914
+ createElementVNode("view", _hoisted_2$r, [
1897
1915
  createVNode(script$x, {
1898
1916
  items: amounts.value,
1899
1917
  selected: state.selected,
1900
1918
  onChange: onAmountSelect
1901
1919
  }, null, 8, ["items", "selected"]),
1902
- amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$e, [
1903
- createElementVNode("div", _hoisted_4$b, [
1904
- _cache[4] || (_cache[4] = createElementVNode(
1905
- "div",
1906
- { class: "title" },
1907
- "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1908
- -1
1909
- /* HOISTED */
1910
- )),
1920
+ amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$n, [
1921
+ createElementVNode("div", _hoisted_4$i, [
1922
+ _hoisted_5$f,
1911
1923
  !selectBean.value ? (openBlock(), createElementBlock(
1912
1924
  "div",
1913
- _hoisted_5$9,
1925
+ _hoisted_6$b,
1914
1926
  "\u4F59\u989D " + toDisplayString(balance.value),
1915
1927
  1
1916
1928
  /* TEXT */
1917
1929
  )) : (openBlock(), createElementBlock(
1918
1930
  "div",
1919
- _hoisted_6$4,
1931
+ _hoisted_7$9,
1920
1932
  "\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1921
1933
  1
1922
1934
  /* TEXT */
@@ -1929,7 +1941,7 @@ var script$w = /* @__PURE__ */ defineComponent({
1929
1941
  }, [
1930
1942
  createElementVNode(
1931
1943
  "div",
1932
- _hoisted_7$4,
1944
+ _hoisted_8$5,
1933
1945
  "-" + toDisplayString(amounts.value[state.selected].paymentAmount),
1934
1946
  1
1935
1947
  /* TEXT */
@@ -1937,18 +1949,18 @@ var script$w = /* @__PURE__ */ defineComponent({
1937
1949
  createElementVNode("img", {
1938
1950
  class: "icon",
1939
1951
  src: selectBean.value ? "https://cdn.ddjf.com/static/images/appkit/select.svg" : "https://cdn.ddjf.com/static/images/appkit/not-select.svg"
1940
- }, null, 8, _hoisted_8$4)
1952
+ }, null, 8, _hoisted_9$5)
1941
1953
  ])) : createCommentVNode("v-if", true)
1942
1954
  ])) : createCommentVNode("v-if", true)
1943
1955
  ]),
1944
- createElementVNode("view", _hoisted_9$3, [
1945
- !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_10$2, [
1956
+ createElementVNode("view", _hoisted_10$5, [
1957
+ !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_11$5, [
1946
1958
  createVNode(_component_nut_checkbox, {
1947
1959
  modelValue: state.agreed,
1948
1960
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
1949
1961
  }, {
1950
1962
  default: withCtx(() => [
1951
- _cache[5] || (_cache[5] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1963
+ createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1952
1964
  createElementVNode("a", {
1953
1965
  class: "link inline",
1954
1966
  onClick: onAgreementLinkClick
@@ -1958,17 +1970,11 @@ var script$w = /* @__PURE__ */ defineComponent({
1958
1970
  /* STABLE */
1959
1971
  }, 8, ["modelValue"])
1960
1972
  ])) : createCommentVNode("v-if", true),
1961
- createElementVNode("div", _hoisted_11$2, [
1962
- createElementVNode("div", _hoisted_12$2, [
1963
- _cache[7] || (_cache[7] = createTextVNode(" \u5F85\u652F\u4ED8\uFF1A ")),
1964
- createElementVNode("span", _hoisted_13$2, [
1965
- _cache[6] || (_cache[6] = createElementVNode(
1966
- "i",
1967
- null,
1968
- "\uFFE5",
1969
- -1
1970
- /* HOISTED */
1971
- )),
1973
+ createElementVNode("div", _hoisted_12$5, [
1974
+ createElementVNode("div", _hoisted_13$5, [
1975
+ createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
1976
+ createElementVNode("span", _hoisted_14$4, [
1977
+ _hoisted_15$3,
1972
1978
  createTextVNode(
1973
1979
  toDisplayString(currentAmount.value),
1974
1980
  1
@@ -1983,9 +1989,9 @@ var script$w = /* @__PURE__ */ defineComponent({
1983
1989
  onClick: onPayClick,
1984
1990
  class: "recharge-button"
1985
1991
  }, {
1986
- default: withCtx(() => _cache[8] || (_cache[8] = [
1992
+ default: withCtx(() => [
1987
1993
  createTextVNode("\u8D2D\u4E70")
1988
- ])),
1994
+ ]),
1989
1995
  _: 1
1990
1996
  /* STABLE */
1991
1997
  }, 8, ["loading"])
@@ -2006,21 +2012,21 @@ var script$w = /* @__PURE__ */ defineComponent({
2006
2012
  [
2007
2013
  createElementVNode(
2008
2014
  "div",
2009
- _hoisted_14$2,
2015
+ _hoisted_16$3,
2010
2016
  "\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
2011
2017
  1
2012
2018
  /* TEXT */
2013
2019
  ),
2014
2020
  createElementVNode(
2015
2021
  "div",
2016
- _hoisted_15$2,
2022
+ _hoisted_17$2,
2017
2023
  "\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
2018
2024
  1
2019
2025
  /* TEXT */
2020
2026
  ),
2021
2027
  createElementVNode(
2022
2028
  "div",
2023
- _hoisted_16$2,
2029
+ _hoisted_18$2,
2024
2030
  "\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
2025
2031
  1
2026
2032
  /* TEXT */
@@ -2048,11 +2054,84 @@ const components = {
2048
2054
  TradeView: script$w
2049
2055
  };
2050
2056
 
2051
- const _hoisted_1$r = { class: "account-card" };
2052
- const _hoisted_2$i = { class: "card" };
2053
- const _hoisted_3$d = { class: "card-row" };
2054
- const _hoisted_4$a = { class: "card-row-left" };
2055
- const _hoisted_5$8 = { class: "bean-nums number" };
2057
+ const _hoisted_1$u = { class: "account-card" };
2058
+ const _hoisted_2$q = { class: "card" };
2059
+ const _hoisted_3$m = { class: "card-row" };
2060
+ const _hoisted_4$h = { class: "card-row-left" };
2061
+ const _hoisted_5$e = /* @__PURE__ */ createElementVNode(
2062
+ "div",
2063
+ { class: "bean-box" },
2064
+ [
2065
+ /* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
2066
+ /* @__PURE__ */ createElementVNode("img", {
2067
+ class: "bean-icon",
2068
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2069
+ })
2070
+ ]),
2071
+ /* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
2072
+ ],
2073
+ -1
2074
+ /* HOISTED */
2075
+ );
2076
+ const _hoisted_6$a = { class: "bean-nums number" };
2077
+ const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
2078
+ "div",
2079
+ { class: "account-info-name" },
2080
+ "\u8D26\u6237\u660E\u7EC6",
2081
+ -1
2082
+ /* HOISTED */
2083
+ );
2084
+ const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
2085
+ "div",
2086
+ { class: "account-info-icon" },
2087
+ [
2088
+ /* @__PURE__ */ createElementVNode("img", {
2089
+ class: "icon",
2090
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
2091
+ })
2092
+ ],
2093
+ -1
2094
+ /* HOISTED */
2095
+ );
2096
+ const _hoisted_9$4 = [
2097
+ _hoisted_7$8,
2098
+ _hoisted_8$4
2099
+ ];
2100
+ const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
2101
+ "div",
2102
+ { class: "line" },
2103
+ null,
2104
+ -1
2105
+ /* HOISTED */
2106
+ );
2107
+ const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
2108
+ "div",
2109
+ { class: "card-row-left desc" },
2110
+ "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
2111
+ -1
2112
+ /* HOISTED */
2113
+ );
2114
+ const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
2115
+ "div",
2116
+ null,
2117
+ "\u5145\u503C",
2118
+ -1
2119
+ /* HOISTED */
2120
+ );
2121
+ const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
2122
+ "img",
2123
+ {
2124
+ class: "pay-icon",
2125
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2126
+ },
2127
+ null,
2128
+ -1
2129
+ /* HOISTED */
2130
+ );
2131
+ const _hoisted_14$3 = [
2132
+ _hoisted_12$4,
2133
+ _hoisted_13$4
2134
+ ];
2056
2135
  var script$v = /* @__PURE__ */ defineComponent({
2057
2136
  __name: "BalanceCard",
2058
2137
  props: {
@@ -2096,28 +2175,14 @@ var script$v = /* @__PURE__ */ defineComponent({
2096
2175
  reload: loadBalance
2097
2176
  });
2098
2177
  return (_ctx, _cache) => {
2099
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
2100
- createElementVNode("div", _hoisted_2$i, [
2101
- createElementVNode("div", _hoisted_3$d, [
2102
- createElementVNode("div", _hoisted_4$a, [
2103
- _cache[0] || (_cache[0] = createElementVNode(
2104
- "div",
2105
- { class: "bean-box" },
2106
- [
2107
- createElementVNode("div", { class: "bean-icon-box" }, [
2108
- createElementVNode("img", {
2109
- class: "bean-icon",
2110
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2111
- })
2112
- ]),
2113
- createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
2114
- ],
2115
- -1
2116
- /* HOISTED */
2117
- )),
2178
+ return openBlock(), createElementBlock("div", _hoisted_1$u, [
2179
+ createElementVNode("div", _hoisted_2$q, [
2180
+ createElementVNode("div", _hoisted_3$m, [
2181
+ createElementVNode("div", _hoisted_4$h, [
2182
+ _hoisted_5$e,
2118
2183
  createElementVNode(
2119
2184
  "div",
2120
- _hoisted_5$8,
2185
+ _hoisted_6$a,
2121
2186
  toDisplayString(balance.value.total || 0),
2122
2187
  1
2123
2188
  /* TEXT */
@@ -2127,67 +2192,17 @@ var script$v = /* @__PURE__ */ defineComponent({
2127
2192
  createElementVNode("div", {
2128
2193
  class: "account-info-entry",
2129
2194
  onClick: gotoDetail
2130
- }, _cache[1] || (_cache[1] = [
2131
- createElementVNode(
2132
- "div",
2133
- { class: "account-info-name" },
2134
- "\u8D26\u6237\u660E\u7EC6",
2135
- -1
2136
- /* HOISTED */
2137
- ),
2138
- createElementVNode(
2139
- "div",
2140
- { class: "account-info-icon" },
2141
- [
2142
- createElementVNode("img", {
2143
- class: "icon",
2144
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
2145
- })
2146
- ],
2147
- -1
2148
- /* HOISTED */
2149
- )
2150
- ]))
2195
+ }, [..._hoisted_9$4])
2151
2196
  ])
2152
2197
  ]),
2153
- _cache[4] || (_cache[4] = createElementVNode(
2154
- "div",
2155
- { class: "line" },
2156
- null,
2157
- -1
2158
- /* HOISTED */
2159
- )),
2198
+ _hoisted_10$4,
2160
2199
  createElementVNode("div", { class: "card-row" }, [
2161
- _cache[3] || (_cache[3] = createElementVNode(
2162
- "div",
2163
- { class: "card-row-left desc" },
2164
- "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
2165
- -1
2166
- /* HOISTED */
2167
- )),
2200
+ _hoisted_11$4,
2168
2201
  createElementVNode("div", { class: "card-row-right" }, [
2169
2202
  createElementVNode("div", {
2170
2203
  class: "pay",
2171
2204
  onClick: gotoRecharge
2172
- }, _cache[2] || (_cache[2] = [
2173
- createElementVNode(
2174
- "div",
2175
- null,
2176
- "\u5145\u503C",
2177
- -1
2178
- /* HOISTED */
2179
- ),
2180
- createElementVNode(
2181
- "img",
2182
- {
2183
- class: "pay-icon",
2184
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2185
- },
2186
- null,
2187
- -1
2188
- /* HOISTED */
2189
- )
2190
- ]))
2205
+ }, [..._hoisted_14$3])
2191
2206
  ])
2192
2207
  ])
2193
2208
  ])
@@ -2213,11 +2228,27 @@ const consumptionTypes = [
2213
2228
  const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
2214
2229
  const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
2215
2230
 
2216
- const _hoisted_1$q = { class: "consumption-filter" };
2217
- const _hoisted_2$h = { class: "consumption-filter-content" };
2218
- const _hoisted_3$c = { class: "title" };
2219
- const _hoisted_4$9 = { class: "info" };
2220
- const _hoisted_5$7 = ["onClick"];
2231
+ const _hoisted_1$t = { class: "consumption-filter" };
2232
+ const _hoisted_2$p = /* @__PURE__ */ createElementVNode(
2233
+ "div",
2234
+ { class: "consumption-filter-title" },
2235
+ [
2236
+ /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2237
+ ],
2238
+ -1
2239
+ /* HOISTED */
2240
+ );
2241
+ const _hoisted_3$l = { class: "consumption-filter-content" };
2242
+ const _hoisted_4$g = { class: "title" };
2243
+ const _hoisted_5$d = { class: "info" };
2244
+ const _hoisted_6$9 = ["onClick"];
2245
+ const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
2246
+ "div",
2247
+ { class: "consumption-filter-bottom" },
2248
+ null,
2249
+ -1
2250
+ /* HOISTED */
2251
+ );
2221
2252
  var script$u = /* @__PURE__ */ defineComponent({
2222
2253
  __name: "ConsumptionFilter",
2223
2254
  props: {
@@ -2270,17 +2301,9 @@ var script$u = /* @__PURE__ */ defineComponent({
2270
2301
  emit("complete", result);
2271
2302
  };
2272
2303
  return (_ctx, _cache) => {
2273
- return openBlock(), createElementBlock("div", _hoisted_1$q, [
2274
- _cache[0] || (_cache[0] = createElementVNode(
2275
- "div",
2276
- { class: "consumption-filter-title" },
2277
- [
2278
- createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2279
- ],
2280
- -1
2281
- /* HOISTED */
2282
- )),
2283
- createElementVNode("div", _hoisted_2$h, [
2304
+ return openBlock(), createElementBlock("div", _hoisted_1$t, [
2305
+ _hoisted_2$p,
2306
+ createElementVNode("div", _hoisted_3$l, [
2284
2307
  (openBlock(true), createElementBlock(
2285
2308
  Fragment,
2286
2309
  null,
@@ -2291,12 +2314,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2291
2314
  [
2292
2315
  createElementVNode(
2293
2316
  "div",
2294
- _hoisted_3$c,
2317
+ _hoisted_4$g,
2295
2318
  toDisplayString(item.title),
2296
2319
  1
2297
2320
  /* TEXT */
2298
2321
  ),
2299
- createElementVNode("div", _hoisted_4$9, [
2322
+ createElementVNode("div", _hoisted_5$d, [
2300
2323
  (openBlock(true), createElementBlock(
2301
2324
  Fragment,
2302
2325
  null,
@@ -2305,7 +2328,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2305
2328
  onClick: () => onFilterSectionClick(index, it.code),
2306
2329
  class: normalizeClass([getItemClass(index, it.code), "info-item"]),
2307
2330
  key: i
2308
- }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$7);
2331
+ }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_6$9);
2309
2332
  }),
2310
2333
  128
2311
2334
  /* KEYED_FRAGMENT */
@@ -2330,13 +2353,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2330
2353
  onClick: onOkClick
2331
2354
  }, "\u786E\u5B9A")
2332
2355
  ]),
2333
- _cache[1] || (_cache[1] = createElementVNode(
2334
- "div",
2335
- { class: "consumption-filter-bottom" },
2336
- null,
2337
- -1
2338
- /* HOISTED */
2339
- ))
2356
+ _hoisted_7$7
2340
2357
  ]);
2341
2358
  };
2342
2359
  }
@@ -2344,9 +2361,37 @@ var script$u = /* @__PURE__ */ defineComponent({
2344
2361
 
2345
2362
  script$u.__file = "src/balance/components/ConsumptionFilter.vue";
2346
2363
 
2347
- const _hoisted_1$p = { class: "appkit-date-filter" };
2348
- const _hoisted_2$g = { class: "content" };
2349
- const _hoisted_3$b = { class: "time" };
2364
+ const _hoisted_1$s = { class: "appkit-date-filter" };
2365
+ const _hoisted_2$o = /* @__PURE__ */ createElementVNode(
2366
+ "div",
2367
+ { class: "date-filter-header" },
2368
+ "\u65E5\u671F\u9009\u62E9",
2369
+ -1
2370
+ /* HOISTED */
2371
+ );
2372
+ const _hoisted_3$k = { class: "content" };
2373
+ const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
2374
+ "div",
2375
+ { class: "title" },
2376
+ "\u81EA\u5B9A\u4E49",
2377
+ -1
2378
+ /* HOISTED */
2379
+ );
2380
+ const _hoisted_5$c = { class: "time" };
2381
+ const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
2382
+ "div",
2383
+ { class: "line" },
2384
+ "-",
2385
+ -1
2386
+ /* HOISTED */
2387
+ );
2388
+ const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
2389
+ "div",
2390
+ { class: "bottom" },
2391
+ null,
2392
+ -1
2393
+ /* HOISTED */
2394
+ );
2350
2395
  var script$t = /* @__PURE__ */ defineComponent({
2351
2396
  __name: "DateFilter",
2352
2397
  props: {
@@ -2416,23 +2461,11 @@ var script$t = /* @__PURE__ */ defineComponent({
2416
2461
  return (_ctx, _cache) => {
2417
2462
  const _component_nut_date_picker = DatePicker;
2418
2463
  const _component_nut_popup = Popup;
2419
- return openBlock(), createElementBlock("div", _hoisted_1$p, [
2420
- _cache[6] || (_cache[6] = createElementVNode(
2421
- "div",
2422
- { class: "date-filter-header" },
2423
- "\u65E5\u671F\u9009\u62E9",
2424
- -1
2425
- /* HOISTED */
2426
- )),
2427
- createElementVNode("div", _hoisted_2$g, [
2428
- _cache[5] || (_cache[5] = createElementVNode(
2429
- "div",
2430
- { class: "title" },
2431
- "\u81EA\u5B9A\u4E49",
2432
- -1
2433
- /* HOISTED */
2434
- )),
2435
- createElementVNode("div", _hoisted_3$b, [
2464
+ return openBlock(), createElementBlock("div", _hoisted_1$s, [
2465
+ _hoisted_2$o,
2466
+ createElementVNode("div", _hoisted_3$k, [
2467
+ _hoisted_4$f,
2468
+ createElementVNode("div", _hoisted_5$c, [
2436
2469
  createElementVNode(
2437
2470
  "div",
2438
2471
  {
@@ -2443,13 +2476,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2443
2476
  3
2444
2477
  /* TEXT, CLASS */
2445
2478
  ),
2446
- _cache[4] || (_cache[4] = createElementVNode(
2447
- "div",
2448
- { class: "line" },
2449
- "-",
2450
- -1
2451
- /* HOISTED */
2452
- )),
2479
+ _hoisted_6$8,
2453
2480
  createElementVNode(
2454
2481
  "div",
2455
2482
  {
@@ -2472,13 +2499,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2472
2499
  onClick: onOkClick
2473
2500
  }, "\u786E\u5B9A")
2474
2501
  ]),
2475
- _cache[7] || (_cache[7] = createElementVNode(
2476
- "div",
2477
- { class: "bottom" },
2478
- null,
2479
- -1
2480
- /* HOISTED */
2481
- )),
2502
+ _hoisted_7$6,
2482
2503
  createVNode(_component_nut_popup, {
2483
2504
  visible: datePickerOpen.value,
2484
2505
  "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event),
@@ -2508,36 +2529,38 @@ var script$t = /* @__PURE__ */ defineComponent({
2508
2529
 
2509
2530
  script$t.__file = "src/balance/components/DateFilter.vue";
2510
2531
 
2511
- const _hoisted_1$o = { class: "consumption-rules" };
2532
+ const _hoisted_1$r = { class: "consumption-rules" };
2533
+ const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
2534
+ "div",
2535
+ { class: "title" },
2536
+ "\u89C4\u5219\u8BF4\u660E",
2537
+ -1
2538
+ /* HOISTED */
2539
+ );
2540
+ const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
2541
+ "div",
2542
+ { class: "desc" },
2543
+ [
2544
+ /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2545
+ /* @__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 "),
2546
+ /* @__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 "),
2547
+ /* @__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 "),
2548
+ /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2549
+ /* @__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 "),
2550
+ /* @__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 ")
2551
+ ],
2552
+ -1
2553
+ /* HOISTED */
2554
+ );
2512
2555
  var script$s = /* @__PURE__ */ defineComponent({
2513
2556
  __name: "ConsumptionRules",
2514
2557
  emits: ["complete"],
2515
2558
  setup(__props, { emit: __emit }) {
2516
2559
  const emit = __emit;
2517
2560
  return (_ctx, _cache) => {
2518
- return openBlock(), createElementBlock("div", _hoisted_1$o, [
2519
- _cache[1] || (_cache[1] = createElementVNode(
2520
- "div",
2521
- { class: "title" },
2522
- "\u89C4\u5219\u8BF4\u660E",
2523
- -1
2524
- /* HOISTED */
2525
- )),
2526
- _cache[2] || (_cache[2] = createElementVNode(
2527
- "div",
2528
- { class: "desc" },
2529
- [
2530
- createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2531
- 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 "),
2532
- 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 "),
2533
- 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 "),
2534
- createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2535
- 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 "),
2536
- 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 ")
2537
- ],
2538
- -1
2539
- /* HOISTED */
2540
- )),
2561
+ return openBlock(), createElementBlock("div", _hoisted_1$r, [
2562
+ _hoisted_2$n,
2563
+ _hoisted_3$j,
2541
2564
  createElementVNode("div", {
2542
2565
  class: "know",
2543
2566
  onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
@@ -2549,27 +2572,30 @@ var script$s = /* @__PURE__ */ defineComponent({
2549
2572
 
2550
2573
  script$s.__file = "src/balance/components/ConsumptionRules.vue";
2551
2574
 
2552
- const _hoisted_1$n = { class: "empty-view" };
2575
+ const _hoisted_1$q = { class: "empty-view" };
2576
+ const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
2577
+ "img",
2578
+ {
2579
+ class: "empty-view-image",
2580
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2581
+ },
2582
+ null,
2583
+ -1
2584
+ /* HOISTED */
2585
+ );
2586
+ const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
2587
+ "div",
2588
+ { class: "empty-view-text" },
2589
+ "\u6682\u65E0\u6570\u636E",
2590
+ -1
2591
+ /* HOISTED */
2592
+ );
2593
+ const _hoisted_4$e = [
2594
+ _hoisted_2$m,
2595
+ _hoisted_3$i
2596
+ ];
2553
2597
  function render$1(_ctx, _cache) {
2554
- return openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2555
- createElementVNode(
2556
- "img",
2557
- {
2558
- class: "empty-view-image",
2559
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2560
- },
2561
- null,
2562
- -1
2563
- /* HOISTED */
2564
- ),
2565
- createElementVNode(
2566
- "div",
2567
- { class: "empty-view-text" },
2568
- "\u6682\u65E0\u6570\u636E",
2569
- -1
2570
- /* HOISTED */
2571
- )
2572
- ]));
2598
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [..._hoisted_4$e]);
2573
2599
  }
2574
2600
 
2575
2601
  /* unplugin-vue-components disabled */const script$r = {};
@@ -2577,10 +2603,31 @@ function render$1(_ctx, _cache) {
2577
2603
  script$r.render = render$1;
2578
2604
  script$r.__file = "src/shared/components/EmptyView.vue";
2579
2605
 
2580
- const _hoisted_1$m = {
2606
+ const _hoisted_1$p = {
2581
2607
  key: 0,
2582
2608
  class: "tip"
2583
2609
  };
2610
+ const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
2611
+ "img",
2612
+ {
2613
+ class: "tip-icon",
2614
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2615
+ },
2616
+ null,
2617
+ -1
2618
+ /* HOISTED */
2619
+ );
2620
+ const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
2621
+ "div",
2622
+ { class: "tip-content" },
2623
+ "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",
2624
+ -1
2625
+ /* HOISTED */
2626
+ );
2627
+ const _hoisted_4$d = [
2628
+ _hoisted_2$l,
2629
+ _hoisted_3$h
2630
+ ];
2584
2631
  var script$q = /* @__PURE__ */ defineComponent({
2585
2632
  __name: "Tip",
2586
2633
  setup(__props) {
@@ -2593,73 +2640,141 @@ var script$q = /* @__PURE__ */ defineComponent({
2593
2640
  }
2594
2641
  });
2595
2642
  return (_ctx, _cache) => {
2596
- return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$m, _cache[0] || (_cache[0] = [
2597
- createElementVNode(
2598
- "img",
2599
- {
2600
- class: "tip-icon",
2601
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2602
- },
2603
- null,
2604
- -1
2605
- /* HOISTED */
2606
- ),
2607
- createElementVNode(
2608
- "div",
2609
- { class: "tip-content" },
2610
- "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",
2611
- -1
2612
- /* HOISTED */
2613
- )
2614
- ]))) : createCommentVNode("v-if", true);
2643
+ return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$p, [..._hoisted_4$d])) : createCommentVNode("v-if", true);
2615
2644
  };
2616
2645
  }
2617
2646
  });
2618
2647
 
2619
2648
  script$q.__file = "src/balance/components/Tip.vue";
2620
2649
 
2621
- const _hoisted_1$l = { class: "account-view" };
2622
- const _hoisted_2$f = { class: "scroll-content" };
2623
- const _hoisted_3$a = { class: "balance" };
2624
- const _hoisted_4$8 = { class: "bean-box spa-between" };
2625
- const _hoisted_5$6 = { class: "bean-counts spa-between" };
2626
- const _hoisted_6$3 = { class: "counts number" };
2627
- const _hoisted_7$3 = {
2650
+ const _hoisted_1$o = { class: "account-view" };
2651
+ const _hoisted_2$k = { class: "scroll-content" };
2652
+ const _hoisted_3$g = /* @__PURE__ */ createElementVNode(
2653
+ "label",
2654
+ null,
2655
+ "\u6536\u652F\u660E\u7EC6",
2656
+ -1
2657
+ /* HOISTED */
2658
+ );
2659
+ const _hoisted_4$c = [
2660
+ _hoisted_3$g
2661
+ ];
2662
+ const _hoisted_5$b = { class: "balance" };
2663
+ const _hoisted_6$7 = { class: "bean-box spa-between" };
2664
+ const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
2665
+ "div",
2666
+ { class: "bean-img" },
2667
+ [
2668
+ /* @__PURE__ */ createElementVNode("img", {
2669
+ class: "bean-icon",
2670
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2671
+ }),
2672
+ /* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2673
+ ],
2674
+ -1
2675
+ /* HOISTED */
2676
+ );
2677
+ const _hoisted_8$3 = { class: "bean-counts spa-between" };
2678
+ const _hoisted_9$3 = { class: "counts number" };
2679
+ const _hoisted_10$3 = {
2628
2680
  key: 0,
2629
2681
  class: "rights-card"
2630
2682
  };
2631
- const _hoisted_8$3 = { class: "list" };
2632
- const _hoisted_9$2 = { class: "item-count" };
2633
- const _hoisted_10$1 = { class: "item-title" };
2634
- const _hoisted_11$1 = {
2683
+ const _hoisted_11$3 = /* @__PURE__ */ createElementVNode(
2684
+ "div",
2685
+ { class: "title" },
2686
+ "\u4F01\u660E\u661F\u6743\u76CA",
2687
+ -1
2688
+ /* HOISTED */
2689
+ );
2690
+ const _hoisted_12$3 = { class: "list" };
2691
+ const _hoisted_13$3 = { class: "item-count" };
2692
+ const _hoisted_14$2 = { class: "item-title" };
2693
+ const _hoisted_15$2 = {
2635
2694
  key: 0,
2636
2695
  class: "item-title-button"
2637
2696
  };
2638
- const _hoisted_12$1 = ["onClick"];
2639
- const _hoisted_13$1 = {
2697
+ const _hoisted_16$2 = ["onClick"];
2698
+ const _hoisted_17$1 = /* @__PURE__ */ createElementVNode(
2699
+ "img",
2700
+ {
2701
+ class: "button-icon",
2702
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2703
+ },
2704
+ null,
2705
+ -1
2706
+ /* HOISTED */
2707
+ );
2708
+ const _hoisted_18$1 = {
2640
2709
  key: 1,
2641
2710
  class: "rights-card"
2642
2711
  };
2643
- const _hoisted_14$1 = { class: "list" };
2644
- const _hoisted_15$1 = { class: "item-count" };
2645
- const _hoisted_16$1 = { class: "item-title" };
2646
- const _hoisted_17$1 = { class: "operation-box" };
2647
- const _hoisted_18$1 = { class: "search-time" };
2648
- const _hoisted_19$1 = { class: "text number" };
2649
- const _hoisted_20$1 = { class: "operation-list" };
2650
- const _hoisted_21$1 = {
2712
+ const _hoisted_19$1 = /* @__PURE__ */ createElementVNode(
2713
+ "div",
2714
+ { class: "title" },
2715
+ "AI\u5BA1\u6279\u6743\u76CA",
2716
+ -1
2717
+ /* HOISTED */
2718
+ );
2719
+ const _hoisted_20$1 = { class: "list" };
2720
+ const _hoisted_21$1 = { class: "item-count" };
2721
+ const _hoisted_22$1 = { class: "item-title" };
2722
+ const _hoisted_23$1 = { class: "operation-box" };
2723
+ const _hoisted_24$1 = { class: "search-time" };
2724
+ const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
2725
+ "div",
2726
+ { class: "title" },
2727
+ "\u6536\u652F\u660E\u7EC6",
2728
+ -1
2729
+ /* HOISTED */
2730
+ );
2731
+ const _hoisted_26 = { class: "text number" };
2732
+ const _hoisted_27 = /* @__PURE__ */ createElementVNode(
2733
+ "img",
2734
+ {
2735
+ style: { "margin-top": "-2px" },
2736
+ class: "time-icon",
2737
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
2738
+ },
2739
+ null,
2740
+ -1
2741
+ /* HOISTED */
2742
+ );
2743
+ const _hoisted_28 = /* @__PURE__ */ createElementVNode(
2744
+ "span",
2745
+ { class: "text" },
2746
+ "\u7B5B\u9009",
2747
+ -1
2748
+ /* HOISTED */
2749
+ );
2750
+ const _hoisted_29 = /* @__PURE__ */ createElementVNode(
2751
+ "img",
2752
+ {
2753
+ class: "time-icon",
2754
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
2755
+ },
2756
+ null,
2757
+ -1
2758
+ /* HOISTED */
2759
+ );
2760
+ const _hoisted_30 = [
2761
+ _hoisted_28,
2762
+ _hoisted_29
2763
+ ];
2764
+ const _hoisted_31 = { class: "operation-list" };
2765
+ const _hoisted_32 = {
2651
2766
  key: 0,
2652
2767
  class: "box"
2653
2768
  };
2654
- const _hoisted_22$1 = { class: "title number" };
2655
- const _hoisted_23 = { class: "item-type" };
2656
- const _hoisted_24 = { class: "item-detail" };
2657
- const _hoisted_25 = { class: "item-info spa-between" };
2658
- const _hoisted_26 = { class: "item-info-type" };
2659
- const _hoisted_27 = { class: "item-info-title" };
2660
- const _hoisted_28 = { class: "item-info-amount number" };
2661
- const _hoisted_29 = { class: "item-detail-remark" };
2662
- const _hoisted_30 = {
2769
+ const _hoisted_33 = { class: "title number" };
2770
+ const _hoisted_34 = { class: "item-type" };
2771
+ const _hoisted_35 = { class: "item-detail" };
2772
+ const _hoisted_36 = { class: "item-info spa-between" };
2773
+ const _hoisted_37 = { class: "item-info-type" };
2774
+ const _hoisted_38 = { class: "item-info-title" };
2775
+ const _hoisted_39 = { class: "item-info-amount number" };
2776
+ const _hoisted_40 = { class: "item-detail-remark" };
2777
+ const _hoisted_41 = {
2663
2778
  key: 0,
2664
2779
  class: "box-not-text"
2665
2780
  };
@@ -2840,8 +2955,8 @@ var script$p = /* @__PURE__ */ defineComponent({
2840
2955
  Fragment,
2841
2956
  null,
2842
2957
  [
2843
- createElementVNode("div", _hoisted_1$l, [
2844
- createElementVNode("div", _hoisted_2$f, [
2958
+ createElementVNode("div", _hoisted_1$o, [
2959
+ createElementVNode("div", _hoisted_2$k, [
2845
2960
  createVNode(unref(script$H), {
2846
2961
  "color-mode": "dark",
2847
2962
  title: "\u6211\u7684\u8D26\u6237",
@@ -2852,40 +2967,20 @@ var script$p = /* @__PURE__ */ defineComponent({
2852
2967
  createElementVNode("div", {
2853
2968
  class: "small-bean-button",
2854
2969
  onClick: onSecondBalanceButtonClick
2855
- }, _cache[7] || (_cache[7] = [
2856
- createElementVNode(
2857
- "label",
2858
- null,
2859
- "\u6536\u652F\u660E\u7EC6",
2860
- -1
2861
- /* HOISTED */
2862
- )
2863
- ]))
2970
+ }, [..._hoisted_4$c])
2864
2971
  ]),
2865
- createElementVNode("div", _hoisted_3$a, [
2866
- createElementVNode("div", _hoisted_4$8, [
2867
- _cache[8] || (_cache[8] = createElementVNode(
2868
- "div",
2869
- { class: "bean-img" },
2870
- [
2871
- createElementVNode("img", {
2872
- class: "bean-icon",
2873
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2874
- }),
2875
- createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2876
- ],
2877
- -1
2878
- /* HOISTED */
2879
- )),
2972
+ createElementVNode("div", _hoisted_5$b, [
2973
+ createElementVNode("div", _hoisted_6$7, [
2974
+ _hoisted_7$5,
2880
2975
  createElementVNode("div", {
2881
2976
  class: "rule",
2882
2977
  onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
2883
2978
  }, "\u89C4\u5219\u8BF4\u660E")
2884
2979
  ]),
2885
- createElementVNode("div", _hoisted_5$6, [
2980
+ createElementVNode("div", _hoisted_8$3, [
2886
2981
  createElementVNode(
2887
2982
  "div",
2888
- _hoisted_6$3,
2983
+ _hoisted_9$3,
2889
2984
  toDisplayString(balance.value.total || 0),
2890
2985
  1
2891
2986
  /* TEXT */
@@ -2897,15 +2992,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2897
2992
  ])
2898
2993
  ]),
2899
2994
  createVNode(script$q),
2900
- balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
2901
- _cache[10] || (_cache[10] = createElementVNode(
2902
- "div",
2903
- { class: "title" },
2904
- "\u4F01\u660E\u661F\u6743\u76CA",
2905
- -1
2906
- /* HOISTED */
2907
- )),
2908
- createElementVNode("div", _hoisted_8$3, [
2995
+ balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_10$3, [
2996
+ _hoisted_11$3,
2997
+ createElementVNode("div", _hoisted_12$3, [
2909
2998
  (openBlock(true), createElementBlock(
2910
2999
  Fragment,
2911
3000
  null,
@@ -2914,7 +3003,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2914
3003
  class: "item star-item",
2915
3004
  key: index
2916
3005
  }, [
2917
- createElementVNode("div", _hoisted_9$2, [
3006
+ createElementVNode("div", _hoisted_13$3, [
2918
3007
  createElementVNode(
2919
3008
  "span",
2920
3009
  null,
@@ -2930,7 +3019,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2930
3019
  /* TEXT */
2931
3020
  )
2932
3021
  ]),
2933
- createElementVNode("div", _hoisted_10$1, [
3022
+ createElementVNode("div", _hoisted_14$2, [
2934
3023
  createElementVNode(
2935
3024
  "div",
2936
3025
  null,
@@ -2938,20 +3027,11 @@ var script$p = /* @__PURE__ */ defineComponent({
2938
3027
  1
2939
3028
  /* TEXT */
2940
3029
  ),
2941
- item.id ? (openBlock(), createElementBlock("div", _hoisted_11$1, [
3030
+ item.id ? (openBlock(), createElementBlock("div", _hoisted_15$2, [
2942
3031
  createElementVNode("div", {
2943
3032
  onClick: ($event) => gotoTrade(item)
2944
- }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_12$1),
2945
- _cache[9] || (_cache[9] = createElementVNode(
2946
- "img",
2947
- {
2948
- class: "button-icon",
2949
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2950
- },
2951
- null,
2952
- -1
2953
- /* HOISTED */
2954
- ))
3033
+ }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_16$2),
3034
+ _hoisted_17$1
2955
3035
  ])) : createCommentVNode("v-if", true)
2956
3036
  ])
2957
3037
  ]);
@@ -2961,15 +3041,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2961
3041
  ))
2962
3042
  ])
2963
3043
  ])) : createCommentVNode("v-if", true),
2964
- balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_13$1, [
2965
- _cache[11] || (_cache[11] = createElementVNode(
2966
- "div",
2967
- { class: "title" },
2968
- "AI\u5BA1\u6279\u6743\u76CA",
2969
- -1
2970
- /* HOISTED */
2971
- )),
2972
- createElementVNode("div", _hoisted_14$1, [
3044
+ balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
3045
+ _hoisted_19$1,
3046
+ createElementVNode("div", _hoisted_20$1, [
2973
3047
  (openBlock(true), createElementBlock(
2974
3048
  Fragment,
2975
3049
  null,
@@ -2980,14 +3054,14 @@ var script$p = /* @__PURE__ */ defineComponent({
2980
3054
  }, [
2981
3055
  createElementVNode(
2982
3056
  "div",
2983
- _hoisted_15$1,
3057
+ _hoisted_21$1,
2984
3058
  toDisplayString(item.count) + toDisplayString(item.unit),
2985
3059
  1
2986
3060
  /* TEXT */
2987
3061
  ),
2988
3062
  createElementVNode(
2989
3063
  "div",
2990
- _hoisted_16$1,
3064
+ _hoisted_22$1,
2991
3065
  toDisplayString(item.title),
2992
3066
  1
2993
3067
  /* TEXT */
@@ -3063,21 +3137,15 @@ var script$p = /* @__PURE__ */ defineComponent({
3063
3137
  title: "\u6536\u652F\u660E\u7EC6"
3064
3138
  }, {
3065
3139
  default: withCtx(() => [
3066
- createElementVNode("div", _hoisted_17$1, [
3140
+ createElementVNode("div", _hoisted_23$1, [
3067
3141
  createElementVNode(
3068
3142
  "div",
3069
3143
  {
3070
3144
  class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
3071
3145
  },
3072
3146
  [
3073
- createElementVNode("div", _hoisted_18$1, [
3074
- _cache[13] || (_cache[13] = createElementVNode(
3075
- "div",
3076
- { class: "title" },
3077
- "\u6536\u652F\u660E\u7EC6",
3078
- -1
3079
- /* HOISTED */
3080
- )),
3147
+ createElementVNode("div", _hoisted_24$1, [
3148
+ _hoisted_25$1,
3081
3149
  withDirectives(createElementVNode(
3082
3150
  "div",
3083
3151
  {
@@ -3087,22 +3155,12 @@ var script$p = /* @__PURE__ */ defineComponent({
3087
3155
  [
3088
3156
  createElementVNode(
3089
3157
  "div",
3090
- _hoisted_19$1,
3158
+ _hoisted_26,
3091
3159
  toDisplayString(dateRangeDisplay.value),
3092
3160
  1
3093
3161
  /* TEXT */
3094
3162
  ),
3095
- _cache[12] || (_cache[12] = createElementVNode(
3096
- "img",
3097
- {
3098
- style: { "margin-top": "-2px" },
3099
- class: "time-icon",
3100
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3101
- },
3102
- null,
3103
- -1
3104
- /* HOISTED */
3105
- ))
3163
+ _hoisted_27
3106
3164
  ],
3107
3165
  512
3108
3166
  /* NEED_PATCH */
@@ -3113,30 +3171,12 @@ var script$p = /* @__PURE__ */ defineComponent({
3113
3171
  createElementVNode("div", {
3114
3172
  class: "search",
3115
3173
  onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
3116
- }, _cache[14] || (_cache[14] = [
3117
- createElementVNode(
3118
- "span",
3119
- { class: "text" },
3120
- "\u7B5B\u9009",
3121
- -1
3122
- /* HOISTED */
3123
- ),
3124
- createElementVNode(
3125
- "img",
3126
- {
3127
- class: "time-icon",
3128
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3129
- },
3130
- null,
3131
- -1
3132
- /* HOISTED */
3133
- )
3134
- ]))
3174
+ }, [..._hoisted_30])
3135
3175
  ],
3136
3176
  2
3137
3177
  /* CLASS */
3138
3178
  ),
3139
- createElementVNode("div", _hoisted_20$1, [
3179
+ createElementVNode("div", _hoisted_31, [
3140
3180
  createVNode(_component_scroll_view, {
3141
3181
  class: "operation-scroll",
3142
3182
  "scroll-y": true,
@@ -3145,7 +3185,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3145
3185
  onScrolltolower: onReachBottom
3146
3186
  }, {
3147
3187
  default: withCtx(() => [
3148
- consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_21$1, [
3188
+ consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_32, [
3149
3189
  (openBlock(true), createElementBlock(
3150
3190
  Fragment,
3151
3191
  null,
@@ -3156,7 +3196,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3156
3196
  }, [
3157
3197
  createElementVNode(
3158
3198
  "div",
3159
- _hoisted_22$1,
3199
+ _hoisted_33,
3160
3200
  toDisplayString(item.date),
3161
3201
  1
3162
3202
  /* TEXT */
@@ -3171,24 +3211,24 @@ var script$p = /* @__PURE__ */ defineComponent({
3171
3211
  }, [
3172
3212
  createElementVNode(
3173
3213
  "div",
3174
- _hoisted_23,
3214
+ _hoisted_34,
3175
3215
  toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
3176
3216
  1
3177
3217
  /* TEXT */
3178
3218
  ),
3179
- createElementVNode("div", _hoisted_24, [
3180
- createElementVNode("div", _hoisted_25, [
3219
+ createElementVNode("div", _hoisted_35, [
3220
+ createElementVNode("div", _hoisted_36, [
3181
3221
  createElementVNode("div", null, [
3182
3222
  createElementVNode(
3183
3223
  "div",
3184
- _hoisted_26,
3224
+ _hoisted_37,
3185
3225
  toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
3186
3226
  1
3187
3227
  /* TEXT */
3188
3228
  ),
3189
3229
  createElementVNode(
3190
3230
  "div",
3191
- _hoisted_27,
3231
+ _hoisted_38,
3192
3232
  toDisplayString(it.title),
3193
3233
  1
3194
3234
  /* TEXT */
@@ -3196,7 +3236,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3196
3236
  ]),
3197
3237
  createElementVNode(
3198
3238
  "div",
3199
- _hoisted_28,
3239
+ _hoisted_39,
3200
3240
  toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
3201
3241
  1
3202
3242
  /* TEXT */
@@ -3204,7 +3244,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3204
3244
  ]),
3205
3245
  createElementVNode(
3206
3246
  "div",
3207
- _hoisted_29,
3247
+ _hoisted_40,
3208
3248
  toDisplayString(it.description),
3209
3249
  1
3210
3250
  /* TEXT */
@@ -3220,7 +3260,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3220
3260
  128
3221
3261
  /* KEYED_FRAGMENT */
3222
3262
  )),
3223
- reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3263
+ reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_41, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3224
3264
  ])) : (openBlock(), createBlock(script$r, { key: 1 }))
3225
3265
  ]),
3226
3266
  _: 1
@@ -3242,10 +3282,20 @@ var script$p = /* @__PURE__ */ defineComponent({
3242
3282
 
3243
3283
  script$p.__file = "src/balance/components/AccountView.vue";
3244
3284
 
3245
- const _hoisted_1$k = { class: "balance-reminder" };
3246
- const _hoisted_2$e = { class: "footer" };
3247
- const _hoisted_3$9 = { class: "col" };
3248
- const _hoisted_4$7 = { class: "col" };
3285
+ const _hoisted_1$n = { class: "balance-reminder" };
3286
+ const _hoisted_2$j = /* @__PURE__ */ createElementVNode(
3287
+ "div",
3288
+ { class: "body" },
3289
+ [
3290
+ /* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3291
+ /* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3292
+ ],
3293
+ -1
3294
+ /* HOISTED */
3295
+ );
3296
+ const _hoisted_3$f = { class: "footer" };
3297
+ const _hoisted_4$b = { class: "col" };
3298
+ const _hoisted_5$a = { class: "col" };
3249
3299
  var script$o = /* @__PURE__ */ defineComponent({
3250
3300
  __name: "BalanceReminder",
3251
3301
  props: {
@@ -3266,32 +3316,23 @@ var script$o = /* @__PURE__ */ defineComponent({
3266
3316
  "close-on-click-overlay": false
3267
3317
  }, {
3268
3318
  default: withCtx(() => [
3269
- createElementVNode("div", _hoisted_1$k, [
3270
- _cache[3] || (_cache[3] = createElementVNode(
3271
- "div",
3272
- { class: "body" },
3273
- [
3274
- createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3275
- createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3276
- ],
3277
- -1
3278
- /* HOISTED */
3279
- )),
3280
- createElementVNode("div", _hoisted_2$e, [
3281
- createElementVNode("div", _hoisted_3$9, [
3319
+ createElementVNode("div", _hoisted_1$n, [
3320
+ _hoisted_2$j,
3321
+ createElementVNode("div", _hoisted_3$f, [
3322
+ createElementVNode("div", _hoisted_4$b, [
3282
3323
  createVNode(_component_nut_button, {
3283
3324
  class: "cancel-button",
3284
3325
  onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
3285
3326
  block: ""
3286
3327
  }, {
3287
- default: withCtx(() => _cache[2] || (_cache[2] = [
3328
+ default: withCtx(() => [
3288
3329
  createTextVNode("\u53D6\u6D88")
3289
- ])),
3330
+ ]),
3290
3331
  _: 1
3291
3332
  /* STABLE */
3292
3333
  })
3293
3334
  ]),
3294
- createElementVNode("div", _hoisted_4$7, [
3335
+ createElementVNode("div", _hoisted_5$a, [
3295
3336
  createVNode(_component_nut_button, {
3296
3337
  block: "",
3297
3338
  class: "recharge-button",
@@ -3320,7 +3361,18 @@ var script$o = /* @__PURE__ */ defineComponent({
3320
3361
 
3321
3362
  script$o.__file = "src/balance/components/BalanceReminder.vue";
3322
3363
 
3323
- const _hoisted_1$j = { class: "text" };
3364
+ const _hoisted_1$m = { class: "text" };
3365
+ const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
3366
+ "img",
3367
+ {
3368
+ style: { "margin-top": "-2px" },
3369
+ class: "time-icon",
3370
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3371
+ },
3372
+ null,
3373
+ -1
3374
+ /* HOISTED */
3375
+ );
3324
3376
  var script$n = /* @__PURE__ */ defineComponent({
3325
3377
  __name: "DateRange",
3326
3378
  props: {
@@ -3370,22 +3422,12 @@ var script$n = /* @__PURE__ */ defineComponent({
3370
3422
  }, [
3371
3423
  createElementVNode(
3372
3424
  "div",
3373
- _hoisted_1$j,
3425
+ _hoisted_1$m,
3374
3426
  toDisplayString(dateRangeDisplay.value),
3375
3427
  1
3376
3428
  /* TEXT */
3377
3429
  ),
3378
- _cache[0] || (_cache[0] = createElementVNode(
3379
- "img",
3380
- {
3381
- style: { "margin-top": "-2px" },
3382
- class: "time-icon",
3383
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3384
- },
3385
- null,
3386
- -1
3387
- /* HOISTED */
3388
- ))
3430
+ _hoisted_2$i
3389
3431
  ]);
3390
3432
  };
3391
3433
  }
@@ -3393,11 +3435,27 @@ var script$n = /* @__PURE__ */ defineComponent({
3393
3435
 
3394
3436
  script$n.__file = "src/balance/components/DateRange.vue";
3395
3437
 
3396
- const _hoisted_1$i = { class: "list-filter-picker" };
3397
- const _hoisted_2$d = { class: "consumption-filter-content" };
3398
- const _hoisted_3$8 = { class: "title" };
3399
- const _hoisted_4$6 = { class: "info" };
3400
- const _hoisted_5$5 = ["onClick"];
3438
+ const _hoisted_1$l = { class: "list-filter-picker" };
3439
+ const _hoisted_2$h = /* @__PURE__ */ createElementVNode(
3440
+ "div",
3441
+ { class: "list-filter-picker-title" },
3442
+ [
3443
+ /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3444
+ ],
3445
+ -1
3446
+ /* HOISTED */
3447
+ );
3448
+ const _hoisted_3$e = { class: "consumption-filter-content" };
3449
+ const _hoisted_4$a = { class: "title" };
3450
+ const _hoisted_5$9 = { class: "info" };
3451
+ const _hoisted_6$6 = ["onClick"];
3452
+ const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
3453
+ "div",
3454
+ { class: "consumption-filter-bottom" },
3455
+ null,
3456
+ -1
3457
+ /* HOISTED */
3458
+ );
3401
3459
  var script$m = /* @__PURE__ */ defineComponent({
3402
3460
  __name: "ListFilterPicker",
3403
3461
  props: {
@@ -3444,17 +3502,9 @@ var script$m = /* @__PURE__ */ defineComponent({
3444
3502
  emit("complete", result);
3445
3503
  };
3446
3504
  return (_ctx, _cache) => {
3447
- return openBlock(), createElementBlock("div", _hoisted_1$i, [
3448
- _cache[0] || (_cache[0] = createElementVNode(
3449
- "div",
3450
- { class: "list-filter-picker-title" },
3451
- [
3452
- createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3453
- ],
3454
- -1
3455
- /* HOISTED */
3456
- )),
3457
- createElementVNode("div", _hoisted_2$d, [
3505
+ return openBlock(), createElementBlock("div", _hoisted_1$l, [
3506
+ _hoisted_2$h,
3507
+ createElementVNode("div", _hoisted_3$e, [
3458
3508
  (openBlock(true), createElementBlock(
3459
3509
  Fragment,
3460
3510
  null,
@@ -3465,12 +3515,12 @@ var script$m = /* @__PURE__ */ defineComponent({
3465
3515
  [
3466
3516
  createElementVNode(
3467
3517
  "div",
3468
- _hoisted_3$8,
3518
+ _hoisted_4$a,
3469
3519
  toDisplayString(item.label),
3470
3520
  1
3471
3521
  /* TEXT */
3472
3522
  ),
3473
- createElementVNode("div", _hoisted_4$6, [
3523
+ createElementVNode("div", _hoisted_5$9, [
3474
3524
  (openBlock(true), createElementBlock(
3475
3525
  Fragment,
3476
3526
  null,
@@ -3479,7 +3529,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3479
3529
  onClick: () => onFilterSectionClick(item.name, it.value),
3480
3530
  class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
3481
3531
  key: i
3482
- }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$5);
3532
+ }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_6$6);
3483
3533
  }),
3484
3534
  128
3485
3535
  /* KEYED_FRAGMENT */
@@ -3504,13 +3554,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3504
3554
  onClick: onOkClick
3505
3555
  }, "\u786E\u5B9A")
3506
3556
  ]),
3507
- _cache[1] || (_cache[1] = createElementVNode(
3508
- "div",
3509
- { class: "consumption-filter-bottom" },
3510
- null,
3511
- -1
3512
- /* HOISTED */
3513
- ))
3557
+ _hoisted_7$4
3514
3558
  ]);
3515
3559
  };
3516
3560
  }
@@ -3518,6 +3562,27 @@ var script$m = /* @__PURE__ */ defineComponent({
3518
3562
 
3519
3563
  script$m.__file = "src/balance/components/ListFilterPicker.vue";
3520
3564
 
3565
+ const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
3566
+ "span",
3567
+ { class: "text" },
3568
+ "\u7B5B\u9009",
3569
+ -1
3570
+ /* HOISTED */
3571
+ );
3572
+ const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
3573
+ "img",
3574
+ {
3575
+ class: "icon",
3576
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3577
+ },
3578
+ null,
3579
+ -1
3580
+ /* HOISTED */
3581
+ );
3582
+ const _hoisted_3$d = [
3583
+ _hoisted_1$k,
3584
+ _hoisted_2$g
3585
+ ];
3521
3586
  var script$l = /* @__PURE__ */ defineComponent({
3522
3587
  __name: "ListFilter",
3523
3588
  props: {
@@ -3552,31 +3617,23 @@ var script$l = /* @__PURE__ */ defineComponent({
3552
3617
  return openBlock(), createElementBlock("div", {
3553
3618
  class: "list-filter",
3554
3619
  onClick: openPicker
3555
- }, _cache[0] || (_cache[0] = [
3556
- createElementVNode(
3557
- "span",
3558
- { class: "text" },
3559
- "\u7B5B\u9009",
3560
- -1
3561
- /* HOISTED */
3562
- ),
3563
- createElementVNode(
3564
- "img",
3565
- {
3566
- class: "icon",
3567
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3568
- },
3569
- null,
3570
- -1
3571
- /* HOISTED */
3572
- )
3573
- ]));
3620
+ }, [..._hoisted_3$d]);
3574
3621
  };
3575
3622
  }
3576
3623
  });
3577
3624
 
3578
3625
  script$l.__file = "src/balance/components/ListFilter.vue";
3579
3626
 
3627
+ const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
3628
+ "img",
3629
+ {
3630
+ class: "ocr-id__img",
3631
+ src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3632
+ },
3633
+ null,
3634
+ -1
3635
+ /* HOISTED */
3636
+ );
3580
3637
  var script$k = /* @__PURE__ */ defineComponent({
3581
3638
  __name: "index",
3582
3639
  emits: ["ocr"],
@@ -3666,16 +3723,7 @@ var script$k = /* @__PURE__ */ defineComponent({
3666
3723
  onClick: ocrIDCard
3667
3724
  }, [
3668
3725
  renderSlot(_ctx.$slots, "icon", {}, () => [
3669
- _cache[0] || (_cache[0] = createElementVNode(
3670
- "img",
3671
- {
3672
- class: "ocr-id__img",
3673
- src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3674
- },
3675
- null,
3676
- -1
3677
- /* HOISTED */
3678
- ))
3726
+ _hoisted_1$j
3679
3727
  ])
3680
3728
  ]);
3681
3729
  };
@@ -3714,7 +3762,7 @@ var script$j = /* @__PURE__ */ defineComponent({
3714
3762
 
3715
3763
  script$j.__file = "src/components/dd-icon/index.vue";
3716
3764
 
3717
- const _hoisted_1$h = { class: "dd-area" };
3765
+ const _hoisted_1$i = { class: "dd-area" };
3718
3766
  var script$i = /* @__PURE__ */ defineComponent({
3719
3767
  __name: "index",
3720
3768
  props: {
@@ -3874,7 +3922,7 @@ var script$i = /* @__PURE__ */ defineComponent({
3874
3922
  disabled: props.disabled
3875
3923
  }, {
3876
3924
  default: withCtx(() => [
3877
- createElementVNode("div", _hoisted_1$h, [
3925
+ createElementVNode("div", _hoisted_1$i, [
3878
3926
  createElementVNode(
3879
3927
  "div",
3880
3928
  {
@@ -3904,8 +3952,8 @@ var script$i = /* @__PURE__ */ defineComponent({
3904
3952
 
3905
3953
  script$i.__file = "src/components/dd-area/index.vue";
3906
3954
 
3907
- const _hoisted_1$g = { class: "dd-selector" };
3908
- const _hoisted_2$c = { class: "dd-selector-value" };
3955
+ const _hoisted_1$h = { class: "dd-selector" };
3956
+ const _hoisted_2$f = { class: "dd-selector-value" };
3909
3957
  var script$h = /* @__PURE__ */ defineComponent({
3910
3958
  __name: "index",
3911
3959
  props: {
@@ -3966,8 +4014,8 @@ var script$h = /* @__PURE__ */ defineComponent({
3966
4014
  }, {
3967
4015
  default: withCtx(() => [
3968
4016
  renderSlot(_ctx.$slots, "content", {}, () => [
3969
- createElementVNode("div", _hoisted_1$g, [
3970
- createElementVNode("div", _hoisted_2$c, [
4017
+ createElementVNode("div", _hoisted_1$h, [
4018
+ createElementVNode("div", _hoisted_2$f, [
3971
4019
  createElementVNode(
3972
4020
  "div",
3973
4021
  {
@@ -4004,11 +4052,11 @@ var script$h = /* @__PURE__ */ defineComponent({
4004
4052
 
4005
4053
  script$h.__file = "src/components/dd-selector/index.vue";
4006
4054
 
4007
- const _hoisted_1$f = { class: "self-registration" };
4008
- const _hoisted_2$b = { class: "self-registration-body" };
4009
- const _hoisted_3$7 = ["src"];
4010
- const _hoisted_4$5 = { class: "self-registration__input" };
4011
- const _hoisted_5$4 = { class: "self-registration-bottom" };
4055
+ const _hoisted_1$g = { class: "self-registration" };
4056
+ const _hoisted_2$e = { class: "self-registration-body" };
4057
+ const _hoisted_3$c = ["src"];
4058
+ const _hoisted_4$9 = { class: "self-registration__input" };
4059
+ const _hoisted_5$8 = { class: "self-registration-bottom" };
4012
4060
  var script$g = /* @__PURE__ */ defineComponent({
4013
4061
  __name: "SelfRegistration",
4014
4062
  props: {
@@ -4111,13 +4159,13 @@ var script$g = /* @__PURE__ */ defineComponent({
4111
4159
  const _component_nut_form_item = FormItem;
4112
4160
  const _component_nut_form = Form;
4113
4161
  const _component_nut_button = Button;
4114
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
4115
- createElementVNode("div", _hoisted_2$b, [
4162
+ return openBlock(), createElementBlock("div", _hoisted_1$g, [
4163
+ createElementVNode("div", _hoisted_2$e, [
4116
4164
  createElementVNode("img", {
4117
4165
  src: _ctx.banner,
4118
4166
  class: "self-registration-banner",
4119
4167
  alt: ""
4120
- }, null, 8, _hoisted_3$7),
4168
+ }, null, 8, _hoisted_3$c),
4121
4169
  createVNode(_component_nut_form, null, {
4122
4170
  default: withCtx(() => [
4123
4171
  createVNode(_component_nut_form_item, {
@@ -4133,16 +4181,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4133
4181
  }, {
4134
4182
  default: withCtx(() => [
4135
4183
  createVNode(_component_nut_radio, { label: "person" }, {
4136
- default: withCtx(() => _cache[7] || (_cache[7] = [
4184
+ default: withCtx(() => [
4137
4185
  createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
4138
- ])),
4186
+ ]),
4139
4187
  _: 1
4140
4188
  /* STABLE */
4141
4189
  }),
4142
4190
  createVNode(_component_nut_radio, { label: "company" }, {
4143
- default: withCtx(() => _cache[8] || (_cache[8] = [
4191
+ default: withCtx(() => [
4144
4192
  createTextVNode("\u516C\u53F8\u4F7F\u7528")
4145
- ])),
4193
+ ]),
4146
4194
  _: 1
4147
4195
  /* STABLE */
4148
4196
  })
@@ -4159,7 +4207,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4159
4207
  required: ""
4160
4208
  }, {
4161
4209
  default: withCtx(() => [
4162
- createElementVNode("div", _hoisted_4$5, [
4210
+ createElementVNode("div", _hoisted_4$9, [
4163
4211
  withDirectives(createElementVNode(
4164
4212
  "input",
4165
4213
  {
@@ -4298,16 +4346,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4298
4346
  /* STABLE */
4299
4347
  })
4300
4348
  ]),
4301
- createElementVNode("div", _hoisted_5$4, [
4349
+ createElementVNode("div", _hoisted_5$8, [
4302
4350
  createVNode(_component_nut_button, {
4303
4351
  block: "",
4304
4352
  type: "primary",
4305
4353
  class: "experience-button",
4306
4354
  onClick: submit
4307
4355
  }, {
4308
- default: withCtx(() => _cache[9] || (_cache[9] = [
4356
+ default: withCtx(() => [
4309
4357
  createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
4310
- ])),
4358
+ ]),
4311
4359
  _: 1
4312
4360
  /* STABLE */
4313
4361
  })
@@ -4414,8 +4462,22 @@ function useHttp$1() {
4414
4462
  return $http;
4415
4463
  }
4416
4464
 
4417
- const _hoisted_1$e = { class: "notice-popup-bd" };
4418
- const _hoisted_2$a = { style: { "white-space": "pre-wrap" } };
4465
+ const _hoisted_1$f = /* @__PURE__ */ createElementVNode(
4466
+ "div",
4467
+ { class: "notice-popup-hd" },
4468
+ [
4469
+ /* @__PURE__ */ createElementVNode("img", {
4470
+ class: "notice-popup-hd-icon",
4471
+ src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4472
+ alt: ""
4473
+ }),
4474
+ /* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4475
+ ],
4476
+ -1
4477
+ /* HOISTED */
4478
+ );
4479
+ const _hoisted_2$d = { class: "notice-popup-bd" };
4480
+ const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
4419
4481
  var script$f = /* @__PURE__ */ defineComponent({
4420
4482
  __name: "NoticePopup",
4421
4483
  props: {
@@ -4456,24 +4518,11 @@ var script$f = /* @__PURE__ */ defineComponent({
4456
4518
  round: ""
4457
4519
  }, {
4458
4520
  default: withCtx(() => [
4459
- _cache[1] || (_cache[1] = createElementVNode(
4460
- "div",
4461
- { class: "notice-popup-hd" },
4462
- [
4463
- createElementVNode("img", {
4464
- class: "notice-popup-hd-icon",
4465
- src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4466
- alt: ""
4467
- }),
4468
- createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4469
- ],
4470
- -1
4471
- /* HOISTED */
4472
- )),
4473
- createElementVNode("div", _hoisted_1$e, [
4521
+ _hoisted_1$f,
4522
+ createElementVNode("div", _hoisted_2$d, [
4474
4523
  createElementVNode(
4475
4524
  "div",
4476
- _hoisted_2$a,
4525
+ _hoisted_3$b,
4477
4526
  toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
4478
4527
  1
4479
4528
  /* TEXT */
@@ -4526,8 +4575,19 @@ function useNotice() {
4526
4575
  };
4527
4576
  }
4528
4577
 
4529
- const _hoisted_1$d = { class: "notice-banner-text" };
4530
- const _hoisted_2$9 = ["onClick"];
4578
+ const _hoisted_1$e = /* @__PURE__ */ createElementVNode(
4579
+ "img",
4580
+ {
4581
+ class: "notice-banner-icon",
4582
+ src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4583
+ alt: ""
4584
+ },
4585
+ null,
4586
+ -1
4587
+ /* HOISTED */
4588
+ );
4589
+ const _hoisted_2$c = { class: "notice-banner-text" };
4590
+ const _hoisted_3$a = ["onClick"];
4531
4591
  var script$e = /* @__PURE__ */ defineComponent({
4532
4592
  __name: "NoticeBanner",
4533
4593
  props: {
@@ -4659,20 +4719,10 @@ var script$e = /* @__PURE__ */ defineComponent({
4659
4719
  onClose: ($event) => unref(onClose)(item, key)
4660
4720
  }, {
4661
4721
  default: withCtx(() => [
4662
- _cache[1] || (_cache[1] = createElementVNode(
4663
- "img",
4664
- {
4665
- class: "notice-banner-icon",
4666
- src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4667
- alt: ""
4668
- },
4669
- null,
4670
- -1
4671
- /* HOISTED */
4672
- )),
4722
+ _hoisted_1$e,
4673
4723
  createElementVNode(
4674
4724
  "div",
4675
- _hoisted_1$d,
4725
+ _hoisted_2$c,
4676
4726
  toDisplayString(item.context),
4677
4727
  1
4678
4728
  /* TEXT */
@@ -4680,7 +4730,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4680
4730
  createElementVNode("div", {
4681
4731
  class: "notice-banner-btn",
4682
4732
  onClick: ($event) => onDetail(item)
4683
- }, "\u8BE6\u60C5", 8, _hoisted_2$9)
4733
+ }, "\u8BE6\u60C5", 8, _hoisted_3$a)
4684
4734
  ]),
4685
4735
  _: 2
4686
4736
  /* DYNAMIC */
@@ -4718,8 +4768,26 @@ var script$e = /* @__PURE__ */ defineComponent({
4718
4768
 
4719
4769
  script$e.__file = "src/notice/components/NoticeBanner.vue";
4720
4770
 
4721
- const _hoisted_1$c = { class: "notice-entry" };
4722
- const _hoisted_2$8 = {
4771
+ const _hoisted_1$d = { class: "notice-entry" };
4772
+ const _hoisted_2$b = /* @__PURE__ */ createElementVNode(
4773
+ "img",
4774
+ {
4775
+ class: "notice-entry-img",
4776
+ src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4777
+ alt: ""
4778
+ },
4779
+ null,
4780
+ -1
4781
+ /* HOISTED */
4782
+ );
4783
+ const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
4784
+ "span",
4785
+ null,
4786
+ "\u901A\u77E5",
4787
+ -1
4788
+ /* HOISTED */
4789
+ );
4790
+ const _hoisted_4$8 = {
4723
4791
  key: 0,
4724
4792
  class: "notice-entry-icon"
4725
4793
  };
@@ -4759,26 +4827,10 @@ var script$d = /* @__PURE__ */ defineComponent({
4759
4827
  });
4760
4828
  }
4761
4829
  return (_ctx, _cache) => {
4762
- return openBlock(), createElementBlock("div", _hoisted_1$c, [
4763
- _cache[0] || (_cache[0] = createElementVNode(
4764
- "img",
4765
- {
4766
- class: "notice-entry-img",
4767
- src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4768
- alt: ""
4769
- },
4770
- null,
4771
- -1
4772
- /* HOISTED */
4773
- )),
4774
- _cache[1] || (_cache[1] = createElementVNode(
4775
- "span",
4776
- null,
4777
- "\u901A\u77E5",
4778
- -1
4779
- /* HOISTED */
4780
- )),
4781
- noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
4830
+ return openBlock(), createElementBlock("div", _hoisted_1$d, [
4831
+ _hoisted_2$b,
4832
+ _hoisted_3$9,
4833
+ noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_4$8)) : createCommentVNode("v-if", true)
4782
4834
  ]);
4783
4835
  };
4784
4836
  }
@@ -4786,9 +4838,34 @@ var script$d = /* @__PURE__ */ defineComponent({
4786
4838
 
4787
4839
  script$d.__file = "src/notice/components/NoticeEntry.vue";
4788
4840
 
4789
- const _hoisted_1$b = { class: "dd-search__form" };
4790
- const _hoisted_2$7 = { class: "dd-search__control" };
4791
- const _hoisted_3$6 = ["disabled", "placeholder", "focus"];
4841
+ const _hoisted_1$c = { class: "dd-search__form" };
4842
+ const _hoisted_2$a = /* @__PURE__ */ createElementVNode(
4843
+ "div",
4844
+ { class: "dd-search__prefix" },
4845
+ [
4846
+ /* @__PURE__ */ createElementVNode("image", {
4847
+ class: "full-img",
4848
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4849
+ })
4850
+ ],
4851
+ -1
4852
+ /* HOISTED */
4853
+ );
4854
+ const _hoisted_3$8 = { class: "dd-search__control" };
4855
+ const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
4856
+ const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
4857
+ "image",
4858
+ {
4859
+ class: "full-img",
4860
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4861
+ },
4862
+ null,
4863
+ -1
4864
+ /* HOISTED */
4865
+ );
4866
+ const _hoisted_6$5 = [
4867
+ _hoisted_5$7
4868
+ ];
4792
4869
  var script$c = /* @__PURE__ */ defineComponent({
4793
4870
  __name: "index",
4794
4871
  props: {
@@ -4842,20 +4919,9 @@ var script$c = /* @__PURE__ */ defineComponent({
4842
4919
  }])
4843
4920
  },
4844
4921
  [
4845
- createElementVNode("div", _hoisted_1$b, [
4846
- _cache[2] || (_cache[2] = createElementVNode(
4847
- "div",
4848
- { class: "dd-search__prefix" },
4849
- [
4850
- createElementVNode("image", {
4851
- class: "full-img",
4852
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4853
- })
4854
- ],
4855
- -1
4856
- /* HOISTED */
4857
- )),
4858
- createElementVNode("div", _hoisted_2$7, [
4922
+ createElementVNode("div", _hoisted_1$c, [
4923
+ _hoisted_2$a,
4924
+ createElementVNode("div", _hoisted_3$8, [
4859
4925
  withDirectives(createElementVNode("input", {
4860
4926
  class: "dd-search__input",
4861
4927
  type: "text",
@@ -4869,7 +4935,7 @@ var script$c = /* @__PURE__ */ defineComponent({
4869
4935
  onConfirm,
4870
4936
  onFocus: onFoucs,
4871
4937
  onBlur
4872
- }, null, 40, _hoisted_3$6), [
4938
+ }, null, 40, _hoisted_4$7), [
4873
4939
  [vModelText, key.value]
4874
4940
  ])
4875
4941
  ]),
@@ -4879,18 +4945,7 @@ var script$c = /* @__PURE__ */ defineComponent({
4879
4945
  class: "dd-search__suffix",
4880
4946
  onTap: onClear
4881
4947
  },
4882
- _cache[1] || (_cache[1] = [
4883
- createElementVNode(
4884
- "image",
4885
- {
4886
- class: "full-img",
4887
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4888
- },
4889
- null,
4890
- -1
4891
- /* HOISTED */
4892
- )
4893
- ]),
4948
+ [..._hoisted_6$5],
4894
4949
  544
4895
4950
  /* NEED_HYDRATION, NEED_PATCH */
4896
4951
  ), [
@@ -4971,28 +5026,59 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
4971
5026
  };
4972
5027
  }
4973
5028
 
4974
- const _hoisted_1$a = { class: "notice-list" };
4975
- const _hoisted_2$6 = { style: { "flex": "1", "overflow": "hidden" } };
4976
- const _hoisted_3$5 = {
5029
+ const _hoisted_1$b = { class: "notice-list" };
5030
+ const _hoisted_2$9 = { style: { "flex": "1", "overflow": "hidden" } };
5031
+ const _hoisted_3$7 = {
4977
5032
  key: 0,
4978
5033
  class: "wrapper"
4979
5034
  };
4980
- const _hoisted_4$4 = ["onClick"];
4981
- const _hoisted_5$3 = { class: "time" };
4982
- const _hoisted_6$2 = {
5035
+ const _hoisted_4$6 = ["onClick"];
5036
+ const _hoisted_5$6 = /* @__PURE__ */ createElementVNode(
5037
+ "div",
5038
+ { class: "point" },
5039
+ null,
5040
+ -1
5041
+ /* HOISTED */
5042
+ );
5043
+ const _hoisted_6$4 = { class: "time" };
5044
+ const _hoisted_7$3 = {
4983
5045
  key: 0,
4984
5046
  class: "notice-list-label"
4985
5047
  };
4986
- const _hoisted_7$2 = ["onClick"];
4987
- const _hoisted_8$2 = {
5048
+ const _hoisted_8$2 = ["onClick"];
5049
+ const _hoisted_9$2 = {
4988
5050
  key: 0,
4989
5051
  class: "cue-text",
4990
5052
  style: { "padding-bottom": "40px" }
4991
5053
  };
4992
- const _hoisted_9$1 = {
5054
+ const _hoisted_10$2 = {
4993
5055
  key: 1,
4994
5056
  class: "no-data"
4995
5057
  };
5058
+ const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
5059
+ "div",
5060
+ { class: "no-data-img" },
5061
+ [
5062
+ /* @__PURE__ */ createElementVNode("img", {
5063
+ style: { "width": "100%", "height": "100%" },
5064
+ src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
5065
+ alt: ""
5066
+ })
5067
+ ],
5068
+ -1
5069
+ /* HOISTED */
5070
+ );
5071
+ const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
5072
+ "div",
5073
+ { class: "text" },
5074
+ "\u6682\u65E0\u8BB0\u5F55",
5075
+ -1
5076
+ /* HOISTED */
5077
+ );
5078
+ const _hoisted_13$2 = [
5079
+ _hoisted_11$2,
5080
+ _hoisted_12$2
5081
+ ];
4996
5082
  var script$b = /* @__PURE__ */ defineComponent({
4997
5083
  __name: "NoticeList",
4998
5084
  props: {
@@ -5067,7 +5153,7 @@ var script$b = /* @__PURE__ */ defineComponent({
5067
5153
  return (_ctx, _cache) => {
5068
5154
  const _component_rich_text = resolveComponent("rich-text");
5069
5155
  const _component_scroll_view = resolveComponent("scroll-view");
5070
- return openBlock(), createElementBlock("div", _hoisted_1$a, [
5156
+ return openBlock(), createElementBlock("div", _hoisted_1$b, [
5071
5157
  createVNode(script$c, {
5072
5158
  bordered: false,
5073
5159
  focus: false,
@@ -5075,8 +5161,8 @@ var script$b = /* @__PURE__ */ defineComponent({
5075
5161
  placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
5076
5162
  onSearch
5077
5163
  }, null, 8, ["value"]),
5078
- createElementVNode("div", _hoisted_2$6, [
5079
- unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
5164
+ createElementVNode("div", _hoisted_2$9, [
5165
+ unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
5080
5166
  createVNode(_component_scroll_view, {
5081
5167
  class: "content",
5082
5168
  "scroll-y": true,
@@ -5097,17 +5183,11 @@ var script$b = /* @__PURE__ */ defineComponent({
5097
5183
  key: index,
5098
5184
  onClick: ($event) => notifyRead(item, index)
5099
5185
  }, [
5100
- _cache[0] || (_cache[0] = createElementVNode(
5101
- "div",
5102
- { class: "point" },
5103
- null,
5104
- -1
5105
- /* HOISTED */
5106
- )),
5186
+ _hoisted_5$6,
5107
5187
  createElementVNode("div", null, [
5108
5188
  createElementVNode(
5109
5189
  "div",
5110
- _hoisted_5$3,
5190
+ _hoisted_6$4,
5111
5191
  toDisplayString(formatMinutes(item.receiveTime)),
5112
5192
  1
5113
5193
  /* TEXT */
@@ -5127,7 +5207,7 @@ var script$b = /* @__PURE__ */ defineComponent({
5127
5207
  ),
5128
5208
  _ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
5129
5209
  "div",
5130
- _hoisted_6$2,
5210
+ _hoisted_7$3,
5131
5211
  toDisplayString(appMap[item.appCode]),
5132
5212
  1
5133
5213
  /* TEXT */
@@ -5150,44 +5230,23 @@ var script$b = /* @__PURE__ */ defineComponent({
5150
5230
  key: 0,
5151
5231
  class: "notice-list-file",
5152
5232
  onClick: ($event) => onNoticeView(item.link)
5153
- }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$2)) : createCommentVNode("v-if", true)
5233
+ }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_8$2)) : createCommentVNode("v-if", true)
5154
5234
  ],
5155
5235
  2
5156
5236
  /* CLASS */
5157
5237
  )
5158
5238
  ])
5159
- ], 10, _hoisted_4$4);
5239
+ ], 10, _hoisted_4$6);
5160
5240
  }),
5161
5241
  128
5162
5242
  /* KEYED_FRAGMENT */
5163
5243
  )),
5164
- unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_8$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5244
+ unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_9$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5165
5245
  ]),
5166
5246
  _: 1
5167
5247
  /* STABLE */
5168
5248
  }, 8, ["refresherTriggered", "onScrolltolower"])
5169
- ])) : (openBlock(), createElementBlock("div", _hoisted_9$1, _cache[1] || (_cache[1] = [
5170
- createElementVNode(
5171
- "div",
5172
- { class: "no-data-img" },
5173
- [
5174
- createElementVNode("img", {
5175
- style: { "width": "100%", "height": "100%" },
5176
- src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
5177
- alt: ""
5178
- })
5179
- ],
5180
- -1
5181
- /* HOISTED */
5182
- ),
5183
- createElementVNode(
5184
- "div",
5185
- { class: "text" },
5186
- "\u6682\u65E0\u8BB0\u5F55",
5187
- -1
5188
- /* HOISTED */
5189
- )
5190
- ])))
5249
+ ])) : (openBlock(), createElementBlock("div", _hoisted_10$2, [..._hoisted_13$2]))
5191
5250
  ])
5192
5251
  ]);
5193
5252
  };
@@ -5196,10 +5255,24 @@ var script$b = /* @__PURE__ */ defineComponent({
5196
5255
 
5197
5256
  script$b.__file = "src/notice/components/NoticeList.vue";
5198
5257
 
5199
- const _hoisted_1$9 = { class: "user-entry" };
5200
- const _hoisted_2$5 = { class: "user-entry-head" };
5201
- const _hoisted_3$4 = ["src"];
5202
- const _hoisted_4$3 = { class: "user-entry-bd" };
5258
+ const _hoisted_1$a = { class: "user-entry" };
5259
+ const _hoisted_2$8 = { class: "user-entry-head" };
5260
+ const _hoisted_3$6 = ["src"];
5261
+ const _hoisted_4$5 = { class: "user-entry-bd" };
5262
+ const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
5263
+ "span",
5264
+ { class: "user-entry-bd-arrow" },
5265
+ ">",
5266
+ -1
5267
+ /* HOISTED */
5268
+ );
5269
+ const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
5270
+ "span",
5271
+ { class: "user-entry-bd-arrow" },
5272
+ ">",
5273
+ -1
5274
+ /* HOISTED */
5275
+ );
5203
5276
  var script$a = /* @__PURE__ */ defineComponent({
5204
5277
  __name: "UserEntry",
5205
5278
  props: {
@@ -5222,8 +5295,8 @@ var script$a = /* @__PURE__ */ defineComponent({
5222
5295
  }
5223
5296
  const emits = __emit;
5224
5297
  return (_ctx, _cache) => {
5225
- return openBlock(), createElementBlock("div", _hoisted_1$9, [
5226
- createElementVNode("div", _hoisted_2$5, [
5298
+ return openBlock(), createElementBlock("div", _hoisted_1$a, [
5299
+ createElementVNode("div", _hoisted_2$8, [
5227
5300
  _ctx.avatar ? (openBlock(), createElementBlock("img", {
5228
5301
  key: 0,
5229
5302
  class: "user-entry-head-img",
@@ -5231,7 +5304,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5231
5304
  mode: "aspectFit",
5232
5305
  src: _ctx.avatar,
5233
5306
  alt: ""
5234
- }, null, 8, _hoisted_3$4)) : (openBlock(), createElementBlock("img", {
5307
+ }, null, 8, _hoisted_3$6)) : (openBlock(), createElementBlock("img", {
5235
5308
  key: 1,
5236
5309
  class: "user-entry-head-img",
5237
5310
  mode: "aspectFit",
@@ -5240,21 +5313,15 @@ var script$a = /* @__PURE__ */ defineComponent({
5240
5313
  alt: ""
5241
5314
  }))
5242
5315
  ]),
5243
- createElementVNode("div", _hoisted_4$3, [
5316
+ createElementVNode("div", _hoisted_4$5, [
5244
5317
  !_ctx.mobile ? (openBlock(), createElementBlock("div", {
5245
5318
  key: 0,
5246
5319
  class: "user-entry-bd-bigtxt",
5247
5320
  onClick: toLogin
5248
- }, _cache[0] || (_cache[0] = [
5321
+ }, [
5249
5322
  createTextVNode(" \u8BF7\u767B\u5F55 "),
5250
- createElementVNode(
5251
- "span",
5252
- { class: "user-entry-bd-arrow" },
5253
- ">",
5254
- -1
5255
- /* HOISTED */
5256
- )
5257
- ]))) : (openBlock(), createElementBlock(
5323
+ _hoisted_5$5
5324
+ ])) : (openBlock(), createElementBlock(
5258
5325
  Fragment,
5259
5326
  { key: 1 },
5260
5327
  [
@@ -5267,13 +5334,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5267
5334
  1
5268
5335
  /* TEXT */
5269
5336
  ),
5270
- _cache[1] || (_cache[1] = createElementVNode(
5271
- "span",
5272
- { class: "user-entry-bd-arrow" },
5273
- ">",
5274
- -1
5275
- /* HOISTED */
5276
- ))
5337
+ _hoisted_6$3
5277
5338
  ]),
5278
5339
  createElementVNode(
5279
5340
  "div",
@@ -5297,7 +5358,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5297
5358
 
5298
5359
  script$a.__file = "src/user/components/UserEntry.vue";
5299
5360
 
5300
- const _hoisted_1$8 = { class: "dd-skeleton" };
5361
+ const _hoisted_1$9 = { class: "dd-skeleton" };
5301
5362
  var script$9 = /* @__PURE__ */ defineComponent({
5302
5363
  __name: "index",
5303
5364
  props: {
@@ -5308,7 +5369,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
5308
5369
  setup(__props) {
5309
5370
  return (_ctx, _cache) => {
5310
5371
  const _component_nut_skeleton = Skeleton;
5311
- return openBlock(), createElementBlock("div", _hoisted_1$8, [
5372
+ return openBlock(), createElementBlock("div", _hoisted_1$9, [
5312
5373
  (openBlock(true), createElementBlock(
5313
5374
  Fragment,
5314
5375
  null,
@@ -5442,49 +5503,77 @@ function useHttp() {
5442
5503
  return $http;
5443
5504
  }
5444
5505
 
5445
- const _hoisted_1$7 = {
5506
+ const _hoisted_1$8 = {
5446
5507
  key: 1,
5447
5508
  class: "user-info-wrap"
5448
5509
  };
5449
- const _hoisted_2$4 = { class: "user-info-head" };
5450
- const _hoisted_3$3 = ["src"];
5451
- const _hoisted_4$2 = {
5510
+ const _hoisted_2$7 = /* @__PURE__ */ createElementVNode(
5511
+ "div",
5512
+ { class: "user-info-tit" },
5513
+ "\u8D26\u53F7\u4FE1\u606F",
5514
+ -1
5515
+ /* HOISTED */
5516
+ );
5517
+ const _hoisted_3$5 = { class: "user-info-head" };
5518
+ const _hoisted_4$4 = ["src"];
5519
+ const _hoisted_5$4 = {
5452
5520
  key: 1,
5453
5521
  class: "user-info-head-img",
5454
5522
  mode: "aspectFit",
5455
5523
  src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
5456
5524
  alt: ""
5457
5525
  };
5458
- const _hoisted_5$2 = { class: "user-info-team" };
5459
- const _hoisted_6$1 = { class: "user-info-team-item-avatar" };
5460
- const _hoisted_7$1 = ["src"];
5461
- const _hoisted_8$1 = {
5526
+ const _hoisted_6$2 = /* @__PURE__ */ createElementVNode(
5527
+ "div",
5528
+ { class: "user-info-head-upload" },
5529
+ [
5530
+ /* @__PURE__ */ createElementVNode("img", {
5531
+ class: "user-info-head-upload-icon",
5532
+ mode: "aspectFit",
5533
+ src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5534
+ alt: ""
5535
+ })
5536
+ ],
5537
+ -1
5538
+ /* HOISTED */
5539
+ );
5540
+ const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
5541
+ "div",
5542
+ { class: "user-info-tit" },
5543
+ "\u4F01\u4E1A/\u56E2\u961F",
5544
+ -1
5545
+ /* HOISTED */
5546
+ );
5547
+ const _hoisted_8$1 = { class: "user-info-team" };
5548
+ const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
5549
+ const _hoisted_10$1 = ["src"];
5550
+ const _hoisted_11$1 = {
5462
5551
  key: 1,
5463
5552
  class: "user-info-team-item-avatar-img empty",
5464
5553
  mode: "aspectFit",
5465
5554
  src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
5466
5555
  alt: ""
5467
5556
  };
5468
- const _hoisted_9 = { class: "user-info-team-item-bd" };
5469
- const _hoisted_10 = { class: "user-info-team-item-title" };
5470
- const _hoisted_11 = {
5557
+ const _hoisted_12$1 = { class: "user-info-team-item-bd" };
5558
+ const _hoisted_13$1 = { class: "user-info-team-item-title" };
5559
+ const _hoisted_14$1 = {
5471
5560
  key: 0,
5472
5561
  class: "user-info-team-item-app"
5473
5562
  };
5474
- const _hoisted_12 = ["onClick"];
5475
- const _hoisted_13 = {
5563
+ const _hoisted_15$1 = ["onClick"];
5564
+ const _hoisted_16$1 = {
5476
5565
  key: 1,
5477
5566
  class: "user-info-team-item-role"
5478
5567
  };
5479
- const _hoisted_14 = { class: "user-info-team-item-role-item-name" };
5480
- const _hoisted_15 = { class: "user-info-team-item-role-item-info" };
5481
- const _hoisted_16 = { class: "user-info-team-item-user" };
5482
- const _hoisted_17 = ["onClick"];
5483
- const _hoisted_18 = { class: "user-info-team-item-dept" };
5484
- const _hoisted_19 = { class: "user-info-ft" };
5485
- const _hoisted_20 = { class: "upload-avatar-popup-box" };
5486
- const _hoisted_21 = ["src"];
5487
- const _hoisted_22 = {
5568
+ const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
5569
+ const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
5570
+ const _hoisted_19 = { class: "user-info-team-item-user" };
5571
+ const _hoisted_20 = ["onClick"];
5572
+ const _hoisted_21 = { class: "user-info-team-item-dept" };
5573
+ const _hoisted_22 = { class: "user-info-ft" };
5574
+ const _hoisted_23 = { class: "upload-avatar-popup-box" };
5575
+ const _hoisted_24 = ["src"];
5576
+ const _hoisted_25 = {
5488
5577
  key: 1,
5489
5578
  class: "upload-avatar-popup-avatar",
5490
5579
  mode: "aspectFit",
@@ -5662,15 +5751,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5662
5751
  firstLoading.value ? (openBlock(), createBlock(script$9, {
5663
5752
  key: 0,
5664
5753
  row: 3
5665
- })) : (openBlock(), createElementBlock("div", _hoisted_1$7, [
5666
- _cache[7] || (_cache[7] = createElementVNode(
5667
- "div",
5668
- { class: "user-info-tit" },
5669
- "\u8D26\u53F7\u4FE1\u606F",
5670
- -1
5671
- /* HOISTED */
5672
- )),
5673
- createElementVNode("div", _hoisted_2$4, [
5754
+ })) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
5755
+ _hoisted_2$7,
5756
+ createElementVNode("div", _hoisted_3$5, [
5674
5757
  createElementVNode("div", {
5675
5758
  class: "user-info-head-avatar",
5676
5759
  onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
@@ -5681,21 +5764,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
5681
5764
  mode: "aspectFit",
5682
5765
  src: userInfo.value.avatar,
5683
5766
  alt: ""
5684
- }, null, 8, _hoisted_3$3)) : (openBlock(), createElementBlock("img", _hoisted_4$2)),
5685
- _cache[4] || (_cache[4] = createElementVNode(
5686
- "div",
5687
- { class: "user-info-head-upload" },
5688
- [
5689
- createElementVNode("img", {
5690
- class: "user-info-head-upload-icon",
5691
- mode: "aspectFit",
5692
- src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5693
- alt: ""
5694
- })
5695
- ],
5696
- -1
5697
- /* HOISTED */
5698
- ))
5767
+ }, null, 8, _hoisted_4$4)) : (openBlock(), createElementBlock("img", _hoisted_5$4)),
5768
+ _hoisted_6$2
5699
5769
  ]),
5700
5770
  createVNode(_component_nut_cell, {
5701
5771
  title: "\u767B\u5F55\u624B\u673A\u53F7",
@@ -5704,14 +5774,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
5704
5774
  onClick: toBinding
5705
5775
  }, null, 8, ["desc"])
5706
5776
  ]),
5707
- _cache[8] || (_cache[8] = createElementVNode(
5708
- "div",
5709
- { class: "user-info-tit" },
5710
- "\u4F01\u4E1A/\u56E2\u961F",
5711
- -1
5712
- /* HOISTED */
5713
- )),
5714
- createElementVNode("div", _hoisted_5$2, [
5777
+ _hoisted_7$2,
5778
+ createElementVNode("div", _hoisted_8$1, [
5715
5779
  (openBlock(true), createElementBlock(
5716
5780
  Fragment,
5717
5781
  null,
@@ -5720,24 +5784,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
5720
5784
  key,
5721
5785
  class: "user-info-team-item"
5722
5786
  }, [
5723
- createElementVNode("div", _hoisted_6$1, [
5787
+ createElementVNode("div", _hoisted_9$1, [
5724
5788
  item.tenantLogo ? (openBlock(), createElementBlock("img", {
5725
5789
  key: 0,
5726
5790
  class: "user-info-team-item-avatar-img",
5727
5791
  mode: "aspectFit",
5728
5792
  src: item.tenantLogo,
5729
5793
  alt: ""
5730
- }, null, 8, _hoisted_7$1)) : (openBlock(), createElementBlock("img", _hoisted_8$1))
5794
+ }, null, 8, _hoisted_10$1)) : (openBlock(), createElementBlock("img", _hoisted_11$1))
5731
5795
  ]),
5732
- createElementVNode("div", _hoisted_9, [
5796
+ createElementVNode("div", _hoisted_12$1, [
5733
5797
  createElementVNode(
5734
5798
  "div",
5735
- _hoisted_10,
5799
+ _hoisted_13$1,
5736
5800
  toDisplayString(item.tenantName),
5737
5801
  1
5738
5802
  /* TEXT */
5739
5803
  ),
5740
- item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_11, [
5804
+ item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
5741
5805
  (openBlock(true), createElementBlock(
5742
5806
  Fragment,
5743
5807
  null,
@@ -5760,7 +5824,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5760
5824
  class: "user-info-team-item-role-btn",
5761
5825
  onClick: ($event) => toShowRole(item)
5762
5826
  }, [
5763
- _cache[5] || (_cache[5] = createTextVNode(" \u89D2\u8272\u8BE6\u60C5 ")),
5827
+ createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
5764
5828
  createElementVNode(
5765
5829
  "img",
5766
5830
  {
@@ -5772,9 +5836,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5772
5836
  2
5773
5837
  /* CLASS */
5774
5838
  )
5775
- ], 8, _hoisted_12)
5839
+ ], 8, _hoisted_15$1)
5776
5840
  ])) : createCommentVNode("v-if", true),
5777
- item.showRole ? (openBlock(), createElementBlock("div", _hoisted_13, [
5841
+ item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16$1, [
5778
5842
  (openBlock(true), createElementBlock(
5779
5843
  Fragment,
5780
5844
  null,
@@ -5785,14 +5849,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5785
5849
  }, [
5786
5850
  createElementVNode(
5787
5851
  "div",
5788
- _hoisted_14,
5852
+ _hoisted_17,
5789
5853
  toDisplayString(aitem.appAbbr),
5790
5854
  1
5791
5855
  /* TEXT */
5792
5856
  ),
5793
5857
  createElementVNode(
5794
5858
  "div",
5795
- _hoisted_15,
5859
+ _hoisted_18,
5796
5860
  toDisplayString(aitem.roleName),
5797
5861
  1
5798
5862
  /* TEXT */
@@ -5803,7 +5867,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5803
5867
  /* KEYED_FRAGMENT */
5804
5868
  ))
5805
5869
  ])) : createCommentVNode("v-if", true),
5806
- createElementVNode("div", _hoisted_16, [
5870
+ createElementVNode("div", _hoisted_19, [
5807
5871
  createTextVNode(
5808
5872
  toDisplayString(item.fullName) + " ",
5809
5873
  1
@@ -5814,9 +5878,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5814
5878
  class: "user-info-team-item-user-icon",
5815
5879
  src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
5816
5880
  alt: ""
5817
- }, null, 8, _hoisted_17)
5881
+ }, null, 8, _hoisted_20)
5818
5882
  ]),
5819
- createElementVNode("div", _hoisted_18, [
5883
+ createElementVNode("div", _hoisted_21, [
5820
5884
  (openBlock(true), createElementBlock(
5821
5885
  Fragment,
5822
5886
  null,
@@ -5843,7 +5907,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5843
5907
  /* KEYED_FRAGMENT */
5844
5908
  ))
5845
5909
  ]),
5846
- createElementVNode("div", _hoisted_19, [
5910
+ createElementVNode("div", _hoisted_22, [
5847
5911
  createVNode(_component_nut_button, {
5848
5912
  class: "user-info-ft-btn",
5849
5913
  style: { "width": "100%" },
@@ -5851,9 +5915,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5851
5915
  plain: "",
5852
5916
  type: "primary"
5853
5917
  }, {
5854
- default: withCtx(() => _cache[6] || (_cache[6] = [
5918
+ default: withCtx(() => [
5855
5919
  createTextVNode("\u9000\u51FA\u767B\u5F55")
5856
- ])),
5920
+ ]),
5857
5921
  _: 1
5858
5922
  /* STABLE */
5859
5923
  })
@@ -5878,9 +5942,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5878
5942
  type: "default",
5879
5943
  onClick: onUserNameCancel
5880
5944
  }, {
5881
- default: withCtx(() => _cache[9] || (_cache[9] = [
5945
+ default: withCtx(() => [
5882
5946
  createTextVNode(" \u53D6\u6D88 ")
5883
- ])),
5947
+ ]),
5884
5948
  _: 1
5885
5949
  /* STABLE */
5886
5950
  }),
@@ -5889,9 +5953,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5889
5953
  type: "primary",
5890
5954
  onClick: onUserNameOk
5891
5955
  }, {
5892
- default: withCtx(() => _cache[10] || (_cache[10] = [
5956
+ default: withCtx(() => [
5893
5957
  createTextVNode(" \u786E\u5B9A ")
5894
- ])),
5958
+ ]),
5895
5959
  _: 1
5896
5960
  /* STABLE */
5897
5961
  })
@@ -5916,14 +5980,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5916
5980
  "overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
5917
5981
  }, {
5918
5982
  default: withCtx(() => [
5919
- createElementVNode("div", _hoisted_20, [
5983
+ createElementVNode("div", _hoisted_23, [
5920
5984
  userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
5921
5985
  key: 0,
5922
5986
  class: "upload-avatar-popup-avatar",
5923
5987
  mode: "aspectFit",
5924
5988
  src: userInfo.value.avatar,
5925
5989
  alt: ""
5926
- }, null, 8, _hoisted_21)) : (openBlock(), createElementBlock("img", _hoisted_22)),
5990
+ }, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
5927
5991
  createElementVNode("div", {
5928
5992
  class: "upload-avatar-popup-btn",
5929
5993
  onClick: toUpload
@@ -5943,15 +6007,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
5943
6007
 
5944
6008
  script$8.__file = "src/user/components/UserInfo.vue";
5945
6009
 
5946
- const _hoisted_1$6 = { class: "user-binding" };
5947
- const _hoisted_2$3 = { class: "user-binding-layout" };
5948
- const _hoisted_3$2 = ["src"];
5949
- const _hoisted_4$1 = {
6010
+ const _hoisted_1$7 = { class: "user-binding" };
6011
+ const _hoisted_2$6 = { class: "user-binding-layout" };
6012
+ const _hoisted_3$4 = ["src"];
6013
+ const _hoisted_4$3 = {
5950
6014
  key: 0,
5951
6015
  class: "user-binding-layout user-binding-inputlayout",
5952
6016
  style: { "flex": "1" }
5953
6017
  };
5954
- const _hoisted_5$1 = {
6018
+ const _hoisted_5$3 = {
5955
6019
  key: 1,
5956
6020
  class: "user-binding-layout user-binding-inputlayout",
5957
6021
  style: { "flex": "1" }
@@ -6038,28 +6102,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
6038
6102
  const _component_nut_form_item = FormItem;
6039
6103
  const _component_nut_button = Button;
6040
6104
  const _component_nut_form = Form;
6041
- return openBlock(), createElementBlock("div", _hoisted_1$6, [
6042
- createElementVNode("div", _hoisted_2$3, [
6105
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
6106
+ createElementVNode("div", _hoisted_2$6, [
6043
6107
  createElementVNode("img", {
6044
6108
  class: "user-binding-img",
6045
6109
  src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
6046
- }, null, 8, _hoisted_3$2),
6110
+ }, null, 8, _hoisted_3$4),
6047
6111
  createVNode(_component_nut_steps, {
6048
6112
  current: current.value,
6049
6113
  class: "user-binding-steps"
6050
6114
  }, {
6051
6115
  default: withCtx(() => [
6052
6116
  createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
6053
- default: withCtx(() => _cache[4] || (_cache[4] = [
6117
+ default: withCtx(() => [
6054
6118
  createTextVNode("1")
6055
- ])),
6119
+ ]),
6056
6120
  _: 1
6057
6121
  /* STABLE */
6058
6122
  }),
6059
6123
  createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
6060
- default: withCtx(() => _cache[5] || (_cache[5] = [
6124
+ default: withCtx(() => [
6061
6125
  createTextVNode("2")
6062
- ])),
6126
+ ]),
6063
6127
  _: 1
6064
6128
  /* STABLE */
6065
6129
  })
@@ -6068,7 +6132,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
6068
6132
  /* STABLE */
6069
6133
  }, 8, ["current"])
6070
6134
  ]),
6071
- current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
6135
+ current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
6072
6136
  createVNode(_component_nut_form, null, {
6073
6137
  default: withCtx(() => [
6074
6138
  createVNode(_component_nut_form_item, {
@@ -6136,13 +6200,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
6136
6200
  type: "primary",
6137
6201
  onClick: onAuth
6138
6202
  }, {
6139
- default: withCtx(() => _cache[6] || (_cache[6] = [
6203
+ default: withCtx(() => [
6140
6204
  createTextVNode("\u63D0\u4EA4")
6141
- ])),
6205
+ ]),
6142
6206
  _: 1
6143
6207
  /* STABLE */
6144
6208
  }, 8, ["disabled"])
6145
- ])) : (openBlock(), createElementBlock("div", _hoisted_5$1, [
6209
+ ])) : (openBlock(), createElementBlock("div", _hoisted_5$3, [
6146
6210
  createVNode(_component_nut_form, null, {
6147
6211
  default: withCtx(() => [
6148
6212
  createVNode(_component_nut_form_item, {
@@ -6209,9 +6273,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
6209
6273
  type: "primary",
6210
6274
  onClick: onBinding
6211
6275
  }, {
6212
- default: withCtx(() => _cache[7] || (_cache[7] = [
6276
+ default: withCtx(() => [
6213
6277
  createTextVNode("\u63D0\u4EA4")
6214
- ])),
6278
+ ]),
6215
6279
  _: 1
6216
6280
  /* STABLE */
6217
6281
  }, 8, ["disabled"])
@@ -6223,8 +6287,19 @@ var script$7 = /* @__PURE__ */ defineComponent({
6223
6287
 
6224
6288
  script$7.__file = "src/user/components/UserBinding.vue";
6225
6289
 
6226
- const _hoisted_1$5 = { class: "user-binding-success" };
6227
- const _hoisted_2$2 = { class: "user-binding-success-info" };
6290
+ const _hoisted_1$6 = { class: "user-binding-success" };
6291
+ const _hoisted_2$5 = /* @__PURE__ */ createElementVNode(
6292
+ "img",
6293
+ {
6294
+ class: "user-binding-success-icon",
6295
+ src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6296
+ alt: ""
6297
+ },
6298
+ null,
6299
+ -1
6300
+ /* HOISTED */
6301
+ );
6302
+ const _hoisted_3$3 = { class: "user-binding-success-info" };
6228
6303
  var script$6 = /* @__PURE__ */ defineComponent({
6229
6304
  __name: "UserBindingSuccess",
6230
6305
  emits: ["binding"],
@@ -6243,21 +6318,11 @@ var script$6 = /* @__PURE__ */ defineComponent({
6243
6318
  const emits = __emit;
6244
6319
  return (_ctx, _cache) => {
6245
6320
  const _component_nut_button = Button;
6246
- return openBlock(), createElementBlock("div", _hoisted_1$5, [
6247
- _cache[2] || (_cache[2] = createElementVNode(
6248
- "img",
6249
- {
6250
- class: "user-binding-success-icon",
6251
- src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6252
- alt: ""
6253
- },
6254
- null,
6255
- -1
6256
- /* HOISTED */
6257
- )),
6321
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
6322
+ _hoisted_2$5,
6258
6323
  createElementVNode(
6259
6324
  "div",
6260
- _hoisted_2$2,
6325
+ _hoisted_3$3,
6261
6326
  toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
6262
6327
  1
6263
6328
  /* TEXT */
@@ -6277,9 +6342,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
6277
6342
  type: "primary",
6278
6343
  onClick: toBinding
6279
6344
  }, {
6280
- default: withCtx(() => _cache[1] || (_cache[1] = [
6345
+ default: withCtx(() => [
6281
6346
  createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
6282
- ])),
6347
+ ]),
6283
6348
  _: 1
6284
6349
  /* STABLE */
6285
6350
  })
@@ -6897,11 +6962,39 @@ var script$5 = {
6897
6962
  }
6898
6963
  };
6899
6964
 
6900
- const _hoisted_1$4 = { class: "bt-container" };
6901
- const _hoisted_2$1 = ["src"];
6902
- const _hoisted_3$1 = { class: "slot" };
6965
+ const _hoisted_1$5 = { class: "bt-container" };
6966
+ const _hoisted_2$4 = ["src"];
6967
+ const _hoisted_3$2 = /* @__PURE__ */ createElementVNode(
6968
+ "view",
6969
+ { class: "line row row1" },
6970
+ null,
6971
+ -1
6972
+ /* HOISTED */
6973
+ );
6974
+ const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
6975
+ "view",
6976
+ { class: "line row row2" },
6977
+ null,
6978
+ -1
6979
+ /* HOISTED */
6980
+ );
6981
+ const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
6982
+ "view",
6983
+ { class: "line col col1" },
6984
+ null,
6985
+ -1
6986
+ /* HOISTED */
6987
+ );
6988
+ const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
6989
+ "view",
6990
+ { class: "line col col2" },
6991
+ null,
6992
+ -1
6993
+ /* HOISTED */
6994
+ );
6995
+ const _hoisted_7$1 = { class: "slot" };
6903
6996
  function render(_ctx, _cache, $props, $setup, $data, $options) {
6904
- return openBlock(), createElementBlock("view", _hoisted_1$4, [
6997
+ return openBlock(), createElementBlock("view", _hoisted_1$5, [
6905
6998
  createElementVNode("view", {
6906
6999
  class: "iconfont icon-replay",
6907
7000
  onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
@@ -6921,7 +7014,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6921
7014
  onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
6922
7015
  style: normalizeStyle([$options.imageStyle]),
6923
7016
  class: "image"
6924
- }, null, 44, _hoisted_2$1),
7017
+ }, null, 44, _hoisted_2$4),
6925
7018
  $props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
6926
7019
  "view",
6927
7020
  {
@@ -6940,34 +7033,10 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6940
7033
  Fragment,
6941
7034
  { key: 0 },
6942
7035
  [
6943
- _cache[12] || (_cache[12] = createElementVNode(
6944
- "view",
6945
- { class: "line row row1" },
6946
- null,
6947
- -1
6948
- /* HOISTED */
6949
- )),
6950
- _cache[13] || (_cache[13] = createElementVNode(
6951
- "view",
6952
- { class: "line row row2" },
6953
- null,
6954
- -1
6955
- /* HOISTED */
6956
- )),
6957
- _cache[14] || (_cache[14] = createElementVNode(
6958
- "view",
6959
- { class: "line col col1" },
6960
- null,
6961
- -1
6962
- /* HOISTED */
6963
- )),
6964
- _cache[15] || (_cache[15] = createElementVNode(
6965
- "view",
6966
- { class: "line col col2" },
6967
- null,
6968
- -1
6969
- /* HOISTED */
6970
- ))
7036
+ _hoisted_3$2,
7037
+ _hoisted_4$2,
7038
+ _hoisted_5$2,
7039
+ _hoisted_6$1
6971
7040
  ],
6972
7041
  64
6973
7042
  /* STABLE_FRAGMENT */
@@ -7076,7 +7145,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
7076
7145
  32
7077
7146
  /* NEED_HYDRATION */
7078
7147
  ),
7079
- createElementVNode("view", _hoisted_3$1, [
7148
+ createElementVNode("view", _hoisted_7$1, [
7080
7149
  renderSlot(_ctx.$slots, "default")
7081
7150
  ]),
7082
7151
  $options.isWeapp ? (openBlock(), createElementBlock(
@@ -7115,7 +7184,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
7115
7184
  script$5.render = render;
7116
7185
  script$5.__file = "src/components/bt-cropper/index.vue";
7117
7186
 
7118
- const _hoisted_1$3 = { class: "user-head-crop" };
7187
+ const _hoisted_1$4 = { class: "user-head-crop" };
7119
7188
  var script$4 = /* @__PURE__ */ defineComponent({
7120
7189
  __name: "UserHeadCrop",
7121
7190
  setup(__props) {
@@ -7140,7 +7209,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
7140
7209
  }
7141
7210
  }
7142
7211
  return (_ctx, _cache) => {
7143
- return openBlock(), createElementBlock("div", _hoisted_1$3, [
7212
+ return openBlock(), createElementBlock("div", _hoisted_1$4, [
7144
7213
  createVNode(script$5, {
7145
7214
  ref_key: "cropperRef",
7146
7215
  ref: cropperRef,
@@ -7169,20 +7238,84 @@ var script$4 = /* @__PURE__ */ defineComponent({
7169
7238
 
7170
7239
  script$4.__file = "src/user/components/UserHeadCrop.vue";
7171
7240
 
7172
- const _hoisted_1$2 = {
7241
+ const _hoisted_1$3 = {
7173
7242
  key: 0,
7174
7243
  class: "user-feedback-wrap"
7175
7244
  };
7176
- const _hoisted_2 = { class: "user-feedback-body" };
7177
- const _hoisted_3 = { class: "user-feedback-handle" };
7178
- const _hoisted_4 = ["src"];
7179
- const _hoisted_5 = ["src"];
7180
- const _hoisted_6 = ["onClick"];
7181
- const _hoisted_7 = { class: "user-feedback-footer" };
7182
- const _hoisted_8 = {
7245
+ const _hoisted_2$3 = /* @__PURE__ */ createElementVNode(
7246
+ "img",
7247
+ {
7248
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7249
+ style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7250
+ },
7251
+ null,
7252
+ -1
7253
+ /* HOISTED */
7254
+ );
7255
+ const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
7256
+ "div",
7257
+ { class: "user-feedback-tit" },
7258
+ "\u8865\u5145\u63CF\u8FF0",
7259
+ -1
7260
+ /* HOISTED */
7261
+ );
7262
+ const _hoisted_4$1 = { class: "user-feedback-body" };
7263
+ const _hoisted_5$1 = { class: "user-feedback-handle" };
7264
+ const _hoisted_6 = ["src"];
7265
+ const _hoisted_7 = ["src"];
7266
+ const _hoisted_8 = ["onClick"];
7267
+ const _hoisted_9 = /* @__PURE__ */ createElementVNode(
7268
+ "img",
7269
+ {
7270
+ class: "user-feedback-handle-item-close-img",
7271
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7272
+ },
7273
+ null,
7274
+ -1
7275
+ /* HOISTED */
7276
+ );
7277
+ const _hoisted_10 = [
7278
+ _hoisted_9
7279
+ ];
7280
+ const _hoisted_11 = /* @__PURE__ */ createElementVNode(
7281
+ "img",
7282
+ {
7283
+ class: "user-feedback-handle-item-loading",
7284
+ mode: "aspectFit",
7285
+ src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7286
+ alt: ""
7287
+ },
7288
+ null,
7289
+ -1
7290
+ /* HOISTED */
7291
+ );
7292
+ const _hoisted_12 = { class: "user-feedback-footer" };
7293
+ const _hoisted_13 = {
7183
7294
  key: 1,
7184
7295
  class: "user-feedback-wrap"
7185
7296
  };
7297
+ const _hoisted_14 = /* @__PURE__ */ createElementVNode(
7298
+ "img",
7299
+ {
7300
+ class: "user-feedback-success-img",
7301
+ mode: "aspectFit",
7302
+ src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7303
+ },
7304
+ null,
7305
+ -1
7306
+ /* HOISTED */
7307
+ );
7308
+ const _hoisted_15 = /* @__PURE__ */ createElementVNode(
7309
+ "div",
7310
+ { class: "user-feedback-success-info" },
7311
+ "\u63D0\u4EA4\u6210\u529F",
7312
+ -1
7313
+ /* HOISTED */
7314
+ );
7315
+ const _hoisted_16 = [
7316
+ _hoisted_14,
7317
+ _hoisted_15
7318
+ ];
7186
7319
  var script$3 = /* @__PURE__ */ defineComponent({
7187
7320
  __name: "UserFeedback",
7188
7321
  props: {
@@ -7355,32 +7488,17 @@ var script$3 = /* @__PURE__ */ defineComponent({
7355
7488
  class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
7356
7489
  },
7357
7490
  [
7358
- !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
7359
- _cache[4] || (_cache[4] = createElementVNode(
7360
- "img",
7361
- {
7362
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7363
- style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7364
- },
7365
- null,
7366
- -1
7367
- /* HOISTED */
7368
- )),
7369
- _cache[5] || (_cache[5] = createElementVNode(
7370
- "div",
7371
- { class: "user-feedback-tit" },
7372
- "\u8865\u5145\u63CF\u8FF0",
7373
- -1
7374
- /* HOISTED */
7375
- )),
7376
- createElementVNode("div", _hoisted_2, [
7491
+ !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
7492
+ _hoisted_2$3,
7493
+ _hoisted_3$1,
7494
+ createElementVNode("div", _hoisted_4$1, [
7377
7495
  createVNode(_component_editor, {
7378
7496
  id: "myEditor",
7379
7497
  "show-img-resize": true,
7380
7498
  class: "user-feedback-editor",
7381
7499
  placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
7382
7500
  }),
7383
- createElementVNode("div", _hoisted_3, [
7501
+ createElementVNode("div", _hoisted_5$1, [
7384
7502
  (openBlock(true), createElementBlock(
7385
7503
  Fragment,
7386
7504
  null,
@@ -7398,42 +7516,20 @@ var script$3 = /* @__PURE__ */ defineComponent({
7398
7516
  class: "user-feedback-handle-item-img",
7399
7517
  mode: "aspectFit",
7400
7518
  src: item.url
7401
- }, null, 8, _hoisted_4)) : (openBlock(), createElementBlock("video", {
7519
+ }, null, 8, _hoisted_6)) : (openBlock(), createElementBlock("video", {
7402
7520
  key: 1,
7403
7521
  class: "user-feedback-handle-item-img",
7404
7522
  src: item.url
7405
- }, null, 8, _hoisted_5)),
7523
+ }, null, 8, _hoisted_7)),
7406
7524
  createElementVNode("div", {
7407
7525
  class: "user-feedback-handle-item-close",
7408
7526
  onClick: ($event) => onDelete(key)
7409
- }, [..._cache[0] || (_cache[0] = [
7410
- createElementVNode(
7411
- "img",
7412
- {
7413
- class: "user-feedback-handle-item-close-img",
7414
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7415
- },
7416
- null,
7417
- -1
7418
- /* HOISTED */
7419
- )
7420
- ])], 8, _hoisted_6)
7527
+ }, [..._hoisted_10], 8, _hoisted_8)
7421
7528
  ],
7422
7529
  64
7423
7530
  /* STABLE_FRAGMENT */
7424
7531
  )) : createCommentVNode("v-if", true),
7425
- _cache[1] || (_cache[1] = createElementVNode(
7426
- "img",
7427
- {
7428
- class: "user-feedback-handle-item-loading",
7429
- mode: "aspectFit",
7430
- src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7431
- alt: ""
7432
- },
7433
- null,
7434
- -1
7435
- /* HOISTED */
7436
- ))
7532
+ _hoisted_11
7437
7533
  ]);
7438
7534
  }),
7439
7535
  128
@@ -7445,16 +7541,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
7445
7541
  }, "+")
7446
7542
  ])
7447
7543
  ]),
7448
- createElementVNode("div", _hoisted_7, [
7544
+ createElementVNode("div", _hoisted_12, [
7449
7545
  createVNode(_component_nut_button, {
7450
7546
  class: "user-feedback-footer-btn",
7451
7547
  plain: "",
7452
7548
  type: "primary",
7453
7549
  onClick: onCancel
7454
7550
  }, {
7455
- default: withCtx(() => _cache[2] || (_cache[2] = [
7551
+ default: withCtx(() => [
7456
7552
  createTextVNode("\u6700\u5C0F\u5316")
7457
- ])),
7553
+ ]),
7458
7554
  _: 1
7459
7555
  /* STABLE */
7460
7556
  }),
@@ -7463,33 +7559,14 @@ var script$3 = /* @__PURE__ */ defineComponent({
7463
7559
  type: "primary",
7464
7560
  onClick: onOk
7465
7561
  }, {
7466
- default: withCtx(() => _cache[3] || (_cache[3] = [
7562
+ default: withCtx(() => [
7467
7563
  createTextVNode("\u53CD\u9988")
7468
- ])),
7564
+ ]),
7469
7565
  _: 1
7470
7566
  /* STABLE */
7471
7567
  })
7472
7568
  ])
7473
- ])) : (openBlock(), createElementBlock("div", _hoisted_8, _cache[6] || (_cache[6] = [
7474
- createElementVNode(
7475
- "img",
7476
- {
7477
- class: "user-feedback-success-img",
7478
- mode: "aspectFit",
7479
- src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7480
- },
7481
- null,
7482
- -1
7483
- /* HOISTED */
7484
- ),
7485
- createElementVNode(
7486
- "div",
7487
- { class: "user-feedback-success-info" },
7488
- "\u63D0\u4EA4\u6210\u529F",
7489
- -1
7490
- /* HOISTED */
7491
- )
7492
- ])))
7569
+ ])) : (openBlock(), createElementBlock("div", _hoisted_13, [..._hoisted_16]))
7493
7570
  ],
7494
7571
  2
7495
7572
  /* CLASS */
@@ -7583,6 +7660,41 @@ function useDragBox() {
7583
7660
  };
7584
7661
  }
7585
7662
 
7663
+ const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
7664
+ "img",
7665
+ {
7666
+ class: "user-feedback-entry-icon",
7667
+ mode: "aspectFit",
7668
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7669
+ },
7670
+ null,
7671
+ -1
7672
+ /* HOISTED */
7673
+ );
7674
+ const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
7675
+ "div",
7676
+ null,
7677
+ "\u53CD\u9988",
7678
+ -1
7679
+ /* HOISTED */
7680
+ );
7681
+ const _hoisted_3 = [
7682
+ _hoisted_1$2,
7683
+ _hoisted_2$2
7684
+ ];
7685
+ const _hoisted_4 = /* @__PURE__ */ createElementVNode(
7686
+ "img",
7687
+ {
7688
+ class: "user-feedback-entry-close-img",
7689
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7690
+ },
7691
+ null,
7692
+ -1
7693
+ /* HOISTED */
7694
+ );
7695
+ const _hoisted_5 = [
7696
+ _hoisted_4
7697
+ ];
7586
7698
  var script$2 = /* @__PURE__ */ defineComponent({
7587
7699
  __name: "UserFeedbackEntry",
7588
7700
  props: {
@@ -7670,26 +7782,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
7670
7782
  class: "user-feedback-entry",
7671
7783
  onClick: onJump
7672
7784
  },
7673
- _cache[2] || (_cache[2] = [
7674
- createElementVNode(
7675
- "img",
7676
- {
7677
- class: "user-feedback-entry-icon",
7678
- mode: "aspectFit",
7679
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7680
- },
7681
- null,
7682
- -1
7683
- /* HOISTED */
7684
- ),
7685
- createElementVNode(
7686
- "div",
7687
- null,
7688
- "\u53CD\u9988",
7689
- -1
7690
- /* HOISTED */
7691
- )
7692
- ]),
7785
+ [..._hoisted_3],
7693
7786
  36
7694
7787
  /* STYLE, NEED_HYDRATION */
7695
7788
  )) : (openBlock(), createElementBlock(
@@ -7713,18 +7806,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
7713
7806
  createElementVNode("div", {
7714
7807
  class: "user-feedback-entry-close",
7715
7808
  onClick: onClose
7716
- }, _cache[3] || (_cache[3] = [
7717
- createElementVNode(
7718
- "img",
7719
- {
7720
- class: "user-feedback-entry-close-img",
7721
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7722
- },
7723
- null,
7724
- -1
7725
- /* HOISTED */
7726
- )
7727
- ]))
7809
+ }, [..._hoisted_5])
7728
7810
  ],
7729
7811
  36
7730
7812
  /* STYLE, NEED_HYDRATION */
@@ -7735,7 +7817,17 @@ var script$2 = /* @__PURE__ */ defineComponent({
7735
7817
 
7736
7818
  script$2.__file = "src/user/components/UserFeedbackEntry.vue";
7737
7819
 
7738
- const _hoisted_1$1 = { class: "login-setting-text" };
7820
+ const _hoisted_1$1 = /* @__PURE__ */ createElementVNode(
7821
+ "img",
7822
+ {
7823
+ class: "login-setting-img",
7824
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7825
+ },
7826
+ null,
7827
+ -1
7828
+ /* HOISTED */
7829
+ );
7830
+ const _hoisted_2$1 = { class: "login-setting-text" };
7739
7831
  var script$1 = /* @__PURE__ */ defineComponent({
7740
7832
  __name: "LoginSetting",
7741
7833
  props: {
@@ -7796,19 +7888,10 @@ var script$1 = /* @__PURE__ */ defineComponent({
7796
7888
  style: normalizeStyle(style.value)
7797
7889
  },
7798
7890
  [
7799
- _cache[0] || (_cache[0] = createElementVNode(
7800
- "img",
7801
- {
7802
- class: "login-setting-img",
7803
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7804
- },
7805
- null,
7806
- -1
7807
- /* HOISTED */
7808
- )),
7891
+ _hoisted_1$1,
7809
7892
  createElementVNode(
7810
7893
  "div",
7811
- _hoisted_1$1,
7894
+ _hoisted_2$1,
7812
7895
  toDisplayString(loginRuleTip.value),
7813
7896
  1
7814
7897
  /* TEXT */
@@ -7823,7 +7906,17 @@ var script$1 = /* @__PURE__ */ defineComponent({
7823
7906
 
7824
7907
  script$1.__file = "src/user/components/LoginSetting.vue";
7825
7908
 
7826
- const _hoisted_1 = { class: "user-resource-empty-text" };
7909
+ const _hoisted_1 = /* @__PURE__ */ createElementVNode(
7910
+ "img",
7911
+ {
7912
+ class: "user-resource-empty-img",
7913
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7914
+ },
7915
+ null,
7916
+ -1
7917
+ /* HOISTED */
7918
+ );
7919
+ const _hoisted_2 = { class: "user-resource-empty-text" };
7827
7920
  var script = /* @__PURE__ */ defineComponent({
7828
7921
  __name: "UserResourceEmpty",
7829
7922
  props: {
@@ -7854,19 +7947,10 @@ var script = /* @__PURE__ */ defineComponent({
7854
7947
  style: normalizeStyle(style.value)
7855
7948
  },
7856
7949
  [
7857
- _cache[0] || (_cache[0] = createElementVNode(
7858
- "img",
7859
- {
7860
- class: "user-resource-empty-img",
7861
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7862
- },
7863
- null,
7864
- -1
7865
- /* HOISTED */
7866
- )),
7950
+ _hoisted_1,
7867
7951
  createElementVNode(
7868
7952
  "div",
7869
- _hoisted_1,
7953
+ _hoisted_2,
7870
7954
  " \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 ",
7871
7955
  1
7872
7956
  /* TEXT */
@@ -7906,6 +7990,7 @@ const $app = {
7906
7990
  },
7907
7991
  setTempToken: (token) => {
7908
7992
  const appKitOptions = useAppKitOptions();
7993
+ console.log("setTempToken: " + token);
7909
7994
  appKitOptions.tempToken = token;
7910
7995
  },
7911
7996
  requestPayment: (options) => {