@uxda/appkit 4.1.54 → 4.1.60

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 +51 -11
  5. package/dist/index.js +515 -297
  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 +133 -133
  12. package/src/balance/api/index.ts +106 -106
  13. package/src/balance/components/AccountView.vue +750 -749
  14. package/src/balance/components/BalanceCard.vue +215 -215
  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 +250 -250
  19. package/src/balance/components/DateRange.vue +80 -80
  20. package/src/balance/components/ListFilter.vue +62 -63
  21. package/src/balance/components/ListFilterPicker.vue +191 -192
  22. package/src/balance/components/PromoterCard.vue +237 -237
  23. package/src/balance/components/SecondBalance.vue +71 -71
  24. package/src/balance/components/Tip.vue +45 -45
  25. package/src/balance/components/index.ts +8 -8
  26. package/src/balance/types.ts +97 -97
  27. package/src/components/bt-cropper/index.vue +774 -774
  28. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  29. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  30. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  31. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  32. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  33. package/src/components/bt-cropper/utils/ratio.js +3 -3
  34. package/src/components/bt-cropper/utils/tools.js +25 -25
  35. package/src/components/dd-area/index.vue +225 -225
  36. package/src/components/dd-icon/doc.md +21 -21
  37. package/src/components/dd-icon/index.vue +23 -23
  38. package/src/components/dd-notice-bar/index.vue +78 -78
  39. package/src/components/dd-search/doc.md +34 -34
  40. package/src/components/dd-search/index.vue +168 -168
  41. package/src/components/dd-selector/index.vue +124 -124
  42. package/src/components/dd-skeleton/doc.md +19 -19
  43. package/src/components/dd-skeleton/index.vue +36 -36
  44. package/src/global.ts +6 -6
  45. package/src/index.ts +89 -89
  46. package/src/main.scss +1 -1
  47. package/src/notice/api/endpoints.ts +17 -17
  48. package/src/notice/api/index.ts +106 -106
  49. package/src/notice/components/NoticeBanner.vue +243 -243
  50. package/src/notice/components/NoticeEntry.vue +99 -99
  51. package/src/notice/components/NoticeList.vue +315 -315
  52. package/src/notice/components/NoticePopup.vue +162 -162
  53. package/src/notice/components/index.ts +5 -5
  54. package/src/notice/components/useCommonList.ts +86 -86
  55. package/src/notice/components/useNotice.ts +35 -35
  56. package/src/notice/index.ts +1 -1
  57. package/src/notice/types.ts +25 -25
  58. package/src/payment/api/config.ts +7 -7
  59. package/src/payment/api/endpoints.ts +103 -103
  60. package/src/payment/api/index.ts +100 -100
  61. package/src/payment/components/AmountPicker.vue +90 -90
  62. package/src/payment/components/RechargeResult.vue +69 -69
  63. package/src/payment/components/RechargeView.vue +155 -155
  64. package/src/payment/components/RightsPicker.vue +105 -105
  65. package/src/payment/components/TradeView.vue +317 -317
  66. package/src/payment/components/UserAgreement.vue +234 -234
  67. package/src/payment/components/index.ts +22 -22
  68. package/src/payment/index.ts +5 -5
  69. package/src/payment/services/index.ts +16 -16
  70. package/src/payment/services/invoke-recharge.ts +25 -25
  71. package/src/payment/services/request-payment.ts +58 -58
  72. package/src/payment/types.ts +28 -28
  73. package/src/register/components/SelfRegistration.vue +233 -233
  74. package/src/register/components/index.ts +2 -2
  75. package/src/shared/components/AppDrawer.vue +54 -58
  76. package/src/shared/components/AppVerify.vue +128 -129
  77. package/src/shared/components/DeviceVersion.vue +68 -68
  78. package/src/shared/components/EmptyView.vue +33 -33
  79. package/src/shared/components/OcrBusinessLicense.vue +130 -130
  80. package/src/shared/components/OcrIcon.vue +202 -202
  81. package/src/shared/components/PageHeader.vue +79 -79
  82. package/src/shared/components/index.ts +8 -8
  83. package/src/shared/composables/index.ts +8 -8
  84. package/src/shared/composables/useAmount.ts +46 -46
  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/vars.scss +3 -3
  100. package/src/user/api/endpoints.ts +17 -17
  101. package/src/user/api/index.ts +111 -111
  102. package/src/user/components/LoginSetting.vue +114 -114
  103. package/src/user/components/UserAuth.vue +216 -0
  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 +133 -133
  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 +723 -637
  111. package/src/user/components/UserResourceEmpty.vue +75 -75
  112. package/src/user/components/index.ts +23 -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
  117. package/dist/assets/asset-3B_CoPto +0 -1
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import '@nutui/nutui-taro/dist/packages/griditem/style/css';
7
7
  import Taro, { useDidShow, useRouter } from '@tarojs/taro';
8
8
  import '@nutui/nutui-taro/dist/packages/popup/style/css';
9
9
  import { isIdentityCard, isMobilePhone } from 'validator';
10
- import { NsForm, NsInput, NsButton, NsIcon, usePopup, useNutshell } from '@uxda/nutshell/taro';
10
+ import { NsForm, NsInput, NsButton, NsIcon, usePopup, useNutshell, NsPage, NsPageContent, NsCard, NsCheckbox } from '@uxda/nutshell/taro';
11
11
  import '@nutui/nutui-taro/dist/packages/actionsheet/style/css';
12
12
  import debounce from 'lodash/debounce';
13
13
  import '@nutui/nutui-taro/dist/packages/dialog/style/css';
@@ -25,9 +25,9 @@ import '@nutui/nutui-taro/dist/packages/skeleton/style/css';
25
25
  import '@nutui/nutui-taro/dist/packages/steps/style/css';
26
26
  import '@nutui/nutui-taro/dist/packages/step/style/css';
27
27
 
28
- const _hoisted_1$C = { class: "token-line number" };
29
- const _hoisted_2$p = { class: "number" };
30
- var script$I = /* @__PURE__ */ defineComponent({
28
+ const _hoisted_1$D = { class: "token-line number" };
29
+ const _hoisted_2$q = { class: "number" };
30
+ var script$J = /* @__PURE__ */ defineComponent({
31
31
  __name: "AmountPicker",
32
32
  props: {
33
33
  items: { type: Array, required: true, default: () => [] },
@@ -65,7 +65,7 @@ var script$I = /* @__PURE__ */ defineComponent({
65
65
  default: withCtx(() => [
66
66
  createElementVNode(
67
67
  "h4",
68
- _hoisted_1$C,
68
+ _hoisted_1$D,
69
69
  toDisplayString(amount.token),
70
70
  1
71
71
  /* TEXT */
@@ -74,7 +74,7 @@ var script$I = /* @__PURE__ */ defineComponent({
74
74
  _cache[0] || (_cache[0] = createTextVNode("\xA5")),
75
75
  createElementVNode(
76
76
  "span",
77
- _hoisted_2$p,
77
+ _hoisted_2$q,
78
78
  toDisplayString(amount.amount),
79
79
  1
80
80
  /* TEXT */
@@ -96,7 +96,7 @@ var script$I = /* @__PURE__ */ defineComponent({
96
96
  }
97
97
  });
98
98
 
99
- script$I.__file = "src/payment/components/AmountPicker.vue";
99
+ script$J.__file = "src/payment/components/AmountPicker.vue";
100
100
 
101
101
  function requestPayment$2(json) {
102
102
  return new Promise((resolve, reject) => {
@@ -425,11 +425,11 @@ function useLogger(options) {
425
425
  };
426
426
  }
427
427
 
428
- const _hoisted_1$B = {
428
+ const _hoisted_1$C = {
429
429
  key: 0,
430
430
  class: "page-title"
431
431
  };
432
- var script$H = /* @__PURE__ */ defineComponent({
432
+ var script$I = /* @__PURE__ */ defineComponent({
433
433
  __name: "PageHeader",
434
434
  props: {
435
435
  title: { type: String, required: false, default: "" },
@@ -459,7 +459,7 @@ var script$H = /* @__PURE__ */ defineComponent({
459
459
  [
460
460
  _ctx.title ? (openBlock(), createElementBlock(
461
461
  "h1",
462
- _hoisted_1$B,
462
+ _hoisted_1$C,
463
463
  toDisplayString(_ctx.title),
464
464
  1
465
465
  /* TEXT */
@@ -477,10 +477,10 @@ var script$H = /* @__PURE__ */ defineComponent({
477
477
  }
478
478
  });
479
479
 
480
- script$H.__file = "src/shared/components/PageHeader.vue";
480
+ script$I.__file = "src/shared/components/PageHeader.vue";
481
481
 
482
- const _hoisted_1$A = { class: "drawer-body" };
483
- var script$G = /* @__PURE__ */ defineComponent({
482
+ const _hoisted_1$B = { class: "drawer-body" };
483
+ var script$H = /* @__PURE__ */ defineComponent({
484
484
  __name: "AppDrawer",
485
485
  props: {
486
486
  modelValue: { type: Boolean, required: true },
@@ -504,11 +504,11 @@ var script$G = /* @__PURE__ */ defineComponent({
504
504
  "onUpdate:visible": onVisibleChange
505
505
  }, {
506
506
  default: withCtx(() => [
507
- createVNode(script$H, {
507
+ createVNode(script$I, {
508
508
  title: _ctx.title,
509
509
  onClose: onPageHeaderClose
510
510
  }, null, 8, ["title"]),
511
- createElementVNode("div", _hoisted_1$A, [
511
+ createElementVNode("div", _hoisted_1$B, [
512
512
  renderSlot(_ctx.$slots, "default")
513
513
  ])
514
514
  ]),
@@ -519,10 +519,10 @@ var script$G = /* @__PURE__ */ defineComponent({
519
519
  }
520
520
  });
521
521
 
522
- script$G.__file = "src/shared/components/AppDrawer.vue";
522
+ script$H.__file = "src/shared/components/AppDrawer.vue";
523
523
 
524
- const _hoisted_1$z = { class: "app-verify column" };
525
- const _hoisted_2$o = { class: "caption" };
524
+ const _hoisted_1$A = { class: "app-verify column" };
525
+ const _hoisted_2$p = { class: "caption" };
526
526
  const _hoisted_3$j = { class: "number" };
527
527
  const _hoisted_4$f = { class: "form-btn" };
528
528
  const _hoisted_5$b = {
@@ -530,7 +530,7 @@ const _hoisted_5$b = {
530
530
  class: "caption"
531
531
  };
532
532
  const _hoisted_6$6 = { class: "row buttons" };
533
- var script$F = /* @__PURE__ */ defineComponent({
533
+ var script$G = /* @__PURE__ */ defineComponent({
534
534
  __name: "AppVerify",
535
535
  props: {
536
536
  phone: { type: String, required: true },
@@ -562,7 +562,7 @@ var script$F = /* @__PURE__ */ defineComponent({
562
562
  };
563
563
  const props = __props;
564
564
  return (_ctx, _cache) => {
565
- return openBlock(), createElementBlock("div", _hoisted_1$z, [
565
+ return openBlock(), createElementBlock("div", _hoisted_1$A, [
566
566
  createElementVNode(
567
567
  "h2",
568
568
  null,
@@ -572,7 +572,7 @@ var script$F = /* @__PURE__ */ defineComponent({
572
572
  ),
573
573
  createElementVNode(
574
574
  "p",
575
- _hoisted_2$o,
575
+ _hoisted_2$p,
576
576
  toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
577
577
  1
578
578
  /* TEXT */
@@ -652,10 +652,10 @@ var script$F = /* @__PURE__ */ defineComponent({
652
652
  }
653
653
  });
654
654
 
655
- script$F.__file = "src/shared/components/AppVerify.vue";
655
+ script$G.__file = "src/shared/components/AppVerify.vue";
656
656
 
657
- const _hoisted_1$y = { key: 0 };
658
- var script$E = /* @__PURE__ */ defineComponent({
657
+ const _hoisted_1$z = { key: 0 };
658
+ var script$F = /* @__PURE__ */ defineComponent({
659
659
  __name: "index",
660
660
  props: {
661
661
  text: { type: String, required: false },
@@ -686,7 +686,7 @@ var script$E = /* @__PURE__ */ defineComponent({
686
686
  }, [
687
687
  _ctx.text ? (openBlock(), createElementBlock(
688
688
  "span",
689
- _hoisted_1$y,
689
+ _hoisted_1$z,
690
690
  toDisplayString(_ctx.text),
691
691
  1
692
692
  /* TEXT */
@@ -717,7 +717,7 @@ var script$E = /* @__PURE__ */ defineComponent({
717
717
  }
718
718
  });
719
719
 
720
- script$E.__file = "src/components/dd-notice-bar/index.vue";
720
+ script$F.__file = "src/components/dd-notice-bar/index.vue";
721
721
 
722
722
  const typeMappings = {
723
723
  CZ: "\u5145\u503C",
@@ -913,7 +913,7 @@ function useHttp$3() {
913
913
  return $http;
914
914
  }
915
915
 
916
- var script$D = /* @__PURE__ */ defineComponent({
916
+ var script$E = /* @__PURE__ */ defineComponent({
917
917
  __name: "DeviceVersion",
918
918
  setup(__props) {
919
919
  const showAlert = ref(false);
@@ -952,7 +952,7 @@ var script$D = /* @__PURE__ */ defineComponent({
952
952
  }
953
953
  });
954
954
  return (_ctx, _cache) => {
955
- return showAlert.value ? (openBlock(), createBlock(script$E, {
955
+ return showAlert.value ? (openBlock(), createBlock(script$F, {
956
956
  key: 0,
957
957
  showClose: "",
958
958
  style: normalizeStyle(topStype.value),
@@ -963,9 +963,9 @@ var script$D = /* @__PURE__ */ defineComponent({
963
963
  }
964
964
  });
965
965
 
966
- script$D.__file = "src/shared/components/DeviceVersion.vue";
966
+ script$E.__file = "src/shared/components/DeviceVersion.vue";
967
967
 
968
- var script$C = /* @__PURE__ */ defineComponent({
968
+ var script$D = /* @__PURE__ */ defineComponent({
969
969
  __name: "OcrIcon",
970
970
  props: {
971
971
  disabled: { type: Boolean, required: false, default: false },
@@ -1131,9 +1131,9 @@ var script$C = /* @__PURE__ */ defineComponent({
1131
1131
  }
1132
1132
  });
1133
1133
 
1134
- script$C.__file = "src/shared/components/OcrIcon.vue";
1134
+ script$D.__file = "src/shared/components/OcrIcon.vue";
1135
1135
 
1136
- var script$B = /* @__PURE__ */ defineComponent({
1136
+ var script$C = /* @__PURE__ */ defineComponent({
1137
1137
  __name: "OcrBusinessLicense",
1138
1138
  props: {
1139
1139
  disabled: { type: Boolean, required: true }
@@ -1240,7 +1240,7 @@ var script$B = /* @__PURE__ */ defineComponent({
1240
1240
  }
1241
1241
  });
1242
1242
 
1243
- script$B.__file = "src/shared/components/OcrBusinessLicense.vue";
1243
+ script$C.__file = "src/shared/components/OcrBusinessLicense.vue";
1244
1244
 
1245
1245
  var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
1246
1246
  HttpMethod2["get"] = "GET";
@@ -1560,11 +1560,11 @@ const services$1 = [
1560
1560
  invokeRecharge$1
1561
1561
  ];
1562
1562
 
1563
- const _hoisted_1$x = { class: "view recharge-view" };
1564
- const _hoisted_2$n = { class: "flex-grow" };
1563
+ const _hoisted_1$y = { class: "view recharge-view" };
1564
+ const _hoisted_2$o = { class: "flex-grow" };
1565
1565
  const _hoisted_3$i = { class: "amount-footer" };
1566
1566
  const _hoisted_4$e = { class: "agreement" };
1567
- var script$A = /* @__PURE__ */ defineComponent({
1567
+ var script$B = /* @__PURE__ */ defineComponent({
1568
1568
  __name: "RechargeView",
1569
1569
  props: {
1570
1570
  app: { type: String, required: true },
@@ -1628,9 +1628,9 @@ var script$A = /* @__PURE__ */ defineComponent({
1628
1628
  return (_ctx, _cache) => {
1629
1629
  const _component_nut_checkbox = Checkbox;
1630
1630
  const _component_nut_button = Button;
1631
- return openBlock(), createElementBlock("view", _hoisted_1$x, [
1632
- createElementVNode("view", _hoisted_2$n, [
1633
- createVNode(script$I, {
1631
+ return openBlock(), createElementBlock("view", _hoisted_1$y, [
1632
+ createElementVNode("view", _hoisted_2$o, [
1633
+ createVNode(script$J, {
1634
1634
  items: amounts.value,
1635
1635
  selected: state.selected,
1636
1636
  onChange: onAmountSelect
@@ -1672,22 +1672,22 @@ var script$A = /* @__PURE__ */ defineComponent({
1672
1672
  }
1673
1673
  });
1674
1674
 
1675
- script$A.__file = "src/payment/components/RechargeView.vue";
1675
+ script$B.__file = "src/payment/components/RechargeView.vue";
1676
1676
 
1677
- const _hoisted_1$w = { class: "agreement-doc" };
1677
+ const _hoisted_1$x = { class: "agreement-doc" };
1678
1678
  function render$2(_ctx, _cache) {
1679
- return openBlock(), createElementBlock("view", _hoisted_1$w, _cache[0] || (_cache[0] = [
1679
+ return openBlock(), createElementBlock("view", _hoisted_1$x, _cache[0] || (_cache[0] = [
1680
1680
  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)
1681
1681
  ]));
1682
1682
  }
1683
1683
 
1684
- /* unplugin-vue-components disabled */const script$z = {};
1684
+ /* unplugin-vue-components disabled */const script$A = {};
1685
1685
 
1686
- script$z.render = render$2;
1687
- script$z.__file = "src/payment/components/UserAgreement.vue";
1686
+ script$A.render = render$2;
1687
+ script$A.__file = "src/payment/components/UserAgreement.vue";
1688
1688
 
1689
- const _hoisted_1$v = { class: "recharge-result" };
1690
- const _hoisted_2$m = { class: "content" };
1689
+ const _hoisted_1$w = { class: "recharge-result" };
1690
+ const _hoisted_2$n = { class: "content" };
1691
1691
  const _hoisted_3$h = {
1692
1692
  key: 0,
1693
1693
  class: "caption"
@@ -1696,7 +1696,7 @@ const _hoisted_4$d = {
1696
1696
  key: 1,
1697
1697
  class: "caption"
1698
1698
  };
1699
- var script$y = /* @__PURE__ */ defineComponent({
1699
+ var script$z = /* @__PURE__ */ defineComponent({
1700
1700
  __name: "RechargeResult",
1701
1701
  props: {
1702
1702
  type: { type: String, required: true, default: "recharge" },
@@ -1714,8 +1714,8 @@ var script$y = /* @__PURE__ */ defineComponent({
1714
1714
  }
1715
1715
  return (_ctx, _cache) => {
1716
1716
  const _component_nut_button = Button;
1717
- return openBlock(), createElementBlock("div", _hoisted_1$v, [
1718
- createElementVNode("div", _hoisted_2$m, [
1717
+ return openBlock(), createElementBlock("div", _hoisted_1$w, [
1718
+ createElementVNode("div", _hoisted_2$n, [
1719
1719
  _cache[1] || (_cache[1] = createElementVNode(
1720
1720
  "div",
1721
1721
  { class: "figure" },
@@ -1754,12 +1754,12 @@ var script$y = /* @__PURE__ */ defineComponent({
1754
1754
  }
1755
1755
  });
1756
1756
 
1757
- script$y.__file = "src/payment/components/RechargeResult.vue";
1757
+ script$z.__file = "src/payment/components/RechargeResult.vue";
1758
1758
 
1759
- const _hoisted_1$u = { class: "tag" };
1760
- const _hoisted_2$l = { class: "token-line number" };
1759
+ const _hoisted_1$v = { class: "tag" };
1760
+ const _hoisted_2$m = { class: "token-line number" };
1761
1761
  const _hoisted_3$g = { class: "number" };
1762
- var script$x = /* @__PURE__ */ defineComponent({
1762
+ var script$y = /* @__PURE__ */ defineComponent({
1763
1763
  __name: "RightsPicker",
1764
1764
  props: {
1765
1765
  items: { type: Array, required: true, default: () => [] },
@@ -1797,14 +1797,14 @@ var script$x = /* @__PURE__ */ defineComponent({
1797
1797
  default: withCtx(() => [
1798
1798
  createElementVNode(
1799
1799
  "div",
1800
- _hoisted_1$u,
1800
+ _hoisted_1$v,
1801
1801
  toDisplayString(amount.paymentDesc),
1802
1802
  1
1803
1803
  /* TEXT */
1804
1804
  ),
1805
1805
  createElementVNode(
1806
1806
  "h4",
1807
- _hoisted_2$l,
1807
+ _hoisted_2$m,
1808
1808
  toDisplayString(amount.priceRightNum) + "\u7B14",
1809
1809
  1
1810
1810
  /* TEXT */
@@ -1835,7 +1835,7 @@ var script$x = /* @__PURE__ */ defineComponent({
1835
1835
  }
1836
1836
  });
1837
1837
 
1838
- script$x.__file = "src/payment/components/RightsPicker.vue";
1838
+ script$y.__file = "src/payment/components/RightsPicker.vue";
1839
1839
 
1840
1840
  function useAmount() {
1841
1841
  function limitDecimal(value, precision = 1) {
@@ -1863,8 +1863,8 @@ function useAmount() {
1863
1863
  };
1864
1864
  }
1865
1865
 
1866
- const _hoisted_1$t = { class: "view recharge-view2" };
1867
- const _hoisted_2$k = { class: "flex-grow" };
1866
+ const _hoisted_1$u = { class: "view recharge-view2" };
1867
+ const _hoisted_2$l = { class: "flex-grow" };
1868
1868
  const _hoisted_3$f = {
1869
1869
  key: 0,
1870
1870
  class: "bean-buy"
@@ -1891,7 +1891,7 @@ const _hoisted_13$2 = { class: "amount" };
1891
1891
  const _hoisted_14$2 = { class: "item" };
1892
1892
  const _hoisted_15$2 = { class: "item" };
1893
1893
  const _hoisted_16$2 = { class: "item" };
1894
- var script$w = /* @__PURE__ */ defineComponent({
1894
+ var script$x = /* @__PURE__ */ defineComponent({
1895
1895
  __name: "TradeView",
1896
1896
  props: {
1897
1897
  app: { type: String, required: true },
@@ -1981,9 +1981,9 @@ var script$w = /* @__PURE__ */ defineComponent({
1981
1981
  const _component_nut_checkbox = Checkbox;
1982
1982
  const _component_nut_button = Button;
1983
1983
  const _component_nut_dialog = Dialog;
1984
- return openBlock(), createElementBlock("view", _hoisted_1$t, [
1985
- createElementVNode("view", _hoisted_2$k, [
1986
- createVNode(script$x, {
1984
+ return openBlock(), createElementBlock("view", _hoisted_1$u, [
1985
+ createElementVNode("view", _hoisted_2$l, [
1986
+ createVNode(script$y, {
1987
1987
  items: amounts.value,
1988
1988
  selected: state.selected,
1989
1989
  onChange: onAmountSelect
@@ -2127,22 +2127,22 @@ var script$w = /* @__PURE__ */ defineComponent({
2127
2127
  }
2128
2128
  });
2129
2129
 
2130
- script$w.__file = "src/payment/components/TradeView.vue";
2130
+ script$x.__file = "src/payment/components/TradeView.vue";
2131
2131
 
2132
2132
  const components = {
2133
- AmountPicker: script$I,
2134
- RechargeView: script$A,
2135
- UserAgreement: script$z,
2136
- RechargeResult: script$y,
2137
- TradeView: script$w
2133
+ AmountPicker: script$J,
2134
+ RechargeView: script$B,
2135
+ UserAgreement: script$A,
2136
+ RechargeResult: script$z,
2137
+ TradeView: script$x
2138
2138
  };
2139
2139
 
2140
- const _hoisted_1$s = { class: "account-card" };
2141
- const _hoisted_2$j = { class: "card" };
2140
+ const _hoisted_1$t = { class: "account-card" };
2141
+ const _hoisted_2$k = { class: "card" };
2142
2142
  const _hoisted_3$e = { class: "card-row" };
2143
2143
  const _hoisted_4$b = { class: "card-row-left" };
2144
2144
  const _hoisted_5$9 = { class: "bean-nums number" };
2145
- var script$v = /* @__PURE__ */ defineComponent({
2145
+ var script$w = /* @__PURE__ */ defineComponent({
2146
2146
  __name: "BalanceCard",
2147
2147
  props: {
2148
2148
  app: { type: String, required: true, default: "" }
@@ -2183,8 +2183,8 @@ var script$v = /* @__PURE__ */ defineComponent({
2183
2183
  reload: loadBalance
2184
2184
  });
2185
2185
  return (_ctx, _cache) => {
2186
- return openBlock(), createElementBlock("div", _hoisted_1$s, [
2187
- createElementVNode("div", _hoisted_2$j, [
2186
+ return openBlock(), createElementBlock("div", _hoisted_1$t, [
2187
+ createElementVNode("div", _hoisted_2$k, [
2188
2188
  createElementVNode("div", _hoisted_3$e, [
2189
2189
  createElementVNode("div", _hoisted_4$b, [
2190
2190
  _cache[0] || (_cache[0] = createElementVNode(
@@ -2237,14 +2237,14 @@ var script$v = /* @__PURE__ */ defineComponent({
2237
2237
  ]))
2238
2238
  ])
2239
2239
  ]),
2240
- 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> ')
2240
+ createCommentVNode(' <div class="line"></div>\n <div class="card-row">\n <div class="card-row-left desc">\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46</div>\n <div class="card-row-right">\n <div class="pay" @click="gotoRecharge">\n <div>\u5145\u503C</div>\n <img\n class="pay-icon"\n src="https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"\n />\n </div>\n </div>\n </div> ')
2241
2241
  ])
2242
2242
  ]);
2243
2243
  };
2244
2244
  }
2245
2245
  });
2246
2246
 
2247
- script$v.__file = "src/balance/components/BalanceCard.vue";
2247
+ script$w.__file = "src/balance/components/BalanceCard.vue";
2248
2248
 
2249
2249
  const consumptionTypes = [
2250
2250
  "\u5168\u90E8",
@@ -2261,12 +2261,12 @@ const consumptionTypes = [
2261
2261
  const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
2262
2262
  const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
2263
2263
 
2264
- const _hoisted_1$r = { class: "consumption-filter" };
2265
- const _hoisted_2$i = { class: "consumption-filter-content" };
2264
+ const _hoisted_1$s = { class: "consumption-filter" };
2265
+ const _hoisted_2$j = { class: "consumption-filter-content" };
2266
2266
  const _hoisted_3$d = { class: "title" };
2267
2267
  const _hoisted_4$a = { class: "info" };
2268
2268
  const _hoisted_5$8 = ["onClick"];
2269
- var script$u = /* @__PURE__ */ defineComponent({
2269
+ var script$v = /* @__PURE__ */ defineComponent({
2270
2270
  __name: "ConsumptionFilter",
2271
2271
  props: {
2272
2272
  modelValue: { type: Array, required: true, default: () => ["\u5168\u90E8", "\u5168\u90E8", "\u5168\u90E8", ""] }
@@ -2318,7 +2318,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2318
2318
  emit("complete", result);
2319
2319
  };
2320
2320
  return (_ctx, _cache) => {
2321
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
2321
+ return openBlock(), createElementBlock("div", _hoisted_1$s, [
2322
2322
  _cache[0] || (_cache[0] = createElementVNode(
2323
2323
  "div",
2324
2324
  { class: "consumption-filter-title" },
@@ -2328,7 +2328,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2328
2328
  -1
2329
2329
  /* HOISTED */
2330
2330
  )),
2331
- createElementVNode("div", _hoisted_2$i, [
2331
+ createElementVNode("div", _hoisted_2$j, [
2332
2332
  (openBlock(true), createElementBlock(
2333
2333
  Fragment,
2334
2334
  null,
@@ -2390,12 +2390,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2390
2390
  }
2391
2391
  });
2392
2392
 
2393
- script$u.__file = "src/balance/components/ConsumptionFilter.vue";
2393
+ script$v.__file = "src/balance/components/ConsumptionFilter.vue";
2394
2394
 
2395
- const _hoisted_1$q = { class: "appkit-date-filter" };
2396
- const _hoisted_2$h = { class: "content" };
2395
+ const _hoisted_1$r = { class: "appkit-date-filter" };
2396
+ const _hoisted_2$i = { class: "content" };
2397
2397
  const _hoisted_3$c = { class: "time" };
2398
- var script$t = /* @__PURE__ */ defineComponent({
2398
+ var script$u = /* @__PURE__ */ defineComponent({
2399
2399
  __name: "DateFilter",
2400
2400
  props: {
2401
2401
  from: { type: String, required: true },
@@ -2464,7 +2464,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2464
2464
  return (_ctx, _cache) => {
2465
2465
  const _component_nut_date_picker = DatePicker;
2466
2466
  const _component_nut_popup = Popup;
2467
- return openBlock(), createElementBlock("div", _hoisted_1$q, [
2467
+ return openBlock(), createElementBlock("div", _hoisted_1$r, [
2468
2468
  _cache[6] || (_cache[6] = createElementVNode(
2469
2469
  "div",
2470
2470
  { class: "date-filter-header" },
@@ -2472,7 +2472,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2472
2472
  -1
2473
2473
  /* HOISTED */
2474
2474
  )),
2475
- createElementVNode("div", _hoisted_2$h, [
2475
+ createElementVNode("div", _hoisted_2$i, [
2476
2476
  _cache[5] || (_cache[5] = createElementVNode(
2477
2477
  "div",
2478
2478
  { class: "title" },
@@ -2554,16 +2554,16 @@ var script$t = /* @__PURE__ */ defineComponent({
2554
2554
  }
2555
2555
  });
2556
2556
 
2557
- script$t.__file = "src/balance/components/DateFilter.vue";
2557
+ script$u.__file = "src/balance/components/DateFilter.vue";
2558
2558
 
2559
- const _hoisted_1$p = { class: "consumption-rules" };
2560
- var script$s = /* @__PURE__ */ defineComponent({
2559
+ const _hoisted_1$q = { class: "consumption-rules" };
2560
+ var script$t = /* @__PURE__ */ defineComponent({
2561
2561
  __name: "ConsumptionRules",
2562
2562
  emits: ["complete"],
2563
2563
  setup(__props, { emit: __emit }) {
2564
2564
  const emit = __emit;
2565
2565
  return (_ctx, _cache) => {
2566
- return openBlock(), createElementBlock("div", _hoisted_1$p, [
2566
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [
2567
2567
  _cache[1] || (_cache[1] = createElementVNode(
2568
2568
  "div",
2569
2569
  { class: "title" },
@@ -2595,11 +2595,11 @@ var script$s = /* @__PURE__ */ defineComponent({
2595
2595
  }
2596
2596
  });
2597
2597
 
2598
- script$s.__file = "src/balance/components/ConsumptionRules.vue";
2598
+ script$t.__file = "src/balance/components/ConsumptionRules.vue";
2599
2599
 
2600
- const _hoisted_1$o = { class: "empty-view" };
2600
+ const _hoisted_1$p = { class: "empty-view" };
2601
2601
  function render$1(_ctx, _cache) {
2602
- return openBlock(), createElementBlock("div", _hoisted_1$o, _cache[0] || (_cache[0] = [
2602
+ return openBlock(), createElementBlock("div", _hoisted_1$p, _cache[0] || (_cache[0] = [
2603
2603
  createElementVNode(
2604
2604
  "img",
2605
2605
  {
@@ -2620,16 +2620,16 @@ function render$1(_ctx, _cache) {
2620
2620
  ]));
2621
2621
  }
2622
2622
 
2623
- /* unplugin-vue-components disabled */const script$r = {};
2623
+ /* unplugin-vue-components disabled */const script$s = {};
2624
2624
 
2625
- script$r.render = render$1;
2626
- script$r.__file = "src/shared/components/EmptyView.vue";
2625
+ script$s.render = render$1;
2626
+ script$s.__file = "src/shared/components/EmptyView.vue";
2627
2627
 
2628
- const _hoisted_1$n = {
2628
+ const _hoisted_1$o = {
2629
2629
  key: 0,
2630
2630
  class: "tip"
2631
2631
  };
2632
- var script$q = /* @__PURE__ */ defineComponent({
2632
+ var script$r = /* @__PURE__ */ defineComponent({
2633
2633
  __name: "Tip",
2634
2634
  setup(__props) {
2635
2635
  const show = ref(false);
@@ -2641,7 +2641,7 @@ var script$q = /* @__PURE__ */ defineComponent({
2641
2641
  }
2642
2642
  });
2643
2643
  return (_ctx, _cache) => {
2644
- return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2644
+ return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$o, _cache[0] || (_cache[0] = [
2645
2645
  createElementVNode(
2646
2646
  "img",
2647
2647
  {
@@ -2664,10 +2664,10 @@ var script$q = /* @__PURE__ */ defineComponent({
2664
2664
  }
2665
2665
  });
2666
2666
 
2667
- script$q.__file = "src/balance/components/Tip.vue";
2667
+ script$r.__file = "src/balance/components/Tip.vue";
2668
2668
 
2669
- const _hoisted_1$m = { class: "account-view" };
2670
- const _hoisted_2$g = { class: "scroll-content" };
2669
+ const _hoisted_1$n = { class: "account-view" };
2670
+ const _hoisted_2$h = { class: "scroll-content" };
2671
2671
  const _hoisted_3$b = { class: "balance" };
2672
2672
  const _hoisted_4$9 = { class: "bean-box spa-between" };
2673
2673
  const _hoisted_5$7 = { class: "bean-counts spa-between" };
@@ -2700,9 +2700,9 @@ const _hoisted_21$1 = {
2700
2700
  class: "box"
2701
2701
  };
2702
2702
  const _hoisted_22$1 = { class: "title number" };
2703
- const _hoisted_23 = { class: "item-type" };
2704
- const _hoisted_24 = { class: "item-detail" };
2705
- const _hoisted_25 = { class: "item-info spa-between" };
2703
+ const _hoisted_23$1 = { class: "item-type" };
2704
+ const _hoisted_24$1 = { class: "item-detail" };
2705
+ const _hoisted_25$1 = { class: "item-info spa-between" };
2706
2706
  const _hoisted_26 = { class: "item-info-type" };
2707
2707
  const _hoisted_27 = { class: "item-info-title" };
2708
2708
  const _hoisted_28 = { class: "item-info-amount number" };
@@ -2711,7 +2711,7 @@ const _hoisted_30 = {
2711
2711
  key: 0,
2712
2712
  class: "box-not-text"
2713
2713
  };
2714
- var script$p = /* @__PURE__ */ defineComponent({
2714
+ var script$q = /* @__PURE__ */ defineComponent({
2715
2715
  __name: "AccountView",
2716
2716
  props: {
2717
2717
  app: { type: String, required: true, default: "" }
@@ -2797,6 +2797,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2797
2797
  } else {
2798
2798
  reachedLastPage.value = false;
2799
2799
  }
2800
+ }).finally(() => {
2800
2801
  Taro.hideLoading();
2801
2802
  });
2802
2803
  }
@@ -2889,9 +2890,9 @@ var script$p = /* @__PURE__ */ defineComponent({
2889
2890
  Fragment,
2890
2891
  null,
2891
2892
  [
2892
- createElementVNode("div", _hoisted_1$m, [
2893
- createElementVNode("div", _hoisted_2$g, [
2894
- createVNode(unref(script$H), {
2893
+ createElementVNode("div", _hoisted_1$n, [
2894
+ createElementVNode("div", _hoisted_2$h, [
2895
+ createVNode(unref(script$I), {
2895
2896
  title: "\u6211\u7684\u8D26\u6237",
2896
2897
  class: normalizeClass({ "with-background": scrolled.value > 0 }),
2897
2898
  onClose: onPageHeaderClose
@@ -2944,7 +2945,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2944
2945
  }, "\u4E91\u8C46\u5145\u503C")
2945
2946
  ])
2946
2947
  ]),
2947
- createVNode(script$q),
2948
+ createVNode(script$r),
2948
2949
  balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$4, [
2949
2950
  _cache[10] || (_cache[10] = createElementVNode(
2950
2951
  "div",
@@ -3056,7 +3057,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3056
3057
  "close-on-click-overlay": false
3057
3058
  }, {
3058
3059
  default: withCtx(() => [
3059
- createVNode(script$s, {
3060
+ createVNode(script$t, {
3060
3061
  onComplete: _cache[1] || (_cache[1] = ($event) => rulesPopupOpen.value = false)
3061
3062
  })
3062
3063
  ]),
@@ -3072,7 +3073,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3072
3073
  "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event)
3073
3074
  }, {
3074
3075
  default: withCtx(() => [
3075
- datePickerOpen.value ? (openBlock(), createBlock(script$t, {
3076
+ datePickerOpen.value ? (openBlock(), createBlock(script$u, {
3076
3077
  key: 0,
3077
3078
  from: filtering.dateFrom,
3078
3079
  to: filtering.dateTo,
@@ -3092,7 +3093,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3092
3093
  "onUpdate:visible": _cache[4] || (_cache[4] = ($event) => filterOpen.value = $event)
3093
3094
  }, {
3094
3095
  default: withCtx(() => [
3095
- createVNode(script$u, {
3096
+ createVNode(script$v, {
3096
3097
  modelValue: [
3097
3098
  filtering.\u8D26\u6237\u7C7B\u578B,
3098
3099
  filtering.\u6536\u5165\u8FD8\u662F\u652F\u51FA,
@@ -3105,7 +3106,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3105
3106
  _: 1
3106
3107
  /* STABLE */
3107
3108
  }, 8, ["visible"]),
3108
- createVNode(unref(script$G), {
3109
+ createVNode(unref(script$H), {
3109
3110
  modelValue: secondBalanceOpen.value,
3110
3111
  "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => secondBalanceOpen.value = $event),
3111
3112
  title: "\u6536\u652F\u660E\u7EC6"
@@ -3219,13 +3220,13 @@ var script$p = /* @__PURE__ */ defineComponent({
3219
3220
  }, [
3220
3221
  createElementVNode(
3221
3222
  "div",
3222
- _hoisted_23,
3223
+ _hoisted_23$1,
3223
3224
  toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
3224
3225
  1
3225
3226
  /* TEXT */
3226
3227
  ),
3227
- createElementVNode("div", _hoisted_24, [
3228
- createElementVNode("div", _hoisted_25, [
3228
+ createElementVNode("div", _hoisted_24$1, [
3229
+ createElementVNode("div", _hoisted_25$1, [
3229
3230
  createElementVNode("div", null, [
3230
3231
  createElementVNode(
3231
3232
  "div",
@@ -3269,7 +3270,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3269
3270
  /* KEYED_FRAGMENT */
3270
3271
  )),
3271
3272
  reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3272
- ])) : (openBlock(), createBlock(script$r, { key: 1 }))
3273
+ ])) : (openBlock(), createBlock(script$s, { key: 1 }))
3273
3274
  ]),
3274
3275
  _: 1
3275
3276
  /* STABLE */
@@ -3288,13 +3289,13 @@ var script$p = /* @__PURE__ */ defineComponent({
3288
3289
  }
3289
3290
  });
3290
3291
 
3291
- script$p.__file = "src/balance/components/AccountView.vue";
3292
+ script$q.__file = "src/balance/components/AccountView.vue";
3292
3293
 
3293
- const _hoisted_1$l = { class: "balance-reminder" };
3294
- const _hoisted_2$f = { class: "footer" };
3294
+ const _hoisted_1$m = { class: "balance-reminder" };
3295
+ const _hoisted_2$g = { class: "footer" };
3295
3296
  const _hoisted_3$a = { class: "col" };
3296
3297
  const _hoisted_4$8 = { class: "col" };
3297
- var script$o = /* @__PURE__ */ defineComponent({
3298
+ var script$p = /* @__PURE__ */ defineComponent({
3298
3299
  __name: "BalanceReminder",
3299
3300
  props: {
3300
3301
  modelValue: { type: Boolean, required: true, default: () => false },
@@ -3314,7 +3315,7 @@ var script$o = /* @__PURE__ */ defineComponent({
3314
3315
  "close-on-click-overlay": false
3315
3316
  }, {
3316
3317
  default: withCtx(() => [
3317
- createElementVNode("div", _hoisted_1$l, [
3318
+ createElementVNode("div", _hoisted_1$m, [
3318
3319
  _cache[3] || (_cache[3] = createElementVNode(
3319
3320
  "div",
3320
3321
  { class: "body" },
@@ -3325,7 +3326,7 @@ var script$o = /* @__PURE__ */ defineComponent({
3325
3326
  -1
3326
3327
  /* HOISTED */
3327
3328
  )),
3328
- createElementVNode("div", _hoisted_2$f, [
3329
+ createElementVNode("div", _hoisted_2$g, [
3329
3330
  createElementVNode("div", _hoisted_3$a, [
3330
3331
  createVNode(_component_nut_button, {
3331
3332
  class: "cancel-button",
@@ -3366,10 +3367,10 @@ var script$o = /* @__PURE__ */ defineComponent({
3366
3367
  }
3367
3368
  });
3368
3369
 
3369
- script$o.__file = "src/balance/components/BalanceReminder.vue";
3370
+ script$p.__file = "src/balance/components/BalanceReminder.vue";
3370
3371
 
3371
- const _hoisted_1$k = { class: "text" };
3372
- var script$n = /* @__PURE__ */ defineComponent({
3372
+ const _hoisted_1$l = { class: "text" };
3373
+ var script$o = /* @__PURE__ */ defineComponent({
3373
3374
  __name: "DateRange",
3374
3375
  props: {
3375
3376
  "modelValue": {
@@ -3389,7 +3390,8 @@ var script$n = /* @__PURE__ */ defineComponent({
3389
3390
  const openDateRangePicker = () => {
3390
3391
  const child = ref();
3391
3392
  $n.sheet({
3392
- component: script$t,
3393
+ component: script$u,
3394
+ class: "ns-sheet-reset",
3393
3395
  ref: child,
3394
3396
  props: {
3395
3397
  from: model.value.from,
@@ -3418,7 +3420,7 @@ var script$n = /* @__PURE__ */ defineComponent({
3418
3420
  }, [
3419
3421
  createElementVNode(
3420
3422
  "div",
3421
- _hoisted_1$k,
3423
+ _hoisted_1$l,
3422
3424
  toDisplayString(dateRangeDisplay.value),
3423
3425
  1
3424
3426
  /* TEXT */
@@ -3439,14 +3441,14 @@ var script$n = /* @__PURE__ */ defineComponent({
3439
3441
  }
3440
3442
  });
3441
3443
 
3442
- script$n.__file = "src/balance/components/DateRange.vue";
3444
+ script$o.__file = "src/balance/components/DateRange.vue";
3443
3445
 
3444
- const _hoisted_1$j = { class: "list-filter-picker" };
3445
- const _hoisted_2$e = { class: "list-filter-picker-content" };
3446
+ const _hoisted_1$k = { class: "list-filter-picker" };
3447
+ const _hoisted_2$f = { class: "list-filter-picker-content" };
3446
3448
  const _hoisted_3$9 = { class: "title" };
3447
3449
  const _hoisted_4$7 = { class: "info" };
3448
3450
  const _hoisted_5$6 = ["onClick"];
3449
- var script$m = /* @__PURE__ */ defineComponent({
3451
+ var script$n = /* @__PURE__ */ defineComponent({
3450
3452
  __name: "ListFilterPicker",
3451
3453
  props: {
3452
3454
  modelValue: { type: Object, required: true }
@@ -3496,7 +3498,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3496
3498
  emit("complete", result);
3497
3499
  };
3498
3500
  return (_ctx, _cache) => {
3499
- return openBlock(), createElementBlock("div", _hoisted_1$j, [
3501
+ return openBlock(), createElementBlock("div", _hoisted_1$k, [
3500
3502
  _cache[0] || (_cache[0] = createElementVNode(
3501
3503
  "div",
3502
3504
  { class: "list-filter-picker-title" },
@@ -3506,7 +3508,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3506
3508
  -1
3507
3509
  /* HOISTED */
3508
3510
  )),
3509
- createElementVNode("div", _hoisted_2$e, [
3511
+ createElementVNode("div", _hoisted_2$f, [
3510
3512
  (openBlock(true), createElementBlock(
3511
3513
  Fragment,
3512
3514
  null,
@@ -3568,9 +3570,9 @@ var script$m = /* @__PURE__ */ defineComponent({
3568
3570
  }
3569
3571
  });
3570
3572
 
3571
- script$m.__file = "src/balance/components/ListFilterPicker.vue";
3573
+ script$n.__file = "src/balance/components/ListFilterPicker.vue";
3572
3574
 
3573
- var script$l = /* @__PURE__ */ defineComponent({
3575
+ var script$m = /* @__PURE__ */ defineComponent({
3574
3576
  __name: "ListFilter",
3575
3577
  props: {
3576
3578
  "modelValue": {
@@ -3589,7 +3591,8 @@ var script$l = /* @__PURE__ */ defineComponent({
3589
3591
  const emit = __emit;
3590
3592
  const openPicker = () => {
3591
3593
  $n.sheet({
3592
- component: script$m,
3594
+ component: script$n,
3595
+ class: "ns-sheet-reset",
3593
3596
  props: {
3594
3597
  modelValue: model,
3595
3598
  onComplete: (result) => {
@@ -3627,13 +3630,13 @@ var script$l = /* @__PURE__ */ defineComponent({
3627
3630
  }
3628
3631
  });
3629
3632
 
3630
- script$l.__file = "src/balance/components/ListFilter.vue";
3633
+ script$m.__file = "src/balance/components/ListFilter.vue";
3631
3634
 
3632
- const _hoisted_1$i = {
3635
+ const _hoisted_1$j = {
3633
3636
  key: 0,
3634
3637
  class: "promoter-card"
3635
3638
  };
3636
- const _hoisted_2$d = {
3639
+ const _hoisted_2$e = {
3637
3640
  key: 0,
3638
3641
  class: "promoter-card-tab"
3639
3642
  };
@@ -3653,12 +3656,12 @@ const _hoisted_8$3 = {
3653
3656
  class: "promoter-card-ft-item"
3654
3657
  };
3655
3658
  const _hoisted_9$2 = { class: "promoter-card-ft-info" };
3656
- var script$k = /* @__PURE__ */ defineComponent({
3659
+ var script$l = /* @__PURE__ */ defineComponent({
3657
3660
  __name: "PromoterCard",
3658
3661
  props: {
3659
3662
  useCase: { type: String, required: true, default: "" },
3660
3663
  applyRecord: { type: null, required: true, default: {} },
3661
- isAdmin: { type: Boolean, required: false, default: true }
3664
+ isAdmin: { type: Boolean, required: false, default: false }
3662
3665
  },
3663
3666
  emits: [
3664
3667
  /**
@@ -3719,7 +3722,7 @@ var script$k = /* @__PURE__ */ defineComponent({
3719
3722
  });
3720
3723
  }
3721
3724
  return (_ctx, _cache) => {
3722
- return _ctx.applyRecord.distributorFlag === "Y" || _ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", _hoisted_1$i, [
3725
+ return _ctx.applyRecord.distributorFlag === "Y" || _ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", _hoisted_1$j, [
3723
3726
  _cache[13] || (_cache[13] = createElementVNode(
3724
3727
  "img",
3725
3728
  {
@@ -3731,7 +3734,7 @@ var script$k = /* @__PURE__ */ defineComponent({
3731
3734
  -1
3732
3735
  /* HOISTED */
3733
3736
  )),
3734
- _ctx.useCase === "company" && _ctx.isAdmin ? (openBlock(), createElementBlock("div", _hoisted_2$d, [
3737
+ _ctx.useCase === "company" && _ctx.isAdmin ? (openBlock(), createElementBlock("div", _hoisted_2$e, [
3735
3738
  createElementVNode(
3736
3739
  "div",
3737
3740
  {
@@ -3855,9 +3858,9 @@ var script$k = /* @__PURE__ */ defineComponent({
3855
3858
  }
3856
3859
  });
3857
3860
 
3858
- script$k.__file = "src/balance/components/PromoterCard.vue";
3861
+ script$l.__file = "src/balance/components/PromoterCard.vue";
3859
3862
 
3860
- var script$j = /* @__PURE__ */ defineComponent({
3863
+ var script$k = /* @__PURE__ */ defineComponent({
3861
3864
  __name: "index",
3862
3865
  props: {
3863
3866
  name: { type: String, required: true },
@@ -3885,10 +3888,10 @@ var script$j = /* @__PURE__ */ defineComponent({
3885
3888
  }
3886
3889
  });
3887
3890
 
3888
- script$j.__file = "src/components/dd-icon/index.vue";
3891
+ script$k.__file = "src/components/dd-icon/index.vue";
3889
3892
 
3890
- const _hoisted_1$h = { class: "dd-area" };
3891
- var script$i = /* @__PURE__ */ defineComponent({
3893
+ const _hoisted_1$i = { class: "dd-area" };
3894
+ var script$j = /* @__PURE__ */ defineComponent({
3892
3895
  __name: "index",
3893
3896
  props: {
3894
3897
  value: { type: String, required: false, default: "" },
@@ -4047,7 +4050,7 @@ var script$i = /* @__PURE__ */ defineComponent({
4047
4050
  disabled: props.disabled
4048
4051
  }, {
4049
4052
  default: withCtx(() => [
4050
- createElementVNode("div", _hoisted_1$h, [
4053
+ createElementVNode("div", _hoisted_1$i, [
4051
4054
  createElementVNode(
4052
4055
  "div",
4053
4056
  {
@@ -4058,7 +4061,7 @@ var script$i = /* @__PURE__ */ defineComponent({
4058
4061
  /* TEXT, CLASS */
4059
4062
  ),
4060
4063
  renderSlot(_ctx.$slots, "icon", {}, () => [
4061
- props.rightIcon ? (openBlock(), createBlock(script$j, {
4064
+ props.rightIcon ? (openBlock(), createBlock(script$k, {
4062
4065
  key: 0,
4063
4066
  name: "icon-arrow",
4064
4067
  size: "11px",
@@ -4075,11 +4078,11 @@ var script$i = /* @__PURE__ */ defineComponent({
4075
4078
  }
4076
4079
  });
4077
4080
 
4078
- script$i.__file = "src/components/dd-area/index.vue";
4081
+ script$j.__file = "src/components/dd-area/index.vue";
4079
4082
 
4080
- const _hoisted_1$g = { class: "dd-selector" };
4081
- const _hoisted_2$c = { class: "dd-selector-value" };
4082
- var script$h = /* @__PURE__ */ defineComponent({
4083
+ const _hoisted_1$h = { class: "dd-selector" };
4084
+ const _hoisted_2$d = { class: "dd-selector-value" };
4085
+ var script$i = /* @__PURE__ */ defineComponent({
4083
4086
  __name: "index",
4084
4087
  props: {
4085
4088
  value: { type: String, required: false, default: "" },
@@ -4139,8 +4142,8 @@ var script$h = /* @__PURE__ */ defineComponent({
4139
4142
  }, {
4140
4143
  default: withCtx(() => [
4141
4144
  renderSlot(_ctx.$slots, "content", {}, () => [
4142
- createElementVNode("div", _hoisted_1$g, [
4143
- createElementVNode("div", _hoisted_2$c, [
4145
+ createElementVNode("div", _hoisted_1$h, [
4146
+ createElementVNode("div", _hoisted_2$d, [
4144
4147
  createElementVNode(
4145
4148
  "div",
4146
4149
  {
@@ -4157,7 +4160,7 @@ var script$h = /* @__PURE__ */ defineComponent({
4157
4160
  ])
4158
4161
  ]),
4159
4162
  renderSlot(_ctx.$slots, "icon", {}, () => [
4160
- props.rightIcon ? (openBlock(), createBlock(script$j, {
4163
+ props.rightIcon ? (openBlock(), createBlock(script$k, {
4161
4164
  key: 0,
4162
4165
  name: "icon-arrow",
4163
4166
  size: "11px",
@@ -4175,14 +4178,14 @@ var script$h = /* @__PURE__ */ defineComponent({
4175
4178
  }
4176
4179
  });
4177
4180
 
4178
- script$h.__file = "src/components/dd-selector/index.vue";
4181
+ script$i.__file = "src/components/dd-selector/index.vue";
4179
4182
 
4180
- const _hoisted_1$f = { class: "self-registration" };
4181
- const _hoisted_2$b = { class: "self-registration-body" };
4183
+ const _hoisted_1$g = { class: "self-registration" };
4184
+ const _hoisted_2$c = { class: "self-registration-body" };
4182
4185
  const _hoisted_3$7 = ["src"];
4183
4186
  const _hoisted_4$5 = { class: "self-registration__input" };
4184
4187
  const _hoisted_5$4 = { class: "self-registration-bottom" };
4185
- var script$g = /* @__PURE__ */ defineComponent({
4188
+ var script$h = /* @__PURE__ */ defineComponent({
4186
4189
  __name: "SelfRegistration",
4187
4190
  props: {
4188
4191
  banner: { type: String, required: false, default: "https://cdn.ddjf.com/static/images/wx-yunservice/ai-form-bg2.png" }
@@ -4284,8 +4287,8 @@ var script$g = /* @__PURE__ */ defineComponent({
4284
4287
  const _component_nut_form_item = FormItem;
4285
4288
  const _component_nut_form = Form;
4286
4289
  const _component_nut_button = Button;
4287
- return openBlock(), createElementBlock("div", _hoisted_1$f, [
4288
- createElementVNode("div", _hoisted_2$b, [
4290
+ return openBlock(), createElementBlock("div", _hoisted_1$g, [
4291
+ createElementVNode("div", _hoisted_2$c, [
4289
4292
  createElementVNode("img", {
4290
4293
  src: _ctx.banner,
4291
4294
  class: "self-registration-banner",
@@ -4348,7 +4351,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4348
4351
  ), [
4349
4352
  [vModelText, formState.name]
4350
4353
  ]),
4351
- createVNode(script$C, { onComplete: onOCRInfo }, {
4354
+ createVNode(script$D, { onComplete: onOCRInfo }, {
4352
4355
  icon: withCtx(() => _cache[9] || (_cache[9] = [
4353
4356
  createElementVNode(
4354
4357
  "img",
@@ -4402,7 +4405,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4402
4405
  required: ""
4403
4406
  }, {
4404
4407
  default: withCtx(() => [
4405
- createVNode(script$h, {
4408
+ createVNode(script$i, {
4406
4409
  value: formState.position,
4407
4410
  "onUpdate:value": _cache[3] || (_cache[3] = ($event) => formState.position = $event),
4408
4411
  options: positionOptions
@@ -4464,7 +4467,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4464
4467
  required: ""
4465
4468
  }, {
4466
4469
  default: withCtx(() => [
4467
- createVNode(script$i, {
4470
+ createVNode(script$j, {
4468
4471
  value: formState.areaCode,
4469
4472
  "onUpdate:value": _cache[6] || (_cache[6] = ($event) => formState.areaCode = $event),
4470
4473
  type: "city",
@@ -4502,7 +4505,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4502
4505
  }
4503
4506
  });
4504
4507
 
4505
- script$g.__file = "src/register/components/SelfRegistration.vue";
4508
+ script$h.__file = "src/register/components/SelfRegistration.vue";
4506
4509
 
4507
4510
  const endpointsList$1 = {};
4508
4511
  Object.fromEntries(
@@ -4599,9 +4602,9 @@ function useHttp$1() {
4599
4602
  return $http;
4600
4603
  }
4601
4604
 
4602
- const _hoisted_1$e = { class: "notice-popup-bd" };
4603
- const _hoisted_2$a = { style: { "white-space": "pre-wrap" } };
4604
- var script$f = /* @__PURE__ */ defineComponent({
4605
+ const _hoisted_1$f = { class: "notice-popup-bd" };
4606
+ const _hoisted_2$b = { style: { "white-space": "pre-wrap" } };
4607
+ var script$g = /* @__PURE__ */ defineComponent({
4605
4608
  __name: "NoticePopup",
4606
4609
  props: {
4607
4610
  message: { type: null, required: true, default: {} }
@@ -4655,10 +4658,10 @@ var script$f = /* @__PURE__ */ defineComponent({
4655
4658
  -1
4656
4659
  /* HOISTED */
4657
4660
  )),
4658
- createElementVNode("div", _hoisted_1$e, [
4661
+ createElementVNode("div", _hoisted_1$f, [
4659
4662
  createElementVNode(
4660
4663
  "div",
4661
- _hoisted_2$a,
4664
+ _hoisted_2$b,
4662
4665
  toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
4663
4666
  1
4664
4667
  /* TEXT */
@@ -4683,7 +4686,7 @@ var script$f = /* @__PURE__ */ defineComponent({
4683
4686
  }
4684
4687
  });
4685
4688
 
4686
- script$f.__file = "src/notice/components/NoticePopup.vue";
4689
+ script$g.__file = "src/notice/components/NoticePopup.vue";
4687
4690
 
4688
4691
  function useNotice() {
4689
4692
  async function noticeClick(item, cb) {
@@ -4711,9 +4714,9 @@ function useNotice() {
4711
4714
  };
4712
4715
  }
4713
4716
 
4714
- const _hoisted_1$d = { class: "notice-banner-text" };
4715
- const _hoisted_2$9 = ["onClick"];
4716
- var script$e = /* @__PURE__ */ defineComponent({
4717
+ const _hoisted_1$e = { class: "notice-banner-text" };
4718
+ const _hoisted_2$a = ["onClick"];
4719
+ var script$f = /* @__PURE__ */ defineComponent({
4717
4720
  __name: "NoticeBanner",
4718
4721
  props: {
4719
4722
  app: { type: String, required: true, default: "" },
@@ -4837,7 +4840,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4837
4840
  Fragment,
4838
4841
  null,
4839
4842
  renderList(bannerMessages.value, (item, key) => {
4840
- return openBlock(), createBlock(script$E, {
4843
+ return openBlock(), createBlock(script$F, {
4841
4844
  class: normalizeClass({ show: key === activeKey.value }),
4842
4845
  key,
4843
4846
  showClose: item.noticeType === 0,
@@ -4857,7 +4860,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4857
4860
  )),
4858
4861
  createElementVNode(
4859
4862
  "div",
4860
- _hoisted_1$d,
4863
+ _hoisted_1$e,
4861
4864
  toDisplayString(item.context),
4862
4865
  1
4863
4866
  /* TEXT */
@@ -4865,7 +4868,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4865
4868
  createElementVNode("div", {
4866
4869
  class: "notice-banner-btn",
4867
4870
  onClick: ($event) => onDetail(item)
4868
- }, "\u8BE6\u60C5", 8, _hoisted_2$9)
4871
+ }, "\u8BE6\u60C5", 8, _hoisted_2$a)
4869
4872
  ]),
4870
4873
  _: 2
4871
4874
  /* DYNAMIC */
@@ -4883,7 +4886,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4883
4886
  Fragment,
4884
4887
  null,
4885
4888
  renderList(popMessages.value, (item, key) => {
4886
- return openBlock(), createBlock(script$f, {
4889
+ return openBlock(), createBlock(script$g, {
4887
4890
  key,
4888
4891
  message: item,
4889
4892
  onClose: ($event) => popMessages.value.splice(key, 1),
@@ -4901,14 +4904,14 @@ var script$e = /* @__PURE__ */ defineComponent({
4901
4904
  }
4902
4905
  });
4903
4906
 
4904
- script$e.__file = "src/notice/components/NoticeBanner.vue";
4907
+ script$f.__file = "src/notice/components/NoticeBanner.vue";
4905
4908
 
4906
- const _hoisted_1$c = { class: "notice-entry" };
4907
- const _hoisted_2$8 = {
4909
+ const _hoisted_1$d = { class: "notice-entry" };
4910
+ const _hoisted_2$9 = {
4908
4911
  key: 0,
4909
4912
  class: "notice-entry-icon"
4910
4913
  };
4911
- var script$d = /* @__PURE__ */ defineComponent({
4914
+ var script$e = /* @__PURE__ */ defineComponent({
4912
4915
  __name: "NoticeEntry",
4913
4916
  props: {
4914
4917
  app: { type: String, required: true, default: "" },
@@ -4944,7 +4947,7 @@ var script$d = /* @__PURE__ */ defineComponent({
4944
4947
  });
4945
4948
  }
4946
4949
  return (_ctx, _cache) => {
4947
- return openBlock(), createElementBlock("div", _hoisted_1$c, [
4950
+ return openBlock(), createElementBlock("div", _hoisted_1$d, [
4948
4951
  _cache[0] || (_cache[0] = createElementVNode(
4949
4952
  "img",
4950
4953
  {
@@ -4963,18 +4966,18 @@ var script$d = /* @__PURE__ */ defineComponent({
4963
4966
  -1
4964
4967
  /* HOISTED */
4965
4968
  )),
4966
- noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
4969
+ noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$9)) : createCommentVNode("v-if", true)
4967
4970
  ]);
4968
4971
  };
4969
4972
  }
4970
4973
  });
4971
4974
 
4972
- script$d.__file = "src/notice/components/NoticeEntry.vue";
4975
+ script$e.__file = "src/notice/components/NoticeEntry.vue";
4973
4976
 
4974
- const _hoisted_1$b = { class: "dd-search__form" };
4975
- const _hoisted_2$7 = { class: "dd-search__control" };
4977
+ const _hoisted_1$c = { class: "dd-search__form" };
4978
+ const _hoisted_2$8 = { class: "dd-search__control" };
4976
4979
  const _hoisted_3$6 = ["disabled", "placeholder", "focus"];
4977
- var script$c = /* @__PURE__ */ defineComponent({
4980
+ var script$d = /* @__PURE__ */ defineComponent({
4978
4981
  __name: "index",
4979
4982
  props: {
4980
4983
  disabled: { type: Boolean, required: false, default: false },
@@ -5027,7 +5030,7 @@ var script$c = /* @__PURE__ */ defineComponent({
5027
5030
  }])
5028
5031
  },
5029
5032
  [
5030
- createElementVNode("div", _hoisted_1$b, [
5033
+ createElementVNode("div", _hoisted_1$c, [
5031
5034
  _cache[2] || (_cache[2] = createElementVNode(
5032
5035
  "div",
5033
5036
  { class: "dd-search__prefix" },
@@ -5040,7 +5043,7 @@ var script$c = /* @__PURE__ */ defineComponent({
5040
5043
  -1
5041
5044
  /* HOISTED */
5042
5045
  )),
5043
- createElementVNode("div", _hoisted_2$7, [
5046
+ createElementVNode("div", _hoisted_2$8, [
5044
5047
  withDirectives(createElementVNode("input", {
5045
5048
  class: "dd-search__input",
5046
5049
  type: "text",
@@ -5095,7 +5098,7 @@ var script$c = /* @__PURE__ */ defineComponent({
5095
5098
  }
5096
5099
  });
5097
5100
 
5098
- script$c.__file = "src/components/dd-search/index.vue";
5101
+ script$d.__file = "src/components/dd-search/index.vue";
5099
5102
 
5100
5103
  function useCommonList(api, query, showLoading = true, method = "GET") {
5101
5104
  const isLast = ref(false);
@@ -5156,8 +5159,8 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
5156
5159
  };
5157
5160
  }
5158
5161
 
5159
- const _hoisted_1$a = { class: "notice-list" };
5160
- const _hoisted_2$6 = { style: { "flex": "1", "overflow": "hidden" } };
5162
+ const _hoisted_1$b = { class: "notice-list" };
5163
+ const _hoisted_2$7 = { style: { "flex": "1", "overflow": "hidden" } };
5161
5164
  const _hoisted_3$5 = {
5162
5165
  key: 0,
5163
5166
  class: "wrapper"
@@ -5178,7 +5181,7 @@ const _hoisted_9$1 = {
5178
5181
  key: 1,
5179
5182
  class: "no-data"
5180
5183
  };
5181
- var script$b = /* @__PURE__ */ defineComponent({
5184
+ var script$c = /* @__PURE__ */ defineComponent({
5182
5185
  __name: "NoticeList",
5183
5186
  props: {
5184
5187
  app: { type: String, required: true, default: "" },
@@ -5252,15 +5255,15 @@ var script$b = /* @__PURE__ */ defineComponent({
5252
5255
  return (_ctx, _cache) => {
5253
5256
  const _component_rich_text = resolveComponent("rich-text");
5254
5257
  const _component_scroll_view = resolveComponent("scroll-view");
5255
- return openBlock(), createElementBlock("div", _hoisted_1$a, [
5256
- createVNode(script$c, {
5258
+ return openBlock(), createElementBlock("div", _hoisted_1$b, [
5259
+ createVNode(script$d, {
5257
5260
  bordered: false,
5258
5261
  focus: false,
5259
5262
  value: query.value.title,
5260
5263
  placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
5261
5264
  onSearch
5262
5265
  }, null, 8, ["value"]),
5263
- createElementVNode("div", _hoisted_2$6, [
5266
+ createElementVNode("div", _hoisted_2$7, [
5264
5267
  unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
5265
5268
  createVNode(_component_scroll_view, {
5266
5269
  class: "content",
@@ -5379,13 +5382,13 @@ var script$b = /* @__PURE__ */ defineComponent({
5379
5382
  }
5380
5383
  });
5381
5384
 
5382
- script$b.__file = "src/notice/components/NoticeList.vue";
5385
+ script$c.__file = "src/notice/components/NoticeList.vue";
5383
5386
 
5384
- const _hoisted_1$9 = { class: "user-entry" };
5385
- const _hoisted_2$5 = { class: "user-entry-head" };
5387
+ const _hoisted_1$a = { class: "user-entry" };
5388
+ const _hoisted_2$6 = { class: "user-entry-head" };
5386
5389
  const _hoisted_3$4 = ["src"];
5387
5390
  const _hoisted_4$3 = { class: "user-entry-bd" };
5388
- var script$a = /* @__PURE__ */ defineComponent({
5391
+ var script$b = /* @__PURE__ */ defineComponent({
5389
5392
  __name: "UserEntry",
5390
5393
  props: {
5391
5394
  avatar: { type: String, required: false, default: "" },
@@ -5407,8 +5410,8 @@ var script$a = /* @__PURE__ */ defineComponent({
5407
5410
  }
5408
5411
  const emits = __emit;
5409
5412
  return (_ctx, _cache) => {
5410
- return openBlock(), createElementBlock("div", _hoisted_1$9, [
5411
- createElementVNode("div", _hoisted_2$5, [
5413
+ return openBlock(), createElementBlock("div", _hoisted_1$a, [
5414
+ createElementVNode("div", _hoisted_2$6, [
5412
5415
  _ctx.avatar ? (openBlock(), createElementBlock("img", {
5413
5416
  key: 0,
5414
5417
  class: "user-entry-head-img",
@@ -5480,10 +5483,10 @@ var script$a = /* @__PURE__ */ defineComponent({
5480
5483
  }
5481
5484
  });
5482
5485
 
5483
- script$a.__file = "src/user/components/UserEntry.vue";
5486
+ script$b.__file = "src/user/components/UserEntry.vue";
5484
5487
 
5485
- const _hoisted_1$8 = { class: "dd-skeleton" };
5486
- var script$9 = /* @__PURE__ */ defineComponent({
5488
+ const _hoisted_1$9 = { class: "dd-skeleton" };
5489
+ var script$a = /* @__PURE__ */ defineComponent({
5487
5490
  __name: "index",
5488
5491
  props: {
5489
5492
  row: { type: Number, required: false, default: 3 },
@@ -5493,7 +5496,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
5493
5496
  setup(__props) {
5494
5497
  return (_ctx, _cache) => {
5495
5498
  const _component_nut_skeleton = Skeleton;
5496
- return openBlock(), createElementBlock("div", _hoisted_1$8, [
5499
+ return openBlock(), createElementBlock("div", _hoisted_1$9, [
5497
5500
  (openBlock(true), createElementBlock(
5498
5501
  Fragment,
5499
5502
  null,
@@ -5526,7 +5529,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
5526
5529
  }
5527
5530
  });
5528
5531
 
5529
- script$9.__file = "src/components/dd-skeleton/index.vue";
5532
+ script$a.__file = "src/components/dd-skeleton/index.vue";
5530
5533
 
5531
5534
  const endpointsList = {};
5532
5535
  Object.fromEntries(
@@ -5627,11 +5630,11 @@ function useHttp() {
5627
5630
  return $http;
5628
5631
  }
5629
5632
 
5630
- const _hoisted_1$7 = {
5633
+ const _hoisted_1$8 = {
5631
5634
  key: 1,
5632
5635
  class: "user-info-wrap"
5633
5636
  };
5634
- const _hoisted_2$4 = { class: "user-info-head" };
5637
+ const _hoisted_2$5 = { class: "user-info-head" };
5635
5638
  const _hoisted_3$3 = ["src"];
5636
5639
  const _hoisted_4$2 = {
5637
5640
  key: 1,
@@ -5640,50 +5643,66 @@ const _hoisted_4$2 = {
5640
5643
  src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
5641
5644
  alt: ""
5642
5645
  };
5643
- const _hoisted_5$2 = { class: "user-info-team" };
5644
- const _hoisted_6$1 = { class: "user-info-team-item-avatar" };
5645
- const _hoisted_7$1 = ["src"];
5646
- const _hoisted_8$1 = {
5646
+ const _hoisted_5$2 = { key: 0 };
5647
+ const _hoisted_6$1 = {
5648
+ key: 1,
5649
+ style: { "color": "#e8523f" }
5650
+ };
5651
+ const _hoisted_7$1 = {
5652
+ key: 2,
5653
+ style: { "color": "#017fff" }
5654
+ };
5655
+ const _hoisted_8$1 = { class: "user-info-team" };
5656
+ const _hoisted_9 = { class: "user-info-team-item-avatar" };
5657
+ const _hoisted_10 = ["src"];
5658
+ const _hoisted_11 = {
5647
5659
  key: 1,
5648
5660
  class: "user-info-team-item-avatar-img empty",
5649
5661
  mode: "aspectFit",
5650
5662
  src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
5651
5663
  alt: ""
5652
5664
  };
5653
- const _hoisted_9 = { class: "user-info-team-item-bd" };
5654
- const _hoisted_10 = { class: "user-info-team-item-title" };
5655
- const _hoisted_11 = {
5665
+ const _hoisted_12 = { class: "user-info-team-item-bd" };
5666
+ const _hoisted_13 = { class: "user-info-team-item-title" };
5667
+ const _hoisted_14 = {
5656
5668
  key: 0,
5657
5669
  class: "user-info-team-item-app"
5658
5670
  };
5659
- const _hoisted_12 = ["onClick"];
5660
- const _hoisted_13 = {
5671
+ const _hoisted_15 = ["onClick"];
5672
+ const _hoisted_16 = {
5661
5673
  key: 1,
5662
5674
  class: "user-info-team-item-role"
5663
5675
  };
5664
- const _hoisted_14 = { class: "user-info-team-item-role-item-name" };
5665
- const _hoisted_15 = { class: "user-info-team-item-role-item-info" };
5666
- const _hoisted_16 = { class: "user-info-team-item-user" };
5667
- const _hoisted_17 = ["onClick"];
5668
- const _hoisted_18 = { class: "user-info-team-item-dept" };
5669
- const _hoisted_19 = { class: "user-info-ft" };
5670
- const _hoisted_20 = { class: "upload-avatar-popup-box" };
5671
- const _hoisted_21 = ["src"];
5672
- const _hoisted_22 = {
5676
+ const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
5677
+ const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
5678
+ const _hoisted_19 = { class: "user-info-team-item-user" };
5679
+ const _hoisted_20 = ["onClick"];
5680
+ const _hoisted_21 = { class: "user-info-team-item-dept" };
5681
+ const _hoisted_22 = { class: "user-info-ft" };
5682
+ const _hoisted_23 = { class: "upload-avatar-popup-box" };
5683
+ const _hoisted_24 = ["src"];
5684
+ const _hoisted_25 = {
5673
5685
  key: 1,
5674
5686
  class: "upload-avatar-popup-avatar",
5675
5687
  mode: "aspectFit",
5676
5688
  src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
5677
5689
  alt: ""
5678
5690
  };
5679
- var script$8 = /* @__PURE__ */ defineComponent({
5691
+ var script$9 = /* @__PURE__ */ defineComponent({
5680
5692
  __name: "UserInfo",
5681
5693
  props: {
5682
5694
  miniType: { type: String, required: false, default: "05" },
5683
5695
  app: { type: String, required: false, default: "" },
5684
5696
  userId: { type: String, required: true, default: "" }
5685
5697
  },
5686
- emits: ["avatar-success", "logout", "crop", "binding", "username-success"],
5698
+ emits: [
5699
+ "avatar-success",
5700
+ "logout",
5701
+ "crop",
5702
+ "binding",
5703
+ "username-success",
5704
+ "auth"
5705
+ ],
5687
5706
  setup(__props, { expose: __expose, emit: __emit }) {
5688
5707
  const props = __props;
5689
5708
  const { encodePhone } = useEncode();
@@ -5824,6 +5843,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5824
5843
  function toBinding() {
5825
5844
  emits("binding", userInfo.value.mobile || "");
5826
5845
  }
5846
+ function toAuth() {
5847
+ emits("auth", props.userId);
5848
+ }
5827
5849
  const emits = __emit;
5828
5850
  __expose({
5829
5851
  updateImage
@@ -5844,10 +5866,10 @@ var script$8 = /* @__PURE__ */ defineComponent({
5844
5866
  class: "user-info"
5845
5867
  }, {
5846
5868
  default: withCtx(() => [
5847
- firstLoading.value ? (openBlock(), createBlock(script$9, {
5869
+ firstLoading.value ? (openBlock(), createBlock(script$a, {
5848
5870
  key: 0,
5849
5871
  row: 3
5850
- })) : (openBlock(), createElementBlock("div", _hoisted_1$7, [
5872
+ })) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
5851
5873
  _cache[7] || (_cache[7] = createElementVNode(
5852
5874
  "div",
5853
5875
  { class: "user-info-tit" },
@@ -5855,7 +5877,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5855
5877
  -1
5856
5878
  /* HOISTED */
5857
5879
  )),
5858
- createElementVNode("div", _hoisted_2$4, [
5880
+ createElementVNode("div", _hoisted_2$5, [
5859
5881
  createElementVNode("div", {
5860
5882
  class: "user-info-head-avatar",
5861
5883
  onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
@@ -5887,7 +5909,23 @@ var script$8 = /* @__PURE__ */ defineComponent({
5887
5909
  "is-link": "",
5888
5910
  desc: unref(encodePhone)(userInfo.value.mobile || ""),
5889
5911
  onClick: toBinding
5890
- }, null, 8, ["desc"])
5912
+ }, null, 8, ["desc"]),
5913
+ createVNode(_component_nut_cell, {
5914
+ title: "\u6635\u79F0",
5915
+ desc: userInfo.value?.nickName || "--"
5916
+ }, null, 8, ["desc"]),
5917
+ createVNode(_component_nut_cell, {
5918
+ title: "\u8BA4\u8BC1\u4FE1\u606F",
5919
+ "is-link": "",
5920
+ onClick: toAuth
5921
+ }, {
5922
+ desc: withCtx(() => [
5923
+ userInfo.value?.verifyResult == 1 ? (openBlock(), createElementBlock("span", _hoisted_5$2, "\u5DF2\u8BA4\u8BC1")) : createCommentVNode("v-if", true),
5924
+ userInfo.value?.verifyResult == 0 ? (openBlock(), createElementBlock("span", _hoisted_6$1, "\u5DF2\u5931\u6548\uFF0C\u91CD\u65B0\u8BA4\u8BC1")) : (openBlock(), createElementBlock("span", _hoisted_7$1, "\u672A\u8BA4\u8BC1\uFF0C\u53BB\u8BA4\u8BC1"))
5925
+ ]),
5926
+ _: 1
5927
+ /* STABLE */
5928
+ })
5891
5929
  ]),
5892
5930
  _cache[8] || (_cache[8] = createElementVNode(
5893
5931
  "div",
@@ -5896,7 +5934,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5896
5934
  -1
5897
5935
  /* HOISTED */
5898
5936
  )),
5899
- createElementVNode("div", _hoisted_5$2, [
5937
+ createElementVNode("div", _hoisted_8$1, [
5900
5938
  (openBlock(true), createElementBlock(
5901
5939
  Fragment,
5902
5940
  null,
@@ -5905,24 +5943,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
5905
5943
  key,
5906
5944
  class: "user-info-team-item"
5907
5945
  }, [
5908
- createElementVNode("div", _hoisted_6$1, [
5946
+ createElementVNode("div", _hoisted_9, [
5909
5947
  item.tenantLogo ? (openBlock(), createElementBlock("img", {
5910
5948
  key: 0,
5911
5949
  class: "user-info-team-item-avatar-img",
5912
5950
  mode: "aspectFit",
5913
5951
  src: item.tenantLogo,
5914
5952
  alt: ""
5915
- }, null, 8, _hoisted_7$1)) : (openBlock(), createElementBlock("img", _hoisted_8$1))
5953
+ }, null, 8, _hoisted_10)) : (openBlock(), createElementBlock("img", _hoisted_11))
5916
5954
  ]),
5917
- createElementVNode("div", _hoisted_9, [
5955
+ createElementVNode("div", _hoisted_12, [
5918
5956
  createElementVNode(
5919
5957
  "div",
5920
- _hoisted_10,
5958
+ _hoisted_13,
5921
5959
  toDisplayString(item.tenantName),
5922
5960
  1
5923
5961
  /* TEXT */
5924
5962
  ),
5925
- item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_11, [
5963
+ item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14, [
5926
5964
  (openBlock(true), createElementBlock(
5927
5965
  Fragment,
5928
5966
  null,
@@ -5957,9 +5995,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5957
5995
  2
5958
5996
  /* CLASS */
5959
5997
  )
5960
- ], 8, _hoisted_12)
5998
+ ], 8, _hoisted_15)
5961
5999
  ])) : createCommentVNode("v-if", true),
5962
- item.showRole ? (openBlock(), createElementBlock("div", _hoisted_13, [
6000
+ item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16, [
5963
6001
  (openBlock(true), createElementBlock(
5964
6002
  Fragment,
5965
6003
  null,
@@ -5970,14 +6008,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5970
6008
  }, [
5971
6009
  createElementVNode(
5972
6010
  "div",
5973
- _hoisted_14,
6011
+ _hoisted_17,
5974
6012
  toDisplayString(aitem.appAbbr),
5975
6013
  1
5976
6014
  /* TEXT */
5977
6015
  ),
5978
6016
  createElementVNode(
5979
6017
  "div",
5980
- _hoisted_15,
6018
+ _hoisted_18,
5981
6019
  toDisplayString(aitem.roleName),
5982
6020
  1
5983
6021
  /* TEXT */
@@ -5988,7 +6026,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5988
6026
  /* KEYED_FRAGMENT */
5989
6027
  ))
5990
6028
  ])) : createCommentVNode("v-if", true),
5991
- createElementVNode("div", _hoisted_16, [
6029
+ createElementVNode("div", _hoisted_19, [
5992
6030
  createTextVNode(
5993
6031
  toDisplayString(item.fullName) + " ",
5994
6032
  1
@@ -5999,9 +6037,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5999
6037
  class: "user-info-team-item-user-icon",
6000
6038
  src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
6001
6039
  alt: ""
6002
- }, null, 8, _hoisted_17)
6040
+ }, null, 8, _hoisted_20)
6003
6041
  ]),
6004
- createElementVNode("div", _hoisted_18, [
6042
+ createElementVNode("div", _hoisted_21, [
6005
6043
  (openBlock(true), createElementBlock(
6006
6044
  Fragment,
6007
6045
  null,
@@ -6028,7 +6066,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
6028
6066
  /* KEYED_FRAGMENT */
6029
6067
  ))
6030
6068
  ]),
6031
- createElementVNode("div", _hoisted_19, [
6069
+ createElementVNode("div", _hoisted_22, [
6032
6070
  createVNode(_component_nut_button, {
6033
6071
  class: "user-info-ft-btn",
6034
6072
  style: { "width": "100%" },
@@ -6101,14 +6139,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
6101
6139
  "overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
6102
6140
  }, {
6103
6141
  default: withCtx(() => [
6104
- createElementVNode("div", _hoisted_20, [
6142
+ createElementVNode("div", _hoisted_23, [
6105
6143
  userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
6106
6144
  key: 0,
6107
6145
  class: "upload-avatar-popup-avatar",
6108
6146
  mode: "aspectFit",
6109
6147
  src: userInfo.value.avatar,
6110
6148
  alt: ""
6111
- }, null, 8, _hoisted_21)) : (openBlock(), createElementBlock("img", _hoisted_22)),
6149
+ }, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
6112
6150
  createElementVNode("div", {
6113
6151
  class: "upload-avatar-popup-btn",
6114
6152
  onClick: toUpload
@@ -6126,10 +6164,10 @@ var script$8 = /* @__PURE__ */ defineComponent({
6126
6164
  }
6127
6165
  });
6128
6166
 
6129
- script$8.__file = "src/user/components/UserInfo.vue";
6167
+ script$9.__file = "src/user/components/UserInfo.vue";
6130
6168
 
6131
- const _hoisted_1$6 = { class: "user-binding" };
6132
- const _hoisted_2$3 = { class: "user-binding-layout" };
6169
+ const _hoisted_1$7 = { class: "user-binding" };
6170
+ const _hoisted_2$4 = { class: "user-binding-layout" };
6133
6171
  const _hoisted_3$2 = ["src"];
6134
6172
  const _hoisted_4$1 = {
6135
6173
  key: 0,
@@ -6141,7 +6179,7 @@ const _hoisted_5$1 = {
6141
6179
  class: "user-binding-layout user-binding-inputlayout",
6142
6180
  style: { "flex": "1" }
6143
6181
  };
6144
- var script$7 = /* @__PURE__ */ defineComponent({
6182
+ var script$8 = /* @__PURE__ */ defineComponent({
6145
6183
  __name: "UserBinding",
6146
6184
  emits: ["success"],
6147
6185
  setup(__props, { emit: __emit }) {
@@ -6223,8 +6261,8 @@ var script$7 = /* @__PURE__ */ defineComponent({
6223
6261
  const _component_nut_form_item = FormItem;
6224
6262
  const _component_nut_button = Button;
6225
6263
  const _component_nut_form = Form;
6226
- return openBlock(), createElementBlock("div", _hoisted_1$6, [
6227
- createElementVNode("div", _hoisted_2$3, [
6264
+ return openBlock(), createElementBlock("div", _hoisted_1$7, [
6265
+ createElementVNode("div", _hoisted_2$4, [
6228
6266
  createElementVNode("img", {
6229
6267
  class: "user-binding-img",
6230
6268
  src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
@@ -6406,11 +6444,11 @@ var script$7 = /* @__PURE__ */ defineComponent({
6406
6444
  }
6407
6445
  });
6408
6446
 
6409
- script$7.__file = "src/user/components/UserBinding.vue";
6447
+ script$8.__file = "src/user/components/UserBinding.vue";
6410
6448
 
6411
- const _hoisted_1$5 = { class: "user-binding-success" };
6412
- const _hoisted_2$2 = { class: "user-binding-success-info" };
6413
- var script$6 = /* @__PURE__ */ defineComponent({
6449
+ const _hoisted_1$6 = { class: "user-binding-success" };
6450
+ const _hoisted_2$3 = { class: "user-binding-success-info" };
6451
+ var script$7 = /* @__PURE__ */ defineComponent({
6414
6452
  __name: "UserBindingSuccess",
6415
6453
  emits: ["binding"],
6416
6454
  setup(__props, { emit: __emit }) {
@@ -6428,7 +6466,7 @@ var script$6 = /* @__PURE__ */ defineComponent({
6428
6466
  const emits = __emit;
6429
6467
  return (_ctx, _cache) => {
6430
6468
  const _component_nut_button = Button;
6431
- return openBlock(), createElementBlock("div", _hoisted_1$5, [
6469
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
6432
6470
  _cache[2] || (_cache[2] = createElementVNode(
6433
6471
  "img",
6434
6472
  {
@@ -6442,7 +6480,7 @@ var script$6 = /* @__PURE__ */ defineComponent({
6442
6480
  )),
6443
6481
  createElementVNode(
6444
6482
  "div",
6445
- _hoisted_2$2,
6483
+ _hoisted_2$3,
6446
6484
  toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
6447
6485
  1
6448
6486
  /* TEXT */
@@ -6473,7 +6511,7 @@ var script$6 = /* @__PURE__ */ defineComponent({
6473
6511
  }
6474
6512
  });
6475
6513
 
6476
- script$6.__file = "src/user/components/UserBindingSuccess.vue";
6514
+ script$7.__file = "src/user/components/UserBindingSuccess.vue";
6477
6515
 
6478
6516
  function ratio(width = 2, height = 1) {
6479
6517
  return width / height;
@@ -6595,7 +6633,7 @@ function sleep(time = 200) {
6595
6633
  }
6596
6634
 
6597
6635
  var startOffsetX = 0, startOffsetY = 0, startTouchsDistance = 0, startChangeLeft = 0, startChangeTop = 0, startChangeWidth = 0, startChangeHeight = 0, initScale = 1, startTouches = [], timer = null;
6598
- var script$5 = {
6636
+ var script$6 = {
6599
6637
  name: "bt-cropper",
6600
6638
  props: {
6601
6639
  // 图片路径,支持网络路径和本地路径
@@ -7082,11 +7120,11 @@ var script$5 = {
7082
7120
  }
7083
7121
  };
7084
7122
 
7085
- const _hoisted_1$4 = { class: "bt-container" };
7086
- const _hoisted_2$1 = ["src"];
7123
+ const _hoisted_1$5 = { class: "bt-container" };
7124
+ const _hoisted_2$2 = ["src"];
7087
7125
  const _hoisted_3$1 = { class: "slot" };
7088
7126
  function render(_ctx, _cache, $props, $setup, $data, $options) {
7089
- return openBlock(), createElementBlock("view", _hoisted_1$4, [
7127
+ return openBlock(), createElementBlock("view", _hoisted_1$5, [
7090
7128
  createElementVNode("view", {
7091
7129
  class: "iconfont icon-replay",
7092
7130
  onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
@@ -7106,7 +7144,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
7106
7144
  onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
7107
7145
  style: normalizeStyle([$options.imageStyle]),
7108
7146
  class: "image"
7109
- }, null, 44, _hoisted_2$1),
7147
+ }, null, 44, _hoisted_2$2),
7110
7148
  $props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
7111
7149
  "view",
7112
7150
  {
@@ -7297,11 +7335,11 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
7297
7335
  ]);
7298
7336
  }
7299
7337
 
7300
- script$5.render = render;
7301
- script$5.__file = "src/components/bt-cropper/index.vue";
7338
+ script$6.render = render;
7339
+ script$6.__file = "src/components/bt-cropper/index.vue";
7302
7340
 
7303
- const _hoisted_1$3 = { class: "user-head-crop" };
7304
- var script$4 = /* @__PURE__ */ defineComponent({
7341
+ const _hoisted_1$4 = { class: "user-head-crop" };
7342
+ var script$5 = /* @__PURE__ */ defineComponent({
7305
7343
  __name: "UserHeadCrop",
7306
7344
  setup(__props) {
7307
7345
  const { params } = useRouter();
@@ -7325,8 +7363,8 @@ var script$4 = /* @__PURE__ */ defineComponent({
7325
7363
  }
7326
7364
  }
7327
7365
  return (_ctx, _cache) => {
7328
- return openBlock(), createElementBlock("div", _hoisted_1$3, [
7329
- createVNode(script$5, {
7366
+ return openBlock(), createElementBlock("div", _hoisted_1$4, [
7367
+ createVNode(script$6, {
7330
7368
  ref_key: "cropperRef",
7331
7369
  ref: cropperRef,
7332
7370
  imageSrc: unref(params).src,
@@ -7352,13 +7390,13 @@ var script$4 = /* @__PURE__ */ defineComponent({
7352
7390
  }
7353
7391
  });
7354
7392
 
7355
- script$4.__file = "src/user/components/UserHeadCrop.vue";
7393
+ script$5.__file = "src/user/components/UserHeadCrop.vue";
7356
7394
 
7357
- const _hoisted_1$2 = {
7395
+ const _hoisted_1$3 = {
7358
7396
  key: 0,
7359
7397
  class: "user-feedback-wrap"
7360
7398
  };
7361
- const _hoisted_2 = { class: "user-feedback-body" };
7399
+ const _hoisted_2$1 = { class: "user-feedback-body" };
7362
7400
  const _hoisted_3 = { class: "user-feedback-handle" };
7363
7401
  const _hoisted_4 = ["src"];
7364
7402
  const _hoisted_5 = ["src"];
@@ -7368,7 +7406,7 @@ const _hoisted_8 = {
7368
7406
  key: 1,
7369
7407
  class: "user-feedback-wrap"
7370
7408
  };
7371
- var script$3 = /* @__PURE__ */ defineComponent({
7409
+ var script$4 = /* @__PURE__ */ defineComponent({
7372
7410
  __name: "UserFeedback",
7373
7411
  props: {
7374
7412
  app: { type: String, required: false, default: "" },
@@ -7540,7 +7578,7 @@ var script$3 = /* @__PURE__ */ defineComponent({
7540
7578
  class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
7541
7579
  },
7542
7580
  [
7543
- !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
7581
+ !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
7544
7582
  _cache[4] || (_cache[4] = createElementVNode(
7545
7583
  "img",
7546
7584
  {
@@ -7558,7 +7596,7 @@ var script$3 = /* @__PURE__ */ defineComponent({
7558
7596
  -1
7559
7597
  /* HOISTED */
7560
7598
  )),
7561
- createElementVNode("div", _hoisted_2, [
7599
+ createElementVNode("div", _hoisted_2$1, [
7562
7600
  createVNode(_component_editor, {
7563
7601
  id: "myEditor",
7564
7602
  "show-img-resize": true,
@@ -7683,7 +7721,7 @@ var script$3 = /* @__PURE__ */ defineComponent({
7683
7721
  }
7684
7722
  });
7685
7723
 
7686
- script$3.__file = "src/user/components/UserFeedback.vue";
7724
+ script$4.__file = "src/user/components/UserFeedback.vue";
7687
7725
 
7688
7726
  function useDragBox() {
7689
7727
  const dragData = reactive({
@@ -7768,7 +7806,7 @@ function useDragBox() {
7768
7806
  };
7769
7807
  }
7770
7808
 
7771
- var script$2 = /* @__PURE__ */ defineComponent({
7809
+ var script$3 = /* @__PURE__ */ defineComponent({
7772
7810
  __name: "UserFeedbackEntry",
7773
7811
  props: {
7774
7812
  hasStorage: { type: Boolean, required: false, default: false },
@@ -7918,10 +7956,10 @@ var script$2 = /* @__PURE__ */ defineComponent({
7918
7956
  }
7919
7957
  });
7920
7958
 
7921
- script$2.__file = "src/user/components/UserFeedbackEntry.vue";
7959
+ script$3.__file = "src/user/components/UserFeedbackEntry.vue";
7922
7960
 
7923
- const _hoisted_1$1 = { class: "login-setting-text" };
7924
- var script$1 = /* @__PURE__ */ defineComponent({
7961
+ const _hoisted_1$2 = { class: "login-setting-text" };
7962
+ var script$2 = /* @__PURE__ */ defineComponent({
7925
7963
  __name: "LoginSetting",
7926
7964
  props: {
7927
7965
  app: { type: String, required: true, default: "" },
@@ -7993,7 +8031,7 @@ var script$1 = /* @__PURE__ */ defineComponent({
7993
8031
  )),
7994
8032
  createElementVNode(
7995
8033
  "div",
7996
- _hoisted_1$1,
8034
+ _hoisted_1$2,
7997
8035
  toDisplayString(loginRuleTip.value),
7998
8036
  1
7999
8037
  /* TEXT */
@@ -8006,10 +8044,10 @@ var script$1 = /* @__PURE__ */ defineComponent({
8006
8044
  }
8007
8045
  });
8008
8046
 
8009
- script$1.__file = "src/user/components/LoginSetting.vue";
8047
+ script$2.__file = "src/user/components/LoginSetting.vue";
8010
8048
 
8011
- const _hoisted_1 = { class: "user-resource-empty-text" };
8012
- var script = /* @__PURE__ */ defineComponent({
8049
+ const _hoisted_1$1 = { class: "user-resource-empty-text" };
8050
+ var script$1 = /* @__PURE__ */ defineComponent({
8013
8051
  __name: "UserResourceEmpty",
8014
8052
  props: {
8015
8053
  appInfo: { type: null, required: true, default: {} },
@@ -8051,7 +8089,7 @@ var script = /* @__PURE__ */ defineComponent({
8051
8089
  )),
8052
8090
  createElementVNode(
8053
8091
  "div",
8054
- _hoisted_1,
8092
+ _hoisted_1$1,
8055
8093
  " \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 ",
8056
8094
  1
8057
8095
  /* TEXT */
@@ -8064,7 +8102,187 @@ var script = /* @__PURE__ */ defineComponent({
8064
8102
  }
8065
8103
  });
8066
8104
 
8067
- script.__file = "src/user/components/UserResourceEmpty.vue";
8105
+ script$1.__file = "src/user/components/UserResourceEmpty.vue";
8106
+
8107
+ const _hoisted_1 = { class: "user-auth-footer" };
8108
+ const _hoisted_2 = {
8109
+ key: 0,
8110
+ class: "checkbox-row"
8111
+ };
8112
+ var script = /* @__PURE__ */ defineComponent({
8113
+ __name: "UserAuth",
8114
+ props: {
8115
+ userId: { type: String, required: true, default: "" }
8116
+ },
8117
+ emits: ["toAgreement"],
8118
+ setup(__props, { emit: __emit }) {
8119
+ const props = __props;
8120
+ const formRef = ref(), $n = useNutshell();
8121
+ const formData = reactive({
8122
+ \u59D3\u540D: "",
8123
+ \u8EAB\u4EFD\u8BC1\u53F7\u7801: "",
8124
+ \u7535\u8BDD\u53F7\u7801: "",
8125
+ \u540C\u610F: false
8126
+ });
8127
+ const \u5DF2\u8BA4\u8BC1 = ref(false);
8128
+ const onOcrComplete = (result) => {
8129
+ formData.\u59D3\u540D = result?.faceInfo.name;
8130
+ formData.\u8EAB\u4EFD\u8BC1\u53F7\u7801 = result?.faceInfo.certNo;
8131
+ };
8132
+ function showAgreement() {
8133
+ emits("toAgreement");
8134
+ }
8135
+ function toBack() {
8136
+ Taro.navigateBack();
8137
+ }
8138
+ async function toSubmit() {
8139
+ const res = await formRef.value.validate();
8140
+ if (!res.valid) {
8141
+ return $n.toast(res.errors[0].message, {});
8142
+ }
8143
+ if (!formData.\u540C\u610F) {
8144
+ return $n.toast("\u8BF7\u5148\u9605\u8BFB\u5E76\u540C\u610F\u534F\u8BAE", {});
8145
+ }
8146
+ const $http = useHttp();
8147
+ $http.post("/cas/sysAccount/verifyId3", {
8148
+ // appCode:
8149
+ idCard: formData.\u8EAB\u4EFD\u8BC1\u53F7\u7801,
8150
+ mobile: formData.\u7535\u8BDD\u53F7\u7801,
8151
+ name: formData.\u59D3\u540D,
8152
+ tenantId: props.userId
8153
+ }).then(() => {
8154
+ Taro.showToast({ title: "\u8BA4\u8BC1\u6210\u529F", icon: "none" });
8155
+ toBack();
8156
+ }).catch((err) => {
8157
+ Taro.showToast({ title: err?.errMsg || "\u8BA4\u8BC1\u5931\u8D25", icon: "none" });
8158
+ });
8159
+ }
8160
+ const emits = __emit;
8161
+ return (_ctx, _cache) => {
8162
+ return openBlock(), createBlock(unref(NsPage), { class: "user-auth" }, {
8163
+ default: withCtx(() => [
8164
+ createVNode(unref(NsPageContent), null, {
8165
+ default: withCtx(() => [
8166
+ createVNode(unref(NsCard), { fill: "#fff" }, {
8167
+ default: withCtx(() => [
8168
+ createVNode(unref(NsForm), {
8169
+ ref_key: "formRef",
8170
+ ref: formRef,
8171
+ modelValue: formData,
8172
+ "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => formData = $event)
8173
+ }, {
8174
+ default: withCtx(() => [
8175
+ createVNode(unref(NsInput), {
8176
+ label: "\u4F60\u7684\u59D3\u540D",
8177
+ name: "\u59D3\u540D",
8178
+ modelValue: formData.\u59D3\u540D,
8179
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => formData.\u59D3\u540D = $event),
8180
+ placeholder: "\u8BF7\u8F93\u5165\u6216\u62CD\u7167\u8BC6\u522B",
8181
+ maxlength: 30,
8182
+ rules: ["required"]
8183
+ }, {
8184
+ append: withCtx(() => [
8185
+ createVNode(unref(script$D), { onComplete: onOcrComplete })
8186
+ ]),
8187
+ _: 1
8188
+ /* STABLE */
8189
+ }, 8, ["modelValue"]),
8190
+ createVNode(unref(NsInput), {
8191
+ label: "\u8EAB\u4EFD\u8BC1\u53F7\u7801",
8192
+ name: "\u8EAB\u4EFD\u8BC1\u53F7\u7801",
8193
+ placeholder: "\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7\u7801",
8194
+ maxlength: 30,
8195
+ modelValue: formData.\u8EAB\u4EFD\u8BC1\u53F7\u7801,
8196
+ "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => formData.\u8EAB\u4EFD\u8BC1\u53F7\u7801 = $event),
8197
+ rules: [
8198
+ "required",
8199
+ {
8200
+ name: "function",
8201
+ message: "\u8BF7\u8F93\u5165\u6B63\u786E\u683C\u5F0F\u7684\u8BC1\u4EF6\u53F7\u7801",
8202
+ method: (value) => unref(isIdentityCard)(value, "zh-CN")
8203
+ }
8204
+ ]
8205
+ }, null, 8, ["modelValue", "rules"]),
8206
+ createVNode(unref(NsInput), {
8207
+ label: "\u7535\u8BDD\u53F7\u7801",
8208
+ name: "\u7535\u8BDD\u53F7\u7801",
8209
+ placeholder: "\u8BF7\u8F93\u5165\u7535\u8BDD\u53F7\u7801",
8210
+ maxlength: 11,
8211
+ modelValue: formData.\u7535\u8BDD\u53F7\u7801,
8212
+ "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => formData.\u7535\u8BDD\u53F7\u7801 = $event),
8213
+ rules: [
8214
+ {
8215
+ name: "function",
8216
+ message: "\u8BF7\u8F93\u5165\u6B63\u786E\u683C\u5F0F\u7684\u7535\u8BDD\u53F7\u7801",
8217
+ method: (value) => unref(isMobilePhone)(value, "zh-CN")
8218
+ }
8219
+ ]
8220
+ }, null, 8, ["modelValue", "rules"])
8221
+ ]),
8222
+ _: 1
8223
+ /* STABLE */
8224
+ }, 8, ["modelValue"])
8225
+ ]),
8226
+ _: 1
8227
+ /* STABLE */
8228
+ }),
8229
+ createElementVNode("div", _hoisted_1, [
8230
+ !\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createElementBlock("div", _hoisted_2, [
8231
+ createVNode(unref(NsCheckbox), {
8232
+ style: { "font-size": "11px" },
8233
+ modelValue: formData.\u540C\u610F,
8234
+ "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => formData.\u540C\u610F = $event)
8235
+ }, {
8236
+ default: withCtx(() => _cache[5] || (_cache[5] = [
8237
+ createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")
8238
+ ])),
8239
+ _: 1
8240
+ /* STABLE */
8241
+ }, 8, ["modelValue"]),
8242
+ createElementVNode("span", {
8243
+ onClick: showAgreement,
8244
+ class: "book"
8245
+ }, "\u300A\u4E2A\u4EBA\u4FE1\u606F\u6388\u6743\u534F\u8BAE\u300B")
8246
+ ])) : createCommentVNode("v-if", true),
8247
+ !\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createBlock(unref(NsButton), {
8248
+ key: 1,
8249
+ class: "btn",
8250
+ color: "primary",
8251
+ type: "primary",
8252
+ onClick: toSubmit
8253
+ }, {
8254
+ default: withCtx(() => _cache[6] || (_cache[6] = [
8255
+ createTextVNode("\u7ACB\u5373\u8BA4\u8BC1")
8256
+ ])),
8257
+ _: 1
8258
+ /* STABLE */
8259
+ })) : (openBlock(), createBlock(unref(NsButton), {
8260
+ key: 2,
8261
+ class: "btn",
8262
+ color: "primary",
8263
+ type: "primary",
8264
+ onClick: toBack
8265
+ }, {
8266
+ default: withCtx(() => _cache[7] || (_cache[7] = [
8267
+ createTextVNode("\u8FD4\u56DE")
8268
+ ])),
8269
+ _: 1
8270
+ /* STABLE */
8271
+ }))
8272
+ ])
8273
+ ]),
8274
+ _: 1
8275
+ /* STABLE */
8276
+ })
8277
+ ]),
8278
+ _: 1
8279
+ /* STABLE */
8280
+ });
8281
+ };
8282
+ }
8283
+ });
8284
+
8285
+ script.__file = "src/user/components/UserAuth.vue";
8068
8286
 
8069
8287
  const nutComponents = [
8070
8288
  // Grid,
@@ -8119,4 +8337,4 @@ const AppKit = {
8119
8337
  }
8120
8338
  };
8121
8339
 
8122
- 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$k as PromoterCard, 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 };
8340
+ 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$2 as LoginSetting, script$f as NoticeBanner, script$e as NoticeEntry, script$c 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$h as SelfRegistration, script$x as TradeView, script$A as UserAgreement, script as UserAuth, script$8 as UserBinding, script$7 as UserBindingSuccess, script$b as UserEntry, script$4 as UserFeedback, script$3 as UserFeedbackEntry, script$5 as UserHeadCrop, script$9 as UserInfo, script$1 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 };