@uxda/appkit 4.1.40 → 4.1.42

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 (117) 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 +121 -43
  5. package/dist/assets/asset-3B_CoPto +1 -0
  6. package/dist/index.js +399 -246
  7. package/package.json +77 -77
  8. package/project.config.json +15 -15
  9. package/project.tt.json +13 -13
  10. package/rollup.config.mjs +56 -56
  11. package/src/Appkit.ts +66 -66
  12. package/src/balance/api/endpoints.ts +133 -126
  13. package/src/balance/api/index.ts +106 -106
  14. package/src/balance/components/AccountView.vue +747 -749
  15. package/src/balance/components/BalanceCard.vue +213 -205
  16. package/src/balance/components/BalanceReminder.vue +85 -85
  17. package/src/balance/components/ConsumptionFilter.vue +218 -218
  18. package/src/balance/components/ConsumptionRules.vue +68 -68
  19. package/src/balance/components/DateFilter.vue +250 -251
  20. package/src/balance/components/DateRange.vue +80 -80
  21. package/src/balance/components/ListFilter.vue +63 -63
  22. package/src/balance/components/ListFilterPicker.vue +188 -186
  23. package/src/balance/components/PromoterCard.vue +183 -0
  24. package/src/balance/components/SecondBalance.vue +71 -71
  25. package/src/balance/components/Tip.vue +45 -45
  26. package/src/balance/components/index.ts +8 -13
  27. package/src/balance/types.ts +97 -91
  28. package/src/components/bt-cropper/index.vue +774 -774
  29. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  30. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  31. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  32. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  33. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  34. package/src/components/bt-cropper/utils/ratio.js +3 -3
  35. package/src/components/bt-cropper/utils/tools.js +25 -25
  36. package/src/components/dd-area/index.vue +225 -225
  37. package/src/components/dd-icon/doc.md +21 -21
  38. package/src/components/dd-icon/index.vue +23 -23
  39. package/src/components/dd-notice-bar/index.vue +78 -78
  40. package/src/components/dd-search/doc.md +34 -34
  41. package/src/components/dd-search/index.vue +168 -168
  42. package/src/components/dd-selector/index.vue +124 -124
  43. package/src/components/dd-skeleton/doc.md +19 -19
  44. package/src/components/dd-skeleton/index.vue +36 -36
  45. package/src/components/ocr-id/index.vue +114 -114
  46. package/src/components/ocr-id/types.d.ts +12 -12
  47. package/src/global.ts +6 -6
  48. package/src/index.ts +89 -89
  49. package/src/main.scss +1 -1
  50. package/src/notice/api/endpoints.ts +17 -17
  51. package/src/notice/api/index.ts +106 -106
  52. package/src/notice/components/NoticeBanner.vue +243 -243
  53. package/src/notice/components/NoticeEntry.vue +99 -99
  54. package/src/notice/components/NoticeList.vue +315 -315
  55. package/src/notice/components/NoticePopup.vue +162 -162
  56. package/src/notice/components/index.ts +5 -5
  57. package/src/notice/components/useCommonList.ts +86 -86
  58. package/src/notice/components/useNotice.ts +35 -35
  59. package/src/notice/index.ts +1 -1
  60. package/src/notice/types.ts +25 -25
  61. package/src/payment/api/config.ts +7 -7
  62. package/src/payment/api/endpoints.ts +103 -103
  63. package/src/payment/api/index.ts +100 -100
  64. package/src/payment/components/AmountPicker.vue +90 -93
  65. package/src/payment/components/RechargeResult.vue +69 -69
  66. package/src/payment/components/RechargeView.vue +154 -154
  67. package/src/payment/components/RightsPicker.vue +105 -105
  68. package/src/payment/components/TradeView.vue +294 -294
  69. package/src/payment/components/UserAgreement.vue +234 -234
  70. package/src/payment/components/index.ts +22 -22
  71. package/src/payment/index.ts +5 -5
  72. package/src/payment/services/index.ts +16 -16
  73. package/src/payment/services/invoke-recharge.ts +25 -25
  74. package/src/payment/services/request-payment.ts +58 -58
  75. package/src/payment/types.ts +28 -28
  76. package/src/register/components/SelfRegistration.vue +254 -254
  77. package/src/register/components/index.ts +2 -2
  78. package/src/shared/components/AppDrawer.vue +58 -54
  79. package/src/shared/components/AppVerify.vue +129 -126
  80. package/src/shared/components/DeviceVersion.vue +68 -68
  81. package/src/shared/components/EmptyView.vue +33 -33
  82. package/src/shared/components/OcrBusinessLicense.vue +133 -133
  83. package/src/shared/components/OcrIcon.vue +133 -133
  84. package/src/shared/components/PageHeader.vue +79 -79
  85. package/src/shared/components/index.ts +8 -8
  86. package/src/shared/composables/index.ts +8 -8
  87. package/src/shared/composables/useCountdown.ts +46 -46
  88. package/src/shared/composables/useCrypto.ts +76 -76
  89. package/src/shared/composables/useDragBox.ts +97 -97
  90. package/src/shared/composables/useEncode.ts +43 -43
  91. package/src/shared/composables/useLogger.ts +123 -123
  92. package/src/shared/composables/useSafeArea.ts +46 -46
  93. package/src/shared/composables/useTabbar.ts +24 -24
  94. package/src/shared/composables/useUpload.ts +54 -54
  95. package/src/shared/composables/useValidator.ts +31 -31
  96. package/src/shared/http/Http.ts +136 -136
  97. package/src/shared/http/index.ts +1 -1
  98. package/src/shared/http/types.ts +157 -157
  99. package/src/shared/index.ts +3 -3
  100. package/src/shared/weixin/payment.ts +38 -38
  101. package/src/styles/vars.scss +3 -3
  102. package/src/user/api/endpoints.ts +17 -17
  103. package/src/user/api/index.ts +111 -111
  104. package/src/user/components/LoginSetting.vue +114 -114
  105. package/src/user/components/UserBinding.vue +307 -307
  106. package/src/user/components/UserBindingSuccess.vue +80 -80
  107. package/src/user/components/UserEntry.vue +137 -137
  108. package/src/user/components/UserFeedback.vue +431 -431
  109. package/src/user/components/UserFeedbackEntry.vue +192 -192
  110. package/src/user/components/UserHeadCrop.vue +65 -65
  111. package/src/user/components/UserInfo.vue +637 -637
  112. package/src/user/components/UserResourceEmpty.vue +75 -75
  113. package/src/user/components/index.ts +21 -21
  114. package/src/user/index.ts +1 -1
  115. package/tsconfig.json +30 -30
  116. package/types/global.d.ts +21 -21
  117. package/types/vue.d.ts +10 -10
package/dist/index.js CHANGED
@@ -23,9 +23,9 @@ 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" };
28
- var script$I = /* @__PURE__ */ defineComponent({
26
+ const _hoisted_1$C = { class: "token-line number" };
27
+ const _hoisted_2$p = { class: "number" };
28
+ var script$J = /* @__PURE__ */ defineComponent({
29
29
  __name: "AmountPicker",
30
30
  props: {
31
31
  items: { type: Array, required: true, default: () => [] },
@@ -63,7 +63,7 @@ var script$I = /* @__PURE__ */ defineComponent({
63
63
  default: withCtx(() => [
64
64
  createElementVNode(
65
65
  "h4",
66
- _hoisted_1$B,
66
+ _hoisted_1$C,
67
67
  toDisplayString(amount.token),
68
68
  1
69
69
  /* TEXT */
@@ -72,7 +72,7 @@ var script$I = /* @__PURE__ */ defineComponent({
72
72
  _cache[0] || (_cache[0] = createTextVNode("\xA5")),
73
73
  createElementVNode(
74
74
  "span",
75
- _hoisted_2$o,
75
+ _hoisted_2$p,
76
76
  toDisplayString(amount.amount),
77
77
  1
78
78
  /* TEXT */
@@ -94,7 +94,7 @@ var script$I = /* @__PURE__ */ defineComponent({
94
94
  }
95
95
  });
96
96
 
97
- script$I.__file = "src/payment/components/AmountPicker.vue";
97
+ script$J.__file = "src/payment/components/AmountPicker.vue";
98
98
 
99
99
  function requestPayment$2(json) {
100
100
  return new Promise((resolve, reject) => {
@@ -423,11 +423,11 @@ function useLogger(options) {
423
423
  };
424
424
  }
425
425
 
426
- const _hoisted_1$A = {
426
+ const _hoisted_1$B = {
427
427
  key: 0,
428
428
  class: "page-title"
429
429
  };
430
- var script$H = /* @__PURE__ */ defineComponent({
430
+ var script$I = /* @__PURE__ */ defineComponent({
431
431
  __name: "PageHeader",
432
432
  props: {
433
433
  title: { type: String, required: false, default: "" },
@@ -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$B,
461
461
  toDisplayString(_ctx.title),
462
462
  1
463
463
  /* TEXT */
@@ -475,10 +475,10 @@ var script$H = /* @__PURE__ */ defineComponent({
475
475
  }
476
476
  });
477
477
 
478
- script$H.__file = "src/shared/components/PageHeader.vue";
478
+ script$I.__file = "src/shared/components/PageHeader.vue";
479
479
 
480
- const _hoisted_1$z = { class: "drawer-body" };
481
- var script$G = /* @__PURE__ */ defineComponent({
480
+ const _hoisted_1$A = { class: "drawer-body" };
481
+ var script$H = /* @__PURE__ */ defineComponent({
482
482
  __name: "AppDrawer",
483
483
  props: {
484
484
  modelValue: { type: Boolean, required: true },
@@ -502,11 +502,11 @@ var script$G = /* @__PURE__ */ defineComponent({
502
502
  "onUpdate:visible": onVisibleChange
503
503
  }, {
504
504
  default: withCtx(() => [
505
- createVNode(script$H, {
505
+ createVNode(script$I, {
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$A, [
510
510
  renderSlot(_ctx.$slots, "default")
511
511
  ])
512
512
  ]),
@@ -517,18 +517,18 @@ var script$G = /* @__PURE__ */ defineComponent({
517
517
  }
518
518
  });
519
519
 
520
- script$G.__file = "src/shared/components/AppDrawer.vue";
520
+ script$H.__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$z = { class: "app-verify column" };
523
+ const _hoisted_2$o = { class: "caption" };
524
+ const _hoisted_3$j = { class: "number" };
525
+ const _hoisted_4$f = { class: "form-btn" };
526
+ const _hoisted_5$b = {
527
527
  key: 1,
528
528
  class: "caption"
529
529
  };
530
- const _hoisted_6$5 = { class: "row buttons" };
531
- var script$F = /* @__PURE__ */ defineComponent({
530
+ const _hoisted_6$6 = { class: "row buttons" };
531
+ var script$G = /* @__PURE__ */ defineComponent({
532
532
  __name: "AppVerify",
533
533
  props: {
534
534
  phone: { type: String, required: true },
@@ -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$z, [
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$o,
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$j,
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$f, [
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$b,
617
617
  toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
618
618
  1
619
619
  /* TEXT */
@@ -623,7 +623,7 @@ 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$6, [
627
627
  createVNode(unref(NsButton), {
628
628
  class: "cancel-btn",
629
629
  onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
@@ -635,7 +635,7 @@ var script$F = /* @__PURE__ */ defineComponent({
635
635
  /* STABLE */
636
636
  }),
637
637
  createVNode(unref(NsButton), {
638
- gradient: "#FFEBC1,#FFD7A7,#FFB875/90",
638
+ color: "primary",
639
639
  onClick: onOk
640
640
  }, {
641
641
  default: withCtx(() => _cache[4] || (_cache[4] = [
@@ -650,10 +650,10 @@ var script$F = /* @__PURE__ */ defineComponent({
650
650
  }
651
651
  });
652
652
 
653
- script$F.__file = "src/shared/components/AppVerify.vue";
653
+ script$G.__file = "src/shared/components/AppVerify.vue";
654
654
 
655
- const _hoisted_1$x = { key: 0 };
656
- var script$E = /* @__PURE__ */ defineComponent({
655
+ const _hoisted_1$y = { key: 0 };
656
+ var script$F = /* @__PURE__ */ defineComponent({
657
657
  __name: "index",
658
658
  props: {
659
659
  text: { type: String, required: false },
@@ -684,7 +684,7 @@ var script$E = /* @__PURE__ */ defineComponent({
684
684
  }, [
685
685
  _ctx.text ? (openBlock(), createElementBlock(
686
686
  "span",
687
- _hoisted_1$x,
687
+ _hoisted_1$y,
688
688
  toDisplayString(_ctx.text),
689
689
  1
690
690
  /* TEXT */
@@ -715,7 +715,7 @@ var script$E = /* @__PURE__ */ defineComponent({
715
715
  }
716
716
  });
717
717
 
718
- script$E.__file = "src/components/dd-notice-bar/index.vue";
718
+ script$F.__file = "src/components/dd-notice-bar/index.vue";
719
719
 
720
720
  const typeMappings = {
721
721
  CZ: "\u5145\u503C",
@@ -807,6 +807,14 @@ const endpointsList$3 = {
807
807
  name: d.rightsName,
808
808
  code: d.rightsCode
809
809
  }))
810
+ },
811
+ \u83B7\u53D6\u63A8\u5E7F\u65B9\u8D26\u6237\u4FE1\u606F: {
812
+ path: "/promoact/app/promoter/getPromoterAccountInfo",
813
+ // /app
814
+ translate: (data) => data,
815
+ transform(result) {
816
+ return result;
817
+ }
810
818
  }
811
819
  };
812
820
  const endpoints$1 = Object.fromEntries(
@@ -903,7 +911,7 @@ function useHttp$3() {
903
911
  return $http;
904
912
  }
905
913
 
906
- var script$D = /* @__PURE__ */ defineComponent({
914
+ var script$E = /* @__PURE__ */ defineComponent({
907
915
  __name: "DeviceVersion",
908
916
  setup(__props) {
909
917
  const showAlert = ref(false);
@@ -942,7 +950,7 @@ var script$D = /* @__PURE__ */ defineComponent({
942
950
  }
943
951
  });
944
952
  return (_ctx, _cache) => {
945
- return showAlert.value ? (openBlock(), createBlock(script$E, {
953
+ return showAlert.value ? (openBlock(), createBlock(script$F, {
946
954
  key: 0,
947
955
  showClose: "",
948
956
  style: normalizeStyle(topStype.value),
@@ -953,9 +961,9 @@ var script$D = /* @__PURE__ */ defineComponent({
953
961
  }
954
962
  });
955
963
 
956
- script$D.__file = "src/shared/components/DeviceVersion.vue";
964
+ script$E.__file = "src/shared/components/DeviceVersion.vue";
957
965
 
958
- var script$C = /* @__PURE__ */ defineComponent({
966
+ var script$D = /* @__PURE__ */ defineComponent({
959
967
  __name: "OcrIcon",
960
968
  props: {
961
969
  disabled: { type: Boolean, required: true }
@@ -1066,9 +1074,9 @@ var script$C = /* @__PURE__ */ defineComponent({
1066
1074
  }
1067
1075
  });
1068
1076
 
1069
- script$C.__file = "src/shared/components/OcrIcon.vue";
1077
+ script$D.__file = "src/shared/components/OcrIcon.vue";
1070
1078
 
1071
- var script$B = /* @__PURE__ */ defineComponent({
1079
+ var script$C = /* @__PURE__ */ defineComponent({
1072
1080
  __name: "OcrBusinessLicense",
1073
1081
  props: {
1074
1082
  disabled: { type: Boolean, required: true }
@@ -1176,7 +1184,7 @@ var script$B = /* @__PURE__ */ defineComponent({
1176
1184
  }
1177
1185
  });
1178
1186
 
1179
- script$B.__file = "src/shared/components/OcrBusinessLicense.vue";
1187
+ script$C.__file = "src/shared/components/OcrBusinessLicense.vue";
1180
1188
 
1181
1189
  var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
1182
1190
  HttpMethod2["get"] = "GET";
@@ -1496,11 +1504,11 @@ const services$1 = [
1496
1504
  invokeRecharge$1
1497
1505
  ];
1498
1506
 
1499
- const _hoisted_1$w = { class: "view recharge-view" };
1500
- const _hoisted_2$m = { class: "flex-grow" };
1501
- const _hoisted_3$h = { class: "amount-footer" };
1502
- const _hoisted_4$d = { class: "agreement" };
1503
- var script$A = /* @__PURE__ */ defineComponent({
1507
+ const _hoisted_1$x = { class: "view recharge-view" };
1508
+ const _hoisted_2$n = { class: "flex-grow" };
1509
+ const _hoisted_3$i = { class: "amount-footer" };
1510
+ const _hoisted_4$e = { class: "agreement" };
1511
+ var script$B = /* @__PURE__ */ defineComponent({
1504
1512
  __name: "RechargeView",
1505
1513
  props: {
1506
1514
  app: { type: String, required: true },
@@ -1564,16 +1572,16 @@ var script$A = /* @__PURE__ */ defineComponent({
1564
1572
  return (_ctx, _cache) => {
1565
1573
  const _component_nut_checkbox = Checkbox;
1566
1574
  const _component_nut_button = Button;
1567
- return openBlock(), createElementBlock("view", _hoisted_1$w, [
1568
- createElementVNode("view", _hoisted_2$m, [
1569
- createVNode(script$I, {
1575
+ return openBlock(), createElementBlock("view", _hoisted_1$x, [
1576
+ createElementVNode("view", _hoisted_2$n, [
1577
+ createVNode(script$J, {
1570
1578
  items: amounts.value,
1571
1579
  selected: state.selected,
1572
1580
  onChange: onAmountSelect
1573
1581
  }, null, 8, ["items", "selected"])
1574
1582
  ]),
1575
- createElementVNode("view", _hoisted_3$h, [
1576
- createElementVNode("view", _hoisted_4$d, [
1583
+ createElementVNode("view", _hoisted_3$i, [
1584
+ createElementVNode("view", _hoisted_4$e, [
1577
1585
  createVNode(_component_nut_checkbox, {
1578
1586
  modelValue: state.agreed,
1579
1587
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
@@ -1608,31 +1616,31 @@ var script$A = /* @__PURE__ */ defineComponent({
1608
1616
  }
1609
1617
  });
1610
1618
 
1611
- script$A.__file = "src/payment/components/RechargeView.vue";
1619
+ script$B.__file = "src/payment/components/RechargeView.vue";
1612
1620
 
1613
- const _hoisted_1$v = { class: "agreement-doc" };
1621
+ const _hoisted_1$w = { class: "agreement-doc" };
1614
1622
  function render$2(_ctx, _cache) {
1615
- return openBlock(), createElementBlock("view", _hoisted_1$v, _cache[0] || (_cache[0] = [
1623
+ return openBlock(), createElementBlock("view", _hoisted_1$w, _cache[0] || (_cache[0] = [
1616
1624
  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)
1617
1625
  ]));
1618
1626
  }
1619
1627
 
1620
- /* unplugin-vue-components disabled */const script$z = {};
1628
+ /* unplugin-vue-components disabled */const script$A = {};
1621
1629
 
1622
- script$z.render = render$2;
1623
- script$z.__file = "src/payment/components/UserAgreement.vue";
1630
+ script$A.render = render$2;
1631
+ script$A.__file = "src/payment/components/UserAgreement.vue";
1624
1632
 
1625
- const _hoisted_1$u = { class: "recharge-result" };
1626
- const _hoisted_2$l = { class: "content" };
1627
- const _hoisted_3$g = {
1633
+ const _hoisted_1$v = { class: "recharge-result" };
1634
+ const _hoisted_2$m = { class: "content" };
1635
+ const _hoisted_3$h = {
1628
1636
  key: 0,
1629
1637
  class: "caption"
1630
1638
  };
1631
- const _hoisted_4$c = {
1639
+ const _hoisted_4$d = {
1632
1640
  key: 1,
1633
1641
  class: "caption"
1634
1642
  };
1635
- var script$y = /* @__PURE__ */ defineComponent({
1643
+ var script$z = /* @__PURE__ */ defineComponent({
1636
1644
  __name: "RechargeResult",
1637
1645
  props: {
1638
1646
  type: { type: String, required: true, default: "recharge" },
@@ -1650,8 +1658,8 @@ var script$y = /* @__PURE__ */ defineComponent({
1650
1658
  }
1651
1659
  return (_ctx, _cache) => {
1652
1660
  const _component_nut_button = Button;
1653
- return openBlock(), createElementBlock("div", _hoisted_1$u, [
1654
- createElementVNode("div", _hoisted_2$l, [
1661
+ return openBlock(), createElementBlock("div", _hoisted_1$v, [
1662
+ createElementVNode("div", _hoisted_2$m, [
1655
1663
  _cache[1] || (_cache[1] = createElementVNode(
1656
1664
  "div",
1657
1665
  { class: "figure" },
@@ -1666,9 +1674,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1666
1674
  1
1667
1675
  /* TEXT */
1668
1676
  ),
1669
- _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$g, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1677
+ _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$h, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1670
1678
  "div",
1671
- _hoisted_4$c,
1679
+ _hoisted_4$d,
1672
1680
  toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
1673
1681
  1
1674
1682
  /* TEXT */
@@ -1690,12 +1698,12 @@ var script$y = /* @__PURE__ */ defineComponent({
1690
1698
  }
1691
1699
  });
1692
1700
 
1693
- script$y.__file = "src/payment/components/RechargeResult.vue";
1701
+ script$z.__file = "src/payment/components/RechargeResult.vue";
1694
1702
 
1695
- const _hoisted_1$t = { class: "tag" };
1696
- const _hoisted_2$k = { class: "token-line number" };
1697
- const _hoisted_3$f = { class: "number" };
1698
- var script$x = /* @__PURE__ */ defineComponent({
1703
+ const _hoisted_1$u = { class: "tag" };
1704
+ const _hoisted_2$l = { class: "token-line number" };
1705
+ const _hoisted_3$g = { class: "number" };
1706
+ var script$y = /* @__PURE__ */ defineComponent({
1699
1707
  __name: "RightsPicker",
1700
1708
  props: {
1701
1709
  items: { type: Array, required: true, default: () => [] },
@@ -1733,14 +1741,14 @@ var script$x = /* @__PURE__ */ defineComponent({
1733
1741
  default: withCtx(() => [
1734
1742
  createElementVNode(
1735
1743
  "div",
1736
- _hoisted_1$t,
1744
+ _hoisted_1$u,
1737
1745
  toDisplayString(amount.paymentDesc),
1738
1746
  1
1739
1747
  /* TEXT */
1740
1748
  ),
1741
1749
  createElementVNode(
1742
1750
  "h4",
1743
- _hoisted_2$k,
1751
+ _hoisted_2$l,
1744
1752
  toDisplayString(amount.priceRightNum) + "\u7B14",
1745
1753
  1
1746
1754
  /* TEXT */
@@ -1749,7 +1757,7 @@ var script$x = /* @__PURE__ */ defineComponent({
1749
1757
  _cache[0] || (_cache[0] = createTextVNode("\xA5")),
1750
1758
  createElementVNode(
1751
1759
  "span",
1752
- _hoisted_3$f,
1760
+ _hoisted_3$g,
1753
1761
  toDisplayString(amount.paymentAmount),
1754
1762
  1
1755
1763
  /* TEXT */
@@ -1771,24 +1779,24 @@ var script$x = /* @__PURE__ */ defineComponent({
1771
1779
  }
1772
1780
  });
1773
1781
 
1774
- script$x.__file = "src/payment/components/RightsPicker.vue";
1782
+ script$y.__file = "src/payment/components/RightsPicker.vue";
1775
1783
 
1776
- const _hoisted_1$s = { class: "view recharge-view2" };
1777
- const _hoisted_2$j = { class: "flex-grow" };
1778
- const _hoisted_3$e = {
1784
+ const _hoisted_1$t = { class: "view recharge-view2" };
1785
+ const _hoisted_2$k = { class: "flex-grow" };
1786
+ const _hoisted_3$f = {
1779
1787
  key: 0,
1780
1788
  class: "bean-buy"
1781
1789
  };
1782
- const _hoisted_4$b = { class: "left" };
1783
- const _hoisted_5$9 = {
1790
+ const _hoisted_4$c = { class: "left" };
1791
+ const _hoisted_5$a = {
1784
1792
  key: 0,
1785
1793
  class: "amount"
1786
1794
  };
1787
- const _hoisted_6$4 = {
1795
+ const _hoisted_6$5 = {
1788
1796
  key: 1,
1789
1797
  class: "amount"
1790
1798
  };
1791
- const _hoisted_7$4 = { class: "amount" };
1799
+ const _hoisted_7$5 = { class: "amount" };
1792
1800
  const _hoisted_8$4 = ["src"];
1793
1801
  const _hoisted_9$3 = { class: "amount-footer" };
1794
1802
  const _hoisted_10$2 = {
@@ -1801,7 +1809,7 @@ const _hoisted_13$2 = { class: "amount" };
1801
1809
  const _hoisted_14$2 = { class: "item" };
1802
1810
  const _hoisted_15$2 = { class: "item" };
1803
1811
  const _hoisted_16$2 = { class: "item" };
1804
- var script$w = /* @__PURE__ */ defineComponent({
1812
+ var script$x = /* @__PURE__ */ defineComponent({
1805
1813
  __name: "TradeView",
1806
1814
  props: {
1807
1815
  app: { type: String, required: true },
@@ -1890,15 +1898,15 @@ var script$w = /* @__PURE__ */ defineComponent({
1890
1898
  const _component_nut_checkbox = Checkbox;
1891
1899
  const _component_nut_button = Button;
1892
1900
  const _component_nut_dialog = Dialog;
1893
- return openBlock(), createElementBlock("view", _hoisted_1$s, [
1894
- createElementVNode("view", _hoisted_2$j, [
1895
- createVNode(script$x, {
1901
+ return openBlock(), createElementBlock("view", _hoisted_1$t, [
1902
+ createElementVNode("view", _hoisted_2$k, [
1903
+ createVNode(script$y, {
1896
1904
  items: amounts.value,
1897
1905
  selected: state.selected,
1898
1906
  onChange: onAmountSelect
1899
1907
  }, null, 8, ["items", "selected"]),
1900
- amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$e, [
1901
- createElementVNode("div", _hoisted_4$b, [
1908
+ amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$f, [
1909
+ createElementVNode("div", _hoisted_4$c, [
1902
1910
  _cache[4] || (_cache[4] = createElementVNode(
1903
1911
  "div",
1904
1912
  { class: "title" },
@@ -1908,13 +1916,13 @@ var script$w = /* @__PURE__ */ defineComponent({
1908
1916
  )),
1909
1917
  !selectBean.value ? (openBlock(), createElementBlock(
1910
1918
  "div",
1911
- _hoisted_5$9,
1919
+ _hoisted_5$a,
1912
1920
  "\u4F59\u989D " + toDisplayString(balance.value),
1913
1921
  1
1914
1922
  /* TEXT */
1915
1923
  )) : (openBlock(), createElementBlock(
1916
1924
  "div",
1917
- _hoisted_6$4,
1925
+ _hoisted_6$5,
1918
1926
  "\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1919
1927
  1
1920
1928
  /* TEXT */
@@ -1927,7 +1935,7 @@ var script$w = /* @__PURE__ */ defineComponent({
1927
1935
  }, [
1928
1936
  createElementVNode(
1929
1937
  "div",
1930
- _hoisted_7$4,
1938
+ _hoisted_7$5,
1931
1939
  "-" + toDisplayString(amounts.value[state.selected].paymentAmount),
1932
1940
  1
1933
1941
  /* TEXT */
@@ -2036,22 +2044,22 @@ var script$w = /* @__PURE__ */ defineComponent({
2036
2044
  }
2037
2045
  });
2038
2046
 
2039
- script$w.__file = "src/payment/components/TradeView.vue";
2047
+ script$x.__file = "src/payment/components/TradeView.vue";
2040
2048
 
2041
2049
  const components = {
2042
- AmountPicker: script$I,
2043
- RechargeView: script$A,
2044
- UserAgreement: script$z,
2045
- RechargeResult: script$y,
2046
- TradeView: script$w
2050
+ AmountPicker: script$J,
2051
+ RechargeView: script$B,
2052
+ UserAgreement: script$A,
2053
+ RechargeResult: script$z,
2054
+ TradeView: script$x
2047
2055
  };
2048
2056
 
2049
- const _hoisted_1$r = { class: "account-card" };
2050
- const _hoisted_2$i = { class: "card" };
2051
- const _hoisted_3$d = { class: "card-row" };
2052
- const _hoisted_4$a = { class: "card-row-left" };
2053
- const _hoisted_5$8 = { class: "bean-nums number" };
2054
- var script$v = /* @__PURE__ */ defineComponent({
2057
+ const _hoisted_1$s = { class: "account-card" };
2058
+ const _hoisted_2$j = { class: "card" };
2059
+ const _hoisted_3$e = { class: "card-row" };
2060
+ const _hoisted_4$b = { class: "card-row-left" };
2061
+ const _hoisted_5$9 = { class: "bean-nums number" };
2062
+ var script$w = /* @__PURE__ */ defineComponent({
2055
2063
  __name: "BalanceCard",
2056
2064
  props: {
2057
2065
  app: { type: String, required: true, default: "" }
@@ -2072,9 +2080,6 @@ var script$v = /* @__PURE__ */ defineComponent({
2072
2080
  total: 0,
2073
2081
  privileges: []
2074
2082
  });
2075
- const gotoRecharge = () => {
2076
- emit("recharge");
2077
- };
2078
2083
  async function loadBalance() {
2079
2084
  const $http = useHttp$3();
2080
2085
  $http.get(endpoints$1.\u83B7\u53D6\u4F59\u989D\u660E\u7EC6, {
@@ -2094,10 +2099,10 @@ var script$v = /* @__PURE__ */ defineComponent({
2094
2099
  reload: loadBalance
2095
2100
  });
2096
2101
  return (_ctx, _cache) => {
2097
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
2098
- createElementVNode("div", _hoisted_2$i, [
2099
- createElementVNode("div", _hoisted_3$d, [
2100
- createElementVNode("div", _hoisted_4$a, [
2102
+ return openBlock(), createElementBlock("div", _hoisted_1$s, [
2103
+ createElementVNode("div", _hoisted_2$j, [
2104
+ createElementVNode("div", _hoisted_3$e, [
2105
+ createElementVNode("div", _hoisted_4$b, [
2101
2106
  _cache[0] || (_cache[0] = createElementVNode(
2102
2107
  "div",
2103
2108
  { class: "bean-box" },
@@ -2115,7 +2120,7 @@ var script$v = /* @__PURE__ */ defineComponent({
2115
2120
  )),
2116
2121
  createElementVNode(
2117
2122
  "div",
2118
- _hoisted_5$8,
2123
+ _hoisted_5$9,
2119
2124
  toDisplayString(balance.value.total || 0),
2120
2125
  1
2121
2126
  /* TEXT */
@@ -2139,7 +2144,7 @@ var script$v = /* @__PURE__ */ defineComponent({
2139
2144
  [
2140
2145
  createElementVNode("img", {
2141
2146
  class: "icon",
2142
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
2147
+ src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDI3LjVDMjEuOTAzNiAyNy41IDI3LjUgMjEuOTAzNiAyNy41IDE1QzI3LjUgOC4wOTY0NCAyMS45MDM2IDIuNSAxNSAyLjVDOC4wOTY0NCAyLjUgMi41IDguMDk2NDQgMi41IDE1QzIuNSAyMS45MDM2IDguMDk2NDQgMjcuNSAxNSAyNy41WiIgZmlsbD0iIzM1MzUzNSIgc3Ryb2tlPSIjMzUzNTM1IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTEgMTUuMTU2MkgxOS4zMTI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjEuODQ3MjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTUuMTU2NyAxMUwxOS4zMTMgMTUuMTU2MkwxNS4xNTY3IDE5LjMxMjUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS44NDcyMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo="
2143
2148
  })
2144
2149
  ],
2145
2150
  -1
@@ -2148,53 +2153,14 @@ var script$v = /* @__PURE__ */ defineComponent({
2148
2153
  ]))
2149
2154
  ])
2150
2155
  ]),
2151
- _cache[4] || (_cache[4] = createElementVNode(
2152
- "div",
2153
- { class: "line" },
2154
- null,
2155
- -1
2156
- /* HOISTED */
2157
- )),
2158
- createElementVNode("div", { class: "card-row" }, [
2159
- _cache[3] || (_cache[3] = createElementVNode(
2160
- "div",
2161
- { class: "card-row-left desc" },
2162
- "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
2163
- -1
2164
- /* HOISTED */
2165
- )),
2166
- createElementVNode("div", { class: "card-row-right" }, [
2167
- createElementVNode("div", {
2168
- class: "pay",
2169
- onClick: gotoRecharge
2170
- }, _cache[2] || (_cache[2] = [
2171
- createElementVNode(
2172
- "div",
2173
- null,
2174
- "\u5145\u503C",
2175
- -1
2176
- /* HOISTED */
2177
- ),
2178
- createElementVNode(
2179
- "img",
2180
- {
2181
- class: "pay-icon",
2182
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2183
- },
2184
- null,
2185
- -1
2186
- /* HOISTED */
2187
- )
2188
- ]))
2189
- ])
2190
- ])
2156
+ createCommentVNode(' <div class="line"></div>\r\n <div class="card-row">\r\n <div class="card-row-left desc">\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46</div>\r\n <div class="card-row-right">\r\n <div class="pay" @click="gotoRecharge">\r\n <div>\u5145\u503C</div>\r\n <img\r\n class="pay-icon"\r\n src="https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"\r\n />\r\n </div>\r\n </div>\r\n </div> ')
2191
2157
  ])
2192
2158
  ]);
2193
2159
  };
2194
2160
  }
2195
2161
  });
2196
2162
 
2197
- script$v.__file = "src/balance/components/BalanceCard.vue";
2163
+ script$w.__file = "src/balance/components/BalanceCard.vue";
2198
2164
 
2199
2165
  const consumptionTypes = [
2200
2166
  "\u5168\u90E8",
@@ -2211,12 +2177,12 @@ const consumptionTypes = [
2211
2177
  const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
2212
2178
  const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
2213
2179
 
2214
- const _hoisted_1$q = { class: "consumption-filter" };
2215
- const _hoisted_2$h = { class: "consumption-filter-content" };
2216
- const _hoisted_3$c = { class: "title" };
2217
- const _hoisted_4$9 = { class: "info" };
2218
- const _hoisted_5$7 = ["onClick"];
2219
- var script$u = /* @__PURE__ */ defineComponent({
2180
+ const _hoisted_1$r = { class: "consumption-filter" };
2181
+ const _hoisted_2$i = { class: "consumption-filter-content" };
2182
+ const _hoisted_3$d = { class: "title" };
2183
+ const _hoisted_4$a = { class: "info" };
2184
+ const _hoisted_5$8 = ["onClick"];
2185
+ var script$v = /* @__PURE__ */ defineComponent({
2220
2186
  __name: "ConsumptionFilter",
2221
2187
  props: {
2222
2188
  modelValue: { type: Array, required: true, default: () => ["\u5168\u90E8", "\u5168\u90E8", "\u5168\u90E8", ""] }
@@ -2268,7 +2234,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2268
2234
  emit("complete", result);
2269
2235
  };
2270
2236
  return (_ctx, _cache) => {
2271
- return openBlock(), createElementBlock("div", _hoisted_1$q, [
2237
+ return openBlock(), createElementBlock("div", _hoisted_1$r, [
2272
2238
  _cache[0] || (_cache[0] = createElementVNode(
2273
2239
  "div",
2274
2240
  { class: "consumption-filter-title" },
@@ -2278,7 +2244,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2278
2244
  -1
2279
2245
  /* HOISTED */
2280
2246
  )),
2281
- createElementVNode("div", _hoisted_2$h, [
2247
+ createElementVNode("div", _hoisted_2$i, [
2282
2248
  (openBlock(true), createElementBlock(
2283
2249
  Fragment,
2284
2250
  null,
@@ -2289,12 +2255,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2289
2255
  [
2290
2256
  createElementVNode(
2291
2257
  "div",
2292
- _hoisted_3$c,
2258
+ _hoisted_3$d,
2293
2259
  toDisplayString(item.title),
2294
2260
  1
2295
2261
  /* TEXT */
2296
2262
  ),
2297
- createElementVNode("div", _hoisted_4$9, [
2263
+ createElementVNode("div", _hoisted_4$a, [
2298
2264
  (openBlock(true), createElementBlock(
2299
2265
  Fragment,
2300
2266
  null,
@@ -2303,7 +2269,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2303
2269
  onClick: () => onFilterSectionClick(index, it.code),
2304
2270
  class: normalizeClass([getItemClass(index, it.code), "info-item"]),
2305
2271
  key: i
2306
- }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$7);
2272
+ }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$8);
2307
2273
  }),
2308
2274
  128
2309
2275
  /* KEYED_FRAGMENT */
@@ -2340,12 +2306,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2340
2306
  }
2341
2307
  });
2342
2308
 
2343
- script$u.__file = "src/balance/components/ConsumptionFilter.vue";
2309
+ script$v.__file = "src/balance/components/ConsumptionFilter.vue";
2344
2310
 
2345
- const _hoisted_1$p = { class: "appkit-date-filter" };
2346
- const _hoisted_2$g = { class: "content" };
2347
- const _hoisted_3$b = { class: "time" };
2348
- var script$t = /* @__PURE__ */ defineComponent({
2311
+ const _hoisted_1$q = { class: "appkit-date-filter" };
2312
+ const _hoisted_2$h = { class: "content" };
2313
+ const _hoisted_3$c = { class: "time" };
2314
+ var script$u = /* @__PURE__ */ defineComponent({
2349
2315
  __name: "DateFilter",
2350
2316
  props: {
2351
2317
  from: { type: String, required: true },
@@ -2414,7 +2380,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2414
2380
  return (_ctx, _cache) => {
2415
2381
  const _component_nut_date_picker = DatePicker;
2416
2382
  const _component_nut_popup = Popup;
2417
- return openBlock(), createElementBlock("div", _hoisted_1$p, [
2383
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [
2418
2384
  _cache[6] || (_cache[6] = createElementVNode(
2419
2385
  "div",
2420
2386
  { class: "date-filter-header" },
@@ -2422,7 +2388,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2422
2388
  -1
2423
2389
  /* HOISTED */
2424
2390
  )),
2425
- createElementVNode("div", _hoisted_2$g, [
2391
+ createElementVNode("div", _hoisted_2$h, [
2426
2392
  _cache[5] || (_cache[5] = createElementVNode(
2427
2393
  "div",
2428
2394
  { class: "title" },
@@ -2430,7 +2396,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2430
2396
  -1
2431
2397
  /* HOISTED */
2432
2398
  )),
2433
- createElementVNode("div", _hoisted_3$b, [
2399
+ createElementVNode("div", _hoisted_3$c, [
2434
2400
  createElementVNode(
2435
2401
  "div",
2436
2402
  {
@@ -2504,16 +2470,16 @@ var script$t = /* @__PURE__ */ defineComponent({
2504
2470
  }
2505
2471
  });
2506
2472
 
2507
- script$t.__file = "src/balance/components/DateFilter.vue";
2473
+ script$u.__file = "src/balance/components/DateFilter.vue";
2508
2474
 
2509
- const _hoisted_1$o = { class: "consumption-rules" };
2510
- var script$s = /* @__PURE__ */ defineComponent({
2475
+ const _hoisted_1$p = { class: "consumption-rules" };
2476
+ var script$t = /* @__PURE__ */ defineComponent({
2511
2477
  __name: "ConsumptionRules",
2512
2478
  emits: ["complete"],
2513
2479
  setup(__props, { emit: __emit }) {
2514
2480
  const emit = __emit;
2515
2481
  return (_ctx, _cache) => {
2516
- return openBlock(), createElementBlock("div", _hoisted_1$o, [
2482
+ return openBlock(), createElementBlock("div", _hoisted_1$p, [
2517
2483
  _cache[1] || (_cache[1] = createElementVNode(
2518
2484
  "div",
2519
2485
  { class: "title" },
@@ -2545,11 +2511,11 @@ var script$s = /* @__PURE__ */ defineComponent({
2545
2511
  }
2546
2512
  });
2547
2513
 
2548
- script$s.__file = "src/balance/components/ConsumptionRules.vue";
2514
+ script$t.__file = "src/balance/components/ConsumptionRules.vue";
2549
2515
 
2550
- const _hoisted_1$n = { class: "empty-view" };
2516
+ const _hoisted_1$o = { class: "empty-view" };
2551
2517
  function render$1(_ctx, _cache) {
2552
- return openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2518
+ return openBlock(), createElementBlock("div", _hoisted_1$o, _cache[0] || (_cache[0] = [
2553
2519
  createElementVNode(
2554
2520
  "img",
2555
2521
  {
@@ -2570,16 +2536,16 @@ function render$1(_ctx, _cache) {
2570
2536
  ]));
2571
2537
  }
2572
2538
 
2573
- /* unplugin-vue-components disabled */const script$r = {};
2539
+ /* unplugin-vue-components disabled */const script$s = {};
2574
2540
 
2575
- script$r.render = render$1;
2576
- script$r.__file = "src/shared/components/EmptyView.vue";
2541
+ script$s.render = render$1;
2542
+ script$s.__file = "src/shared/components/EmptyView.vue";
2577
2543
 
2578
- const _hoisted_1$m = {
2544
+ const _hoisted_1$n = {
2579
2545
  key: 0,
2580
2546
  class: "tip"
2581
2547
  };
2582
- var script$q = /* @__PURE__ */ defineComponent({
2548
+ var script$r = /* @__PURE__ */ defineComponent({
2583
2549
  __name: "Tip",
2584
2550
  setup(__props) {
2585
2551
  const show = ref(false);
@@ -2591,7 +2557,7 @@ var script$q = /* @__PURE__ */ defineComponent({
2591
2557
  }
2592
2558
  });
2593
2559
  return (_ctx, _cache) => {
2594
- return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$m, _cache[0] || (_cache[0] = [
2560
+ return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2595
2561
  createElementVNode(
2596
2562
  "img",
2597
2563
  {
@@ -2614,15 +2580,15 @@ var script$q = /* @__PURE__ */ defineComponent({
2614
2580
  }
2615
2581
  });
2616
2582
 
2617
- script$q.__file = "src/balance/components/Tip.vue";
2583
+ script$r.__file = "src/balance/components/Tip.vue";
2618
2584
 
2619
- const _hoisted_1$l = { class: "account-view" };
2620
- const _hoisted_2$f = { class: "scroll-content" };
2621
- const _hoisted_3$a = { class: "balance" };
2622
- const _hoisted_4$8 = { class: "bean-box spa-between" };
2623
- const _hoisted_5$6 = { class: "bean-counts spa-between" };
2624
- const _hoisted_6$3 = { class: "counts number" };
2625
- const _hoisted_7$3 = {
2585
+ const _hoisted_1$m = { class: "account-view" };
2586
+ const _hoisted_2$g = { class: "scroll-content" };
2587
+ const _hoisted_3$b = { class: "balance" };
2588
+ const _hoisted_4$9 = { class: "bean-box spa-between" };
2589
+ const _hoisted_5$7 = { class: "bean-counts spa-between" };
2590
+ const _hoisted_6$4 = { class: "counts number" };
2591
+ const _hoisted_7$4 = {
2626
2592
  key: 0,
2627
2593
  class: "rights-card"
2628
2594
  };
@@ -2661,7 +2627,7 @@ const _hoisted_30 = {
2661
2627
  key: 0,
2662
2628
  class: "box-not-text"
2663
2629
  };
2664
- var script$p = /* @__PURE__ */ defineComponent({
2630
+ var script$q = /* @__PURE__ */ defineComponent({
2665
2631
  __name: "AccountView",
2666
2632
  props: {
2667
2633
  app: { type: String, required: true, default: "" }
@@ -2746,7 +2712,6 @@ var script$p = /* @__PURE__ */ defineComponent({
2746
2712
  } else {
2747
2713
  reachedLastPage.value = false;
2748
2714
  }
2749
- }).finally(() => {
2750
2715
  Taro.hideLoading();
2751
2716
  });
2752
2717
  }
@@ -2839,10 +2804,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2839
2804
  Fragment,
2840
2805
  null,
2841
2806
  [
2842
- createElementVNode("div", _hoisted_1$l, [
2843
- createElementVNode("div", _hoisted_2$f, [
2844
- createVNode(unref(script$H), {
2845
- "color-mode": "dark",
2807
+ createElementVNode("div", _hoisted_1$m, [
2808
+ createElementVNode("div", _hoisted_2$g, [
2809
+ createVNode(unref(script$I), {
2846
2810
  title: "\u6211\u7684\u8D26\u6237",
2847
2811
  class: normalizeClass({ "with-background": scrolled.value > 0 }),
2848
2812
  onClose: onPageHeaderClose
@@ -2861,8 +2825,8 @@ var script$p = /* @__PURE__ */ defineComponent({
2861
2825
  )
2862
2826
  ]))
2863
2827
  ]),
2864
- createElementVNode("div", _hoisted_3$a, [
2865
- createElementVNode("div", _hoisted_4$8, [
2828
+ createElementVNode("div", _hoisted_3$b, [
2829
+ createElementVNode("div", _hoisted_4$9, [
2866
2830
  _cache[8] || (_cache[8] = createElementVNode(
2867
2831
  "div",
2868
2832
  { class: "bean-img" },
@@ -2881,10 +2845,10 @@ var script$p = /* @__PURE__ */ defineComponent({
2881
2845
  onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
2882
2846
  }, "\u89C4\u5219\u8BF4\u660E")
2883
2847
  ]),
2884
- createElementVNode("div", _hoisted_5$6, [
2848
+ createElementVNode("div", _hoisted_5$7, [
2885
2849
  createElementVNode(
2886
2850
  "div",
2887
- _hoisted_6$3,
2851
+ _hoisted_6$4,
2888
2852
  toDisplayString(balance.value.total || 0),
2889
2853
  1
2890
2854
  /* TEXT */
@@ -2895,8 +2859,8 @@ var script$p = /* @__PURE__ */ defineComponent({
2895
2859
  }, "\u4E91\u8C46\u5145\u503C")
2896
2860
  ])
2897
2861
  ]),
2898
- createVNode(script$q),
2899
- balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
2862
+ createVNode(script$r),
2863
+ balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$4, [
2900
2864
  _cache[10] || (_cache[10] = createElementVNode(
2901
2865
  "div",
2902
2866
  { class: "title" },
@@ -2940,7 +2904,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2940
2904
  item.id ? (openBlock(), createElementBlock("div", _hoisted_11$1, [
2941
2905
  createElementVNode("div", {
2942
2906
  onClick: ($event) => gotoTrade(item)
2943
- }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_12$1),
2907
+ }, "\u4F01\u660E\u661F\u4F18\u60E0\u5145\u503C", 8, _hoisted_12$1),
2944
2908
  _cache[9] || (_cache[9] = createElementVNode(
2945
2909
  "img",
2946
2910
  {
@@ -3007,7 +2971,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3007
2971
  "close-on-click-overlay": false
3008
2972
  }, {
3009
2973
  default: withCtx(() => [
3010
- createVNode(script$s, {
2974
+ createVNode(script$t, {
3011
2975
  onComplete: _cache[1] || (_cache[1] = ($event) => rulesPopupOpen.value = false)
3012
2976
  })
3013
2977
  ]),
@@ -3023,7 +2987,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3023
2987
  "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event)
3024
2988
  }, {
3025
2989
  default: withCtx(() => [
3026
- datePickerOpen.value ? (openBlock(), createBlock(script$t, {
2990
+ datePickerOpen.value ? (openBlock(), createBlock(script$u, {
3027
2991
  key: 0,
3028
2992
  from: filtering.dateFrom,
3029
2993
  to: filtering.dateTo,
@@ -3043,7 +3007,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3043
3007
  "onUpdate:visible": _cache[4] || (_cache[4] = ($event) => filterOpen.value = $event)
3044
3008
  }, {
3045
3009
  default: withCtx(() => [
3046
- createVNode(script$u, {
3010
+ createVNode(script$v, {
3047
3011
  modelValue: [
3048
3012
  filtering.\u8D26\u6237\u7C7B\u578B,
3049
3013
  filtering.\u6536\u5165\u8FD8\u662F\u652F\u51FA,
@@ -3056,7 +3020,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3056
3020
  _: 1
3057
3021
  /* STABLE */
3058
3022
  }, 8, ["visible"]),
3059
- createVNode(unref(script$G), {
3023
+ createVNode(unref(script$H), {
3060
3024
  modelValue: secondBalanceOpen.value,
3061
3025
  "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => secondBalanceOpen.value = $event),
3062
3026
  title: "\u6536\u652F\u660E\u7EC6"
@@ -3220,7 +3184,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3220
3184
  /* KEYED_FRAGMENT */
3221
3185
  )),
3222
3186
  reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3223
- ])) : (openBlock(), createBlock(script$r, { key: 1 }))
3187
+ ])) : (openBlock(), createBlock(script$s, { key: 1 }))
3224
3188
  ]),
3225
3189
  _: 1
3226
3190
  /* STABLE */
@@ -3239,13 +3203,13 @@ var script$p = /* @__PURE__ */ defineComponent({
3239
3203
  }
3240
3204
  });
3241
3205
 
3242
- script$p.__file = "src/balance/components/AccountView.vue";
3206
+ script$q.__file = "src/balance/components/AccountView.vue";
3243
3207
 
3244
- const _hoisted_1$k = { class: "balance-reminder" };
3245
- const _hoisted_2$e = { class: "footer" };
3246
- const _hoisted_3$9 = { class: "col" };
3247
- const _hoisted_4$7 = { class: "col" };
3248
- var script$o = /* @__PURE__ */ defineComponent({
3208
+ const _hoisted_1$l = { class: "balance-reminder" };
3209
+ const _hoisted_2$f = { class: "footer" };
3210
+ const _hoisted_3$a = { class: "col" };
3211
+ const _hoisted_4$8 = { class: "col" };
3212
+ var script$p = /* @__PURE__ */ defineComponent({
3249
3213
  __name: "BalanceReminder",
3250
3214
  props: {
3251
3215
  modelValue: { type: Boolean, required: true, default: () => false },
@@ -3265,7 +3229,7 @@ var script$o = /* @__PURE__ */ defineComponent({
3265
3229
  "close-on-click-overlay": false
3266
3230
  }, {
3267
3231
  default: withCtx(() => [
3268
- createElementVNode("div", _hoisted_1$k, [
3232
+ createElementVNode("div", _hoisted_1$l, [
3269
3233
  _cache[3] || (_cache[3] = createElementVNode(
3270
3234
  "div",
3271
3235
  { class: "body" },
@@ -3276,8 +3240,8 @@ var script$o = /* @__PURE__ */ defineComponent({
3276
3240
  -1
3277
3241
  /* HOISTED */
3278
3242
  )),
3279
- createElementVNode("div", _hoisted_2$e, [
3280
- createElementVNode("div", _hoisted_3$9, [
3243
+ createElementVNode("div", _hoisted_2$f, [
3244
+ createElementVNode("div", _hoisted_3$a, [
3281
3245
  createVNode(_component_nut_button, {
3282
3246
  class: "cancel-button",
3283
3247
  onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
@@ -3290,7 +3254,7 @@ var script$o = /* @__PURE__ */ defineComponent({
3290
3254
  /* STABLE */
3291
3255
  })
3292
3256
  ]),
3293
- createElementVNode("div", _hoisted_4$7, [
3257
+ createElementVNode("div", _hoisted_4$8, [
3294
3258
  createVNode(_component_nut_button, {
3295
3259
  block: "",
3296
3260
  class: "recharge-button",
@@ -3317,10 +3281,10 @@ var script$o = /* @__PURE__ */ defineComponent({
3317
3281
  }
3318
3282
  });
3319
3283
 
3320
- script$o.__file = "src/balance/components/BalanceReminder.vue";
3284
+ script$p.__file = "src/balance/components/BalanceReminder.vue";
3321
3285
 
3322
- const _hoisted_1$j = { class: "text" };
3323
- var script$n = /* @__PURE__ */ defineComponent({
3286
+ const _hoisted_1$k = { class: "text" };
3287
+ var script$o = /* @__PURE__ */ defineComponent({
3324
3288
  __name: "DateRange",
3325
3289
  props: {
3326
3290
  "modelValue": {
@@ -3340,7 +3304,7 @@ var script$n = /* @__PURE__ */ defineComponent({
3340
3304
  const openDateRangePicker = () => {
3341
3305
  const child = ref();
3342
3306
  $n.sheet({
3343
- component: script$t,
3307
+ component: script$u,
3344
3308
  ref: child,
3345
3309
  props: {
3346
3310
  from: model.value.from,
@@ -3369,7 +3333,7 @@ var script$n = /* @__PURE__ */ defineComponent({
3369
3333
  }, [
3370
3334
  createElementVNode(
3371
3335
  "div",
3372
- _hoisted_1$j,
3336
+ _hoisted_1$k,
3373
3337
  toDisplayString(dateRangeDisplay.value),
3374
3338
  1
3375
3339
  /* TEXT */
@@ -3390,14 +3354,14 @@ var script$n = /* @__PURE__ */ defineComponent({
3390
3354
  }
3391
3355
  });
3392
3356
 
3393
- script$n.__file = "src/balance/components/DateRange.vue";
3357
+ script$o.__file = "src/balance/components/DateRange.vue";
3394
3358
 
3395
- const _hoisted_1$i = { class: "list-filter-picker" };
3396
- const _hoisted_2$d = { class: "consumption-filter-content" };
3397
- const _hoisted_3$8 = { class: "title" };
3398
- const _hoisted_4$6 = { class: "info" };
3399
- const _hoisted_5$5 = ["onClick"];
3400
- var script$m = /* @__PURE__ */ defineComponent({
3359
+ const _hoisted_1$j = { class: "list-filter-picker" };
3360
+ const _hoisted_2$e = { class: "list-filter-picker-content" };
3361
+ const _hoisted_3$9 = { class: "title" };
3362
+ const _hoisted_4$7 = { class: "info" };
3363
+ const _hoisted_5$6 = ["onClick"];
3364
+ var script$n = /* @__PURE__ */ defineComponent({
3401
3365
  __name: "ListFilterPicker",
3402
3366
  props: {
3403
3367
  modelValue: { type: Object, required: true }
@@ -3443,7 +3407,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3443
3407
  emit("complete", result);
3444
3408
  };
3445
3409
  return (_ctx, _cache) => {
3446
- return openBlock(), createElementBlock("div", _hoisted_1$i, [
3410
+ return openBlock(), createElementBlock("div", _hoisted_1$j, [
3447
3411
  _cache[0] || (_cache[0] = createElementVNode(
3448
3412
  "div",
3449
3413
  { class: "list-filter-picker-title" },
@@ -3453,7 +3417,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3453
3417
  -1
3454
3418
  /* HOISTED */
3455
3419
  )),
3456
- createElementVNode("div", _hoisted_2$d, [
3420
+ createElementVNode("div", _hoisted_2$e, [
3457
3421
  (openBlock(true), createElementBlock(
3458
3422
  Fragment,
3459
3423
  null,
@@ -3464,12 +3428,12 @@ var script$m = /* @__PURE__ */ defineComponent({
3464
3428
  [
3465
3429
  createElementVNode(
3466
3430
  "div",
3467
- _hoisted_3$8,
3431
+ _hoisted_3$9,
3468
3432
  toDisplayString(item.label),
3469
3433
  1
3470
3434
  /* TEXT */
3471
3435
  ),
3472
- createElementVNode("div", _hoisted_4$6, [
3436
+ createElementVNode("div", _hoisted_4$7, [
3473
3437
  (openBlock(true), createElementBlock(
3474
3438
  Fragment,
3475
3439
  null,
@@ -3478,7 +3442,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3478
3442
  onClick: () => onFilterSectionClick(item.name, it.value),
3479
3443
  class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
3480
3444
  key: i
3481
- }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$5);
3445
+ }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$6);
3482
3446
  }),
3483
3447
  128
3484
3448
  /* KEYED_FRAGMENT */
@@ -3493,7 +3457,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3493
3457
  /* KEYED_FRAGMENT */
3494
3458
  ))
3495
3459
  ]),
3496
- createElementVNode("div", { class: "consumption-filter-btn spa-between" }, [
3460
+ createElementVNode("div", { class: "list-filter-picker-btn spa-between" }, [
3497
3461
  createElementVNode("div", {
3498
3462
  class: "btn",
3499
3463
  onClick: reset
@@ -3505,7 +3469,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3505
3469
  ]),
3506
3470
  _cache[1] || (_cache[1] = createElementVNode(
3507
3471
  "div",
3508
- { class: "consumption-filter-bottom" },
3472
+ { class: "list-filter-picker-bottom" },
3509
3473
  null,
3510
3474
  -1
3511
3475
  /* HOISTED */
@@ -3515,9 +3479,9 @@ var script$m = /* @__PURE__ */ defineComponent({
3515
3479
  }
3516
3480
  });
3517
3481
 
3518
- script$m.__file = "src/balance/components/ListFilterPicker.vue";
3482
+ script$n.__file = "src/balance/components/ListFilterPicker.vue";
3519
3483
 
3520
- var script$l = /* @__PURE__ */ defineComponent({
3484
+ var script$m = /* @__PURE__ */ defineComponent({
3521
3485
  __name: "ListFilter",
3522
3486
  props: {
3523
3487
  "modelValue": {
@@ -3536,7 +3500,7 @@ var script$l = /* @__PURE__ */ defineComponent({
3536
3500
  const emit = __emit;
3537
3501
  const openPicker = () => {
3538
3502
  $n.sheet({
3539
- component: script$m,
3503
+ component: script$n,
3540
3504
  props: {
3541
3505
  modelValue: model,
3542
3506
  onComplete: (result) => {
@@ -3574,7 +3538,196 @@ var script$l = /* @__PURE__ */ defineComponent({
3574
3538
  }
3575
3539
  });
3576
3540
 
3577
- script$l.__file = "src/balance/components/ListFilter.vue";
3541
+ script$m.__file = "src/balance/components/ListFilter.vue";
3542
+
3543
+ const _hoisted_1$i = { class: "promoter-card" };
3544
+ const _hoisted_2$d = {
3545
+ key: 0,
3546
+ class: "promoter-card-tab"
3547
+ };
3548
+ const _hoisted_3$8 = { class: "promoter-card-hd-num" };
3549
+ const _hoisted_4$6 = { class: "promoter-card-ft" };
3550
+ const _hoisted_5$5 = { class: "promoter-card-ft-num" };
3551
+ const _hoisted_6$3 = {
3552
+ key: 1,
3553
+ class: "promoter-card-ft-line"
3554
+ };
3555
+ const _hoisted_7$3 = { class: "promoter-card-ft-num" };
3556
+ var script$l = /* @__PURE__ */ defineComponent({
3557
+ __name: "PromoterCard",
3558
+ props: {
3559
+ useCase: { type: String, required: true, default: "" },
3560
+ applyRecord: { type: null, required: true, default: {} },
3561
+ isAdmin: { type: Boolean, required: false, default: true }
3562
+ },
3563
+ emits: [
3564
+ /**
3565
+ * 跳可提现余额
3566
+ */
3567
+ "blance",
3568
+ /**
3569
+ * 跳收益页面
3570
+ */
3571
+ "profits",
3572
+ /**
3573
+ * 跳返佣统计页面
3574
+ */
3575
+ "rebate"
3576
+ ],
3577
+ setup(__props, { expose: __expose, emit: __emit }) {
3578
+ const tab = ref("person");
3579
+ const promoter = ref({
3580
+ total: 0,
3581
+ totalIncome: 0,
3582
+ totalRebateIncome: 0
3583
+ });
3584
+ function onTabChange(type) {
3585
+ tab.value = type;
3586
+ loadPromoter();
3587
+ }
3588
+ async function loadPromoter() {
3589
+ const $http = useHttp$3();
3590
+ $http.get(endpoints$1.\u83B7\u53D6\u63A8\u5E7F\u65B9\u8D26\u6237\u4FE1\u606F, {
3591
+ useCase: tab.value
3592
+ }).then((data) => {
3593
+ promoter.value.total = data?.total || 0;
3594
+ promoter.value.totalIncome = data?.totalIncome || 0;
3595
+ promoter.value.totalRebateIncome = data?.totalRebateIncome || 0;
3596
+ });
3597
+ }
3598
+ const emits = __emit;
3599
+ useDidShow(() => {
3600
+ loadPromoter();
3601
+ });
3602
+ __expose({
3603
+ reload: loadPromoter
3604
+ });
3605
+ return (_ctx, _cache) => {
3606
+ return openBlock(), createElementBlock("div", _hoisted_1$i, [
3607
+ _ctx.useCase === "company" && _ctx.isAdmin ? (openBlock(), createElementBlock("div", _hoisted_2$d, [
3608
+ createElementVNode(
3609
+ "div",
3610
+ {
3611
+ class: normalizeClass(["promoter-card-tab-item", { focus: tab.value === "person" }]),
3612
+ onClick: _cache[0] || (_cache[0] = ($event) => onTabChange("person"))
3613
+ },
3614
+ "\u4E2A\u4EBA",
3615
+ 2
3616
+ /* CLASS */
3617
+ ),
3618
+ createElementVNode(
3619
+ "div",
3620
+ {
3621
+ class: normalizeClass(["promoter-card-tab-item", { focus: tab.value === "company" }]),
3622
+ onClick: _cache[1] || (_cache[1] = ($event) => onTabChange("company"))
3623
+ },
3624
+ "\u4F01\u4E1A",
3625
+ 2
3626
+ /* CLASS */
3627
+ )
3628
+ ])) : createCommentVNode("v-if", true),
3629
+ _ctx.applyRecord.distributorFlag === "Y" || _ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", {
3630
+ key: 1,
3631
+ class: "promoter-card-hd",
3632
+ onClick: _cache[2] || (_cache[2] = ($event) => emits("blance", tab.value))
3633
+ }, [
3634
+ createElementVNode(
3635
+ "div",
3636
+ _hoisted_3$8,
3637
+ toDisplayString(promoter.value.total),
3638
+ 1
3639
+ /* TEXT */
3640
+ ),
3641
+ _cache[5] || (_cache[5] = createElementVNode(
3642
+ "div",
3643
+ { class: "promoter-card-hd-info" },
3644
+ "\u53EF\u63D0\u73B0\u4F59\u989D(\u5143)",
3645
+ -1
3646
+ /* HOISTED */
3647
+ )),
3648
+ _cache[6] || (_cache[6] = createElementVNode(
3649
+ "img",
3650
+ {
3651
+ class: "arrow-img",
3652
+ src: "https://cdn.ddjf.com/static/images/appkit/arrow.png",
3653
+ alt: ""
3654
+ },
3655
+ null,
3656
+ -1
3657
+ /* HOISTED */
3658
+ ))
3659
+ ])) : createCommentVNode("v-if", true),
3660
+ createElementVNode("div", _hoisted_4$6, [
3661
+ _ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", {
3662
+ key: 0,
3663
+ class: "promoter-card-ft-item",
3664
+ onClick: _cache[3] || (_cache[3] = ($event) => emits("profits", tab.value))
3665
+ }, [
3666
+ _cache[8] || (_cache[8] = createElementVNode(
3667
+ "div",
3668
+ { class: "promoter-card-ft-info" },
3669
+ "\u9500\u552E\u7D2F\u8BA1\u6536\u76CA(\u7B14)",
3670
+ -1
3671
+ /* HOISTED */
3672
+ )),
3673
+ createElementVNode("div", _hoisted_5$5, [
3674
+ createTextVNode(
3675
+ toDisplayString(promoter.value.totalIncome) + " ",
3676
+ 1
3677
+ /* TEXT */
3678
+ ),
3679
+ _cache[7] || (_cache[7] = createElementVNode(
3680
+ "img",
3681
+ {
3682
+ class: "arrow-img",
3683
+ src: "https://cdn.ddjf.com/static/images/appkit/arrow.png",
3684
+ alt: ""
3685
+ },
3686
+ null,
3687
+ -1
3688
+ /* HOISTED */
3689
+ ))
3690
+ ])
3691
+ ])) : createCommentVNode("v-if", true),
3692
+ _ctx.applyRecord.accessCheckStatus === "Y" && _ctx.applyRecord.distributorFlag === "Y" ? (openBlock(), createElementBlock("div", _hoisted_6$3)) : createCommentVNode("v-if", true),
3693
+ _ctx.applyRecord.distributorFlag === "Y" ? (openBlock(), createElementBlock("div", {
3694
+ key: 2,
3695
+ class: "promoter-card-ft-item",
3696
+ onClick: _cache[4] || (_cache[4] = ($event) => emits("rebate", tab.value))
3697
+ }, [
3698
+ _cache[10] || (_cache[10] = createElementVNode(
3699
+ "div",
3700
+ { class: "promoter-card-ft-info" },
3701
+ "\u8FD4\u4F63\u7D2F\u8BA1\u6536\u76CA(\u5143)",
3702
+ -1
3703
+ /* HOISTED */
3704
+ )),
3705
+ createElementVNode("div", _hoisted_7$3, [
3706
+ createTextVNode(
3707
+ toDisplayString(promoter.value.totalRebateIncome) + " ",
3708
+ 1
3709
+ /* TEXT */
3710
+ ),
3711
+ _cache[9] || (_cache[9] = createElementVNode(
3712
+ "img",
3713
+ {
3714
+ class: "arrow-img",
3715
+ src: "https://cdn.ddjf.com/static/images/appkit/arrow.png",
3716
+ alt: ""
3717
+ },
3718
+ null,
3719
+ -1
3720
+ /* HOISTED */
3721
+ ))
3722
+ ])
3723
+ ])) : createCommentVNode("v-if", true)
3724
+ ])
3725
+ ]);
3726
+ };
3727
+ }
3728
+ });
3729
+
3730
+ script$l.__file = "src/balance/components/PromoterCard.vue";
3578
3731
 
3579
3732
  var script$k = /* @__PURE__ */ defineComponent({
3580
3733
  __name: "index",
@@ -4651,7 +4804,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4651
4804
  Fragment,
4652
4805
  null,
4653
4806
  renderList(bannerMessages.value, (item, key) => {
4654
- return openBlock(), createBlock(script$E, {
4807
+ return openBlock(), createBlock(script$F, {
4655
4808
  class: normalizeClass({ show: key === activeKey.value }),
4656
4809
  key,
4657
4810
  showClose: item.noticeType === 0,
@@ -7933,4 +8086,4 @@ const AppKit = {
7933
8086
  }
7934
8087
  };
7935
8088
 
7936
- export { script$p as AccountView, script$I as AmountPicker, script$G as AppDrawer, script$F as AppVerify, script$v as BalanceCard, script$o as BalanceReminder, script$n as DateRange, script$D as DeviceVersion, script$l as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$B as OcrBusinessLicense, script$C as OcrIcon, script$H as PageHeader, script$y as RechargeResult, script$A as RechargeView, script$g as SelfRegistration, script$w as TradeView, script$z as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, generateUniqueId, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useLogger, useSafeArea, useTabbar, useUpload, useValidator };
8089
+ export { script$q as AccountView, script$J as AmountPicker, script$H as AppDrawer, script$G as AppVerify, script$w as BalanceCard, script$p as BalanceReminder, script$o as DateRange, script$E as DeviceVersion, script$m as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$C as OcrBusinessLicense, script$D as OcrIcon, script$I as PageHeader, script$l as PromoterCard, script$z as RechargeResult, script$B as RechargeView, script$g as SelfRegistration, script$x as TradeView, script$A as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, generateUniqueId, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useLogger, useSafeArea, useTabbar, useUpload, useValidator };