@uxda/appkit 4.1.25 → 4.1.28

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 +24 -21
  5. package/dist/index.js +1255 -1153
  6. package/package.json +77 -75
  7. package/project.config.json +15 -15
  8. package/project.tt.json +13 -13
  9. package/rollup.config.mjs +56 -56
  10. package/src/Appkit.ts +66 -66
  11. package/src/balance/api/endpoints.ts +126 -126
  12. package/src/balance/api/index.ts +106 -82
  13. package/src/balance/components/AccountView.vue +748 -748
  14. package/src/balance/components/BalanceCard.vue +205 -205
  15. package/src/balance/components/BalanceReminder.vue +85 -85
  16. package/src/balance/components/ConsumptionFilter.vue +218 -218
  17. package/src/balance/components/ConsumptionRules.vue +68 -68
  18. package/src/balance/components/DateFilter.vue +251 -230
  19. package/src/balance/components/DateRange.vue +80 -75
  20. package/src/balance/components/ListFilter.vue +63 -63
  21. package/src/balance/components/ListFilterPicker.vue +186 -186
  22. package/src/balance/components/SecondBalance.vue +71 -71
  23. package/src/balance/components/Tip.vue +45 -45
  24. package/src/balance/components/index.ts +13 -13
  25. package/src/balance/types.ts +91 -91
  26. package/src/components/bt-cropper/index.vue +774 -774
  27. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  28. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  29. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  30. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  31. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  32. package/src/components/bt-cropper/utils/ratio.js +3 -3
  33. package/src/components/bt-cropper/utils/tools.js +25 -25
  34. package/src/components/dd-area/index.vue +225 -225
  35. package/src/components/dd-icon/doc.md +21 -21
  36. package/src/components/dd-icon/index.vue +23 -23
  37. package/src/components/dd-notice-bar/index.vue +78 -78
  38. package/src/components/dd-search/doc.md +34 -34
  39. package/src/components/dd-search/index.vue +168 -168
  40. package/src/components/dd-selector/index.vue +124 -124
  41. package/src/components/dd-skeleton/doc.md +19 -19
  42. package/src/components/dd-skeleton/index.vue +36 -36
  43. package/src/components/ocr-id/index.vue +114 -114
  44. package/src/components/ocr-id/types.d.ts +12 -12
  45. package/src/global.ts +6 -6
  46. package/src/index.ts +89 -89
  47. package/src/main.scss +1 -1
  48. package/src/notice/api/endpoints.ts +17 -17
  49. package/src/notice/api/index.ts +106 -82
  50. package/src/notice/components/NoticeBanner.vue +243 -243
  51. package/src/notice/components/NoticeEntry.vue +99 -99
  52. package/src/notice/components/NoticeList.vue +315 -315
  53. package/src/notice/components/NoticePopup.vue +162 -162
  54. package/src/notice/components/index.ts +5 -5
  55. package/src/notice/components/useCommonList.ts +86 -86
  56. package/src/notice/components/useNotice.ts +35 -35
  57. package/src/notice/index.ts +1 -1
  58. package/src/notice/types.ts +25 -25
  59. package/src/payment/api/config.ts +7 -7
  60. package/src/payment/api/endpoints.ts +103 -103
  61. package/src/payment/api/index.ts +100 -76
  62. package/src/payment/components/AmountPicker.vue +93 -93
  63. package/src/payment/components/RechargeResult.vue +69 -69
  64. package/src/payment/components/RechargeView.vue +154 -154
  65. package/src/payment/components/RightsPicker.vue +105 -105
  66. package/src/payment/components/TradeView.vue +294 -294
  67. package/src/payment/components/UserAgreement.vue +234 -234
  68. package/src/payment/components/index.ts +22 -22
  69. package/src/payment/index.ts +5 -5
  70. package/src/payment/services/index.ts +16 -16
  71. package/src/payment/services/invoke-recharge.ts +25 -25
  72. package/src/payment/services/request-payment.ts +58 -58
  73. package/src/payment/types.ts +28 -28
  74. package/src/register/components/SelfRegistration.vue +254 -254
  75. package/src/register/components/index.ts +2 -2
  76. package/src/shared/components/AppDrawer.vue +58 -58
  77. package/src/shared/components/AppVerify.vue +129 -129
  78. package/src/shared/components/DeviceVersion.vue +68 -68
  79. package/src/shared/components/EmptyView.vue +33 -33
  80. package/src/shared/components/OcrBusinessLicense.vue +133 -133
  81. package/src/shared/components/OcrIcon.vue +133 -133
  82. package/src/shared/components/PageHeader.vue +79 -79
  83. package/src/shared/components/index.ts +8 -8
  84. package/src/shared/composables/index.ts +8 -7
  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 -0
  90. package/src/shared/composables/useSafeArea.ts +46 -46
  91. package/src/shared/composables/useTabbar.ts +24 -24
  92. package/src/shared/composables/useUpload.ts +54 -54
  93. package/src/shared/composables/useValidator.ts +31 -31
  94. package/src/shared/http/Http.ts +136 -136
  95. package/src/shared/http/index.ts +1 -1
  96. package/src/shared/http/types.ts +157 -157
  97. package/src/shared/index.ts +3 -3
  98. package/src/shared/weixin/payment.ts +38 -38
  99. package/src/styles/fonts.scss +2 -2
  100. package/src/styles/vars.scss +3 -3
  101. package/src/user/api/endpoints.ts +17 -17
  102. package/src/user/api/index.ts +111 -87
  103. package/src/user/components/LoginSetting.vue +114 -114
  104. package/src/user/components/UserBinding.vue +307 -307
  105. package/src/user/components/UserBindingSuccess.vue +80 -80
  106. package/src/user/components/UserEntry.vue +137 -137
  107. package/src/user/components/UserFeedback.vue +431 -431
  108. package/src/user/components/UserFeedbackEntry.vue +192 -192
  109. package/src/user/components/UserHeadCrop.vue +65 -65
  110. package/src/user/components/UserInfo.vue +637 -637
  111. package/src/user/components/UserResourceEmpty.vue +75 -75
  112. package/src/user/components/index.ts +21 -21
  113. package/src/user/index.ts +1 -1
  114. package/tsconfig.json +30 -30
  115. package/types/global.d.ts +21 -21
  116. package/types/vue.d.ts +10 -10
  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, useNutshell } from '@uxda/nutshell/taro';
10
+ import { NsForm, NsInput, NsButton, NsIcon, usePopup, useNutshell } from '@uxda/nutshell/taro';
11
11
  import debounce from 'lodash/debounce';
12
12
  import '@nutui/nutui-taro/dist/packages/dialog/style/css';
13
13
  import '@nutui/nutui-taro/dist/packages/datepicker/style/css';
@@ -23,8 +23,8 @@ import '@nutui/nutui-taro/dist/packages/skeleton/style/css';
23
23
  import '@nutui/nutui-taro/dist/packages/steps/style/css';
24
24
  import '@nutui/nutui-taro/dist/packages/step/style/css';
25
25
 
26
- const _hoisted_1$E = { class: "token-line number" };
27
- const _hoisted_2$y = { class: "number" };
26
+ const _hoisted_1$B = { class: "token-line number" };
27
+ const _hoisted_2$o = { class: "number" };
28
28
  var script$I = /* @__PURE__ */ defineComponent({
29
29
  __name: "AmountPicker",
30
30
  props: {
@@ -63,16 +63,16 @@ var script$I = /* @__PURE__ */ defineComponent({
63
63
  default: withCtx(() => [
64
64
  createElementVNode(
65
65
  "h4",
66
- _hoisted_1$E,
66
+ _hoisted_1$B,
67
67
  toDisplayString(amount.token),
68
68
  1
69
69
  /* TEXT */
70
70
  ),
71
71
  createElementVNode("h5", null, [
72
- createTextVNode("\xA5"),
72
+ _cache[0] || (_cache[0] = createTextVNode("\xA5")),
73
73
  createElementVNode(
74
74
  "span",
75
- _hoisted_2$y,
75
+ _hoisted_2$o,
76
76
  toDisplayString(amount.amount),
77
77
  1
78
78
  /* TEXT */
@@ -316,7 +316,114 @@ function useCrypto(config) {
316
316
  };
317
317
  }
318
318
 
319
- const _hoisted_1$D = {
319
+ const globalData = {};
320
+
321
+ const appKitOptions = {
322
+ app: () => "",
323
+ tenant: () => "",
324
+ token: () => "",
325
+ tempToken: () => "",
326
+ baseUrl: () => "",
327
+ 401() {
328
+ },
329
+ gray: () => ""
330
+ };
331
+ const useAppKitOptions = () => {
332
+ if (!globalData.$appKitOptions) {
333
+ globalData.$appKitOptions = appKitOptions;
334
+ }
335
+ return globalData.$appKitOptions;
336
+ };
337
+
338
+ const defaultLogOptions = {
339
+ projectName: "ddyk-dev",
340
+ logStore: "ddjf-internet-web",
341
+ topic: "appkit",
342
+ enable: true
343
+ };
344
+ function generateUniqueId(pre) {
345
+ return `${pre ? pre + "-" : ""}${Date.now().toString(16)}-${Math.random().toString(36).substr(2)}`;
346
+ }
347
+ function useLogger(options) {
348
+ const appkitOptions = useAppKitOptions();
349
+ const url = appkitOptions.baseUrl();
350
+ if (url.includes("ytech.ddjf.com")) {
351
+ defaultLogOptions.projectName = "ddyk-prod";
352
+ }
353
+ if (options) {
354
+ options = Object.assign(defaultLogOptions, options);
355
+ } else {
356
+ options = defaultLogOptions;
357
+ }
358
+ const projectName = options.projectName;
359
+ const logStore = options.logStore;
360
+ const topic = options.topic || "";
361
+ const APIVersion = "0.6.0";
362
+ const baseUrl = `https://${projectName}.cn-shenzhen.log.aliyuncs.com/logstores/${logStore}/track?APIVersion=${APIVersion}`;
363
+ const alislsURL = topic ? `${baseUrl}&__topic__=${topic}` : baseUrl;
364
+ const enable = options.enable === void 0 ? true : options.enable;
365
+ const { miniProgram } = Taro.getAccountInfoSync();
366
+ const systemInfo = JSON.stringify({
367
+ ...Taro.getSystemInfoSync(),
368
+ appVersion: miniProgram.version
369
+ }) || "\u672A\u77E5";
370
+ function send(params) {
371
+ if (!enable) return;
372
+ params.systemInfo = systemInfo;
373
+ const token = appkitOptions.tempToken() || appkitOptions.token();
374
+ if (token) {
375
+ params.userInfo = token;
376
+ }
377
+ if (params.msg && !params.send) {
378
+ params.send = params.msg;
379
+ }
380
+ if (params.send) {
381
+ params.send = params.send.slice(0, 1024);
382
+ }
383
+ if (params.receive) {
384
+ params.receive = params.receive.slice(0, 1024);
385
+ }
386
+ if (params.duration) {
387
+ params.duration = params.duration;
388
+ }
389
+ const pages = Taro.getCurrentPages();
390
+ const currentPage = pages?.[pages.length - 1];
391
+ const lastPage = pages?.[pages.length - 2];
392
+ params.pages = JSON.stringify({
393
+ current: currentPage?.$taroPath,
394
+ last: lastPage?.$taroPath
395
+ }).slice(0, 1024);
396
+ console.log(params);
397
+ const tmpStr = Object.keys(params).map((key) => `${key}=${encodeURIComponent(params[key])}`).join("&");
398
+ const url2 = `${alislsURL}&${tmpStr}`;
399
+ Taro.request({ url: url2 });
400
+ }
401
+ function info(params) {
402
+ if (!enable) return;
403
+ send({
404
+ send: params.send ?? "",
405
+ receive: params.receive ?? "",
406
+ duration: params.duration ?? "",
407
+ traceId: params.traceId,
408
+ level: "info"
409
+ });
410
+ }
411
+ function error(params) {
412
+ if (!enable) return;
413
+ send({
414
+ send: params.send ?? "",
415
+ receive: params.receive ?? "",
416
+ traceId: params.traceId,
417
+ level: "error"
418
+ });
419
+ }
420
+ return {
421
+ info,
422
+ error
423
+ };
424
+ }
425
+
426
+ const _hoisted_1$A = {
320
427
  key: 0,
321
428
  class: "page-title"
322
429
  };
@@ -350,7 +457,7 @@ var script$H = /* @__PURE__ */ defineComponent({
350
457
  [
351
458
  _ctx.title ? (openBlock(), createElementBlock(
352
459
  "h1",
353
- _hoisted_1$D,
460
+ _hoisted_1$A,
354
461
  toDisplayString(_ctx.title),
355
462
  1
356
463
  /* TEXT */
@@ -370,7 +477,7 @@ var script$H = /* @__PURE__ */ defineComponent({
370
477
 
371
478
  script$H.__file = "src/shared/components/PageHeader.vue";
372
479
 
373
- const _hoisted_1$C = { class: "drawer-body" };
480
+ const _hoisted_1$z = { class: "drawer-body" };
374
481
  var script$G = /* @__PURE__ */ defineComponent({
375
482
  __name: "AppDrawer",
376
483
  props: {
@@ -399,7 +506,7 @@ var script$G = /* @__PURE__ */ defineComponent({
399
506
  title: _ctx.title,
400
507
  onClose: onPageHeaderClose
401
508
  }, null, 8, ["title"]),
402
- createElementVNode("div", _hoisted_1$C, [
509
+ createElementVNode("div", _hoisted_1$z, [
403
510
  renderSlot(_ctx.$slots, "default")
404
511
  ])
405
512
  ]),
@@ -412,15 +519,15 @@ var script$G = /* @__PURE__ */ defineComponent({
412
519
 
413
520
  script$G.__file = "src/shared/components/AppDrawer.vue";
414
521
 
415
- const _hoisted_1$B = { class: "app-verify column" };
416
- const _hoisted_2$x = { class: "caption" };
417
- const _hoisted_3$s = { class: "number" };
418
- const _hoisted_4$l = { class: "form-btn" };
419
- const _hoisted_5$h = {
522
+ const _hoisted_1$y = { class: "app-verify column" };
523
+ const _hoisted_2$n = { class: "caption" };
524
+ const _hoisted_3$i = { class: "number" };
525
+ const _hoisted_4$e = { class: "form-btn" };
526
+ const _hoisted_5$a = {
420
527
  key: 1,
421
528
  class: "caption"
422
529
  };
423
- const _hoisted_6$c = { class: "row buttons" };
530
+ const _hoisted_6$5 = { class: "row buttons" };
424
531
  var script$F = /* @__PURE__ */ defineComponent({
425
532
  __name: "AppVerify",
426
533
  props: {
@@ -453,7 +560,7 @@ var script$F = /* @__PURE__ */ defineComponent({
453
560
  };
454
561
  const props = __props;
455
562
  return (_ctx, _cache) => {
456
- return openBlock(), createElementBlock("div", _hoisted_1$B, [
563
+ return openBlock(), createElementBlock("div", _hoisted_1$y, [
457
564
  createElementVNode(
458
565
  "h2",
459
566
  null,
@@ -463,14 +570,14 @@ var script$F = /* @__PURE__ */ defineComponent({
463
570
  ),
464
571
  createElementVNode(
465
572
  "p",
466
- _hoisted_2$x,
573
+ _hoisted_2$n,
467
574
  toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
468
575
  1
469
576
  /* TEXT */
470
577
  ),
471
578
  createElementVNode(
472
579
  "p",
473
- _hoisted_3$s,
580
+ _hoisted_3$i,
474
581
  toDisplayString(_ctx.phone),
475
582
  1
476
583
  /* TEXT */
@@ -495,7 +602,7 @@ var script$F = /* @__PURE__ */ defineComponent({
495
602
  method: (value) => value.length === 6
496
603
  }]
497
604
  }, null, 8, ["modelValue", "rules"]),
498
- createElementVNode("div", _hoisted_4$l, [
605
+ createElementVNode("div", _hoisted_4$e, [
499
606
  !sent.value ? (openBlock(), createBlock(unref(NsButton), {
500
607
  key: 0,
501
608
  size: "xs",
@@ -506,7 +613,7 @@ var script$F = /* @__PURE__ */ defineComponent({
506
613
  })) : createCommentVNode("v-if", true),
507
614
  sent.value ? (openBlock(), createElementBlock(
508
615
  "div",
509
- _hoisted_5$h,
616
+ _hoisted_5$a,
510
617
  toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
511
618
  1
512
619
  /* TEXT */
@@ -516,15 +623,15 @@ var script$F = /* @__PURE__ */ defineComponent({
516
623
  _: 1
517
624
  /* STABLE */
518
625
  }, 8, ["modelValue"]),
519
- createElementVNode("div", _hoisted_6$c, [
626
+ createElementVNode("div", _hoisted_6$5, [
520
627
  createVNode(unref(NsButton), {
521
628
  class: "cancel-btn",
522
629
  round: "",
523
630
  onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
524
631
  }, {
525
- default: withCtx(() => [
632
+ default: withCtx(() => _cache[3] || (_cache[3] = [
526
633
  createTextVNode("\u53D6\u6D88")
527
- ]),
634
+ ])),
528
635
  _: 1
529
636
  /* STABLE */
530
637
  }),
@@ -533,9 +640,9 @@ var script$F = /* @__PURE__ */ defineComponent({
533
640
  gradient: "#FFEBC1,#FFD7A7,#FFB875/90",
534
641
  onClick: onOk
535
642
  }, {
536
- default: withCtx(() => [
643
+ default: withCtx(() => _cache[4] || (_cache[4] = [
537
644
  createTextVNode("\u786E\u8BA4")
538
- ]),
645
+ ])),
539
646
  _: 1
540
647
  /* STABLE */
541
648
  })
@@ -547,20 +654,7 @@ var script$F = /* @__PURE__ */ defineComponent({
547
654
 
548
655
  script$F.__file = "src/shared/components/AppVerify.vue";
549
656
 
550
- const _hoisted_1$A = { key: 0 };
551
- const _hoisted_2$w = /* @__PURE__ */ createElementVNode(
552
- "img",
553
- {
554
- src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
555
- class: "dd-notice-bar__close-img"
556
- },
557
- null,
558
- -1
559
- /* HOISTED */
560
- );
561
- const _hoisted_3$r = [
562
- _hoisted_2$w
563
- ];
657
+ const _hoisted_1$x = { key: 0 };
564
658
  var script$E = /* @__PURE__ */ defineComponent({
565
659
  __name: "index",
566
660
  props: {
@@ -592,7 +686,7 @@ var script$E = /* @__PURE__ */ defineComponent({
592
686
  }, [
593
687
  _ctx.text ? (openBlock(), createElementBlock(
594
688
  "span",
595
- _hoisted_1$A,
689
+ _hoisted_1$x,
596
690
  toDisplayString(_ctx.text),
597
691
  1
598
692
  /* TEXT */
@@ -603,7 +697,18 @@ var script$E = /* @__PURE__ */ defineComponent({
603
697
  key: 0,
604
698
  class: "dd-notice-bar__close",
605
699
  onClick: close
606
- }, [..._hoisted_3$r])) : createCommentVNode("v-if", true)
700
+ }, _cache[0] || (_cache[0] = [
701
+ createElementVNode(
702
+ "img",
703
+ {
704
+ src: "https://cdn.ddjf.com/static/images/wechat-yunservice/close-icon.png",
705
+ class: "dd-notice-bar__close-img"
706
+ },
707
+ null,
708
+ -1
709
+ /* HOISTED */
710
+ )
711
+ ]))) : createCommentVNode("v-if", true)
607
712
  ],
608
713
  6
609
714
  /* CLASS, STYLE */
@@ -716,38 +821,39 @@ const transforms$3 = Object.fromEntries(
716
821
  Object.entries(endpointsList$3).map(([, def]) => [def.path, def.transform])
717
822
  );
718
823
 
719
- const globalData = {};
720
-
721
- const appKitOptions = {
722
- app: () => "",
723
- tenant: () => "",
724
- token: () => "",
725
- tempToken: () => "",
726
- baseUrl: () => "",
727
- 401() {
728
- },
729
- gray: () => ""
730
- };
731
- const useAppKitOptions = () => {
732
- if (!globalData.$appKitOptions) {
733
- globalData.$appKitOptions = appKitOptions;
734
- }
735
- return globalData.$appKitOptions;
736
- };
737
-
824
+ const logger$3 = useLogger();
738
825
  const vendor$3 = {
739
826
  async request(config) {
740
827
  return new Promise((resolve, reject) => {
828
+ const header = {
829
+ ...config.headers,
830
+ traceId: generateUniqueId("appkit")
831
+ };
832
+ const startTime = (/* @__PURE__ */ new Date()).getTime();
741
833
  Taro.request({
742
834
  url: config.url,
743
835
  method: config.method,
744
- header: config.headers,
836
+ header,
745
837
  data: config.data
746
838
  }).then(({ data }) => {
747
- resolve({
748
- status: +data.code,
749
- message: data.msg,
750
- data: data.result
839
+ if (data.success) {
840
+ resolve({
841
+ status: +data.code,
842
+ message: data.msg,
843
+ data: data.result
844
+ });
845
+ } else if (data.code !== "401") {
846
+ Taro.showToast({
847
+ title: data.msg,
848
+ icon: "none"
849
+ });
850
+ }
851
+ const endTime = (/* @__PURE__ */ new Date()).getTime();
852
+ logger$3.info({
853
+ send: JSON.stringify({ url: config.url, data: config.data }),
854
+ receive: JSON.stringify(data),
855
+ traceId: header.traceId,
856
+ duration: endTime - startTime
751
857
  });
752
858
  }).catch((e) => {
753
859
  reject(e);
@@ -1246,19 +1352,39 @@ const transforms$2 = Object.fromEntries(
1246
1352
  Object.entries(endpointsList$2).map(([, def]) => [def.path, def.transform])
1247
1353
  );
1248
1354
 
1355
+ const logger$2 = useLogger();
1249
1356
  const vendor$2 = {
1250
1357
  async request(config) {
1251
1358
  return new Promise((resolve, reject) => {
1359
+ const header = {
1360
+ ...config.headers,
1361
+ traceId: generateUniqueId("appkit")
1362
+ };
1363
+ const startTime = (/* @__PURE__ */ new Date()).getTime();
1252
1364
  Taro.request({
1253
1365
  url: config.url,
1254
1366
  method: config.method,
1255
- header: config.headers,
1367
+ header,
1256
1368
  data: config.data
1257
1369
  }).then(({ data }) => {
1258
- resolve({
1259
- status: data.code,
1260
- message: data.msg,
1261
- data: data.result
1370
+ if (data.success) {
1371
+ resolve({
1372
+ status: +data.code,
1373
+ message: data.msg,
1374
+ data: data.result
1375
+ });
1376
+ } else if (data.code !== "401") {
1377
+ Taro.showToast({
1378
+ title: data.msg,
1379
+ icon: "none"
1380
+ });
1381
+ }
1382
+ const endTime = (/* @__PURE__ */ new Date()).getTime();
1383
+ logger$2.info({
1384
+ send: JSON.stringify({ url: config.url, data: config.data }),
1385
+ receive: JSON.stringify(data),
1386
+ traceId: header.traceId,
1387
+ duration: endTime - startTime
1262
1388
  });
1263
1389
  }).catch((e) => {
1264
1390
  reject(e);
@@ -1372,10 +1498,10 @@ const services$1 = [
1372
1498
  invokeRecharge$1
1373
1499
  ];
1374
1500
 
1375
- const _hoisted_1$z = { class: "view recharge-view" };
1376
- const _hoisted_2$v = { class: "flex-grow" };
1377
- const _hoisted_3$q = { class: "amount-footer" };
1378
- const _hoisted_4$k = { class: "agreement" };
1501
+ const _hoisted_1$w = { class: "view recharge-view" };
1502
+ const _hoisted_2$m = { class: "flex-grow" };
1503
+ const _hoisted_3$h = { class: "amount-footer" };
1504
+ const _hoisted_4$d = { class: "agreement" };
1379
1505
  var script$A = /* @__PURE__ */ defineComponent({
1380
1506
  __name: "RechargeView",
1381
1507
  props: {
@@ -1440,22 +1566,22 @@ var script$A = /* @__PURE__ */ defineComponent({
1440
1566
  return (_ctx, _cache) => {
1441
1567
  const _component_nut_checkbox = Checkbox;
1442
1568
  const _component_nut_button = Button;
1443
- return openBlock(), createElementBlock("view", _hoisted_1$z, [
1444
- createElementVNode("view", _hoisted_2$v, [
1569
+ return openBlock(), createElementBlock("view", _hoisted_1$w, [
1570
+ createElementVNode("view", _hoisted_2$m, [
1445
1571
  createVNode(script$I, {
1446
1572
  items: amounts.value,
1447
1573
  selected: state.selected,
1448
1574
  onChange: onAmountSelect
1449
1575
  }, null, 8, ["items", "selected"])
1450
1576
  ]),
1451
- createElementVNode("view", _hoisted_3$q, [
1452
- createElementVNode("view", _hoisted_4$k, [
1577
+ createElementVNode("view", _hoisted_3$h, [
1578
+ createElementVNode("view", _hoisted_4$d, [
1453
1579
  createVNode(_component_nut_checkbox, {
1454
1580
  modelValue: state.agreed,
1455
1581
  "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
1456
1582
  }, {
1457
1583
  default: withCtx(() => [
1458
- createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1584
+ _cache[1] || (_cache[1] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1459
1585
  createElementVNode("a", {
1460
1586
  class: "link inline",
1461
1587
  onClick: onAgreementLinkClick
@@ -1472,9 +1598,9 @@ var script$A = /* @__PURE__ */ defineComponent({
1472
1598
  onClick: onPayClick,
1473
1599
  class: "recharge-button"
1474
1600
  }, {
1475
- default: withCtx(() => [
1601
+ default: withCtx(() => _cache[2] || (_cache[2] = [
1476
1602
  createTextVNode("\u7ACB\u5373\u5145\u503C")
1477
- ]),
1603
+ ])),
1478
1604
  _: 1
1479
1605
  /* STABLE */
1480
1606
  }, 8, ["loading"])
@@ -1486,13 +1612,11 @@ var script$A = /* @__PURE__ */ defineComponent({
1486
1612
 
1487
1613
  script$A.__file = "src/payment/components/RechargeView.vue";
1488
1614
 
1489
- const _hoisted_1$y = { class: "agreement-doc" };
1490
- const _hoisted_2$u = /* @__PURE__ */ createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96);
1491
- const _hoisted_98 = [
1492
- _hoisted_2$u
1493
- ];
1615
+ const _hoisted_1$v = { class: "agreement-doc" };
1494
1616
  function render$2(_ctx, _cache) {
1495
- return openBlock(), createElementBlock("view", _hoisted_1$y, [..._hoisted_98]);
1617
+ return openBlock(), createElementBlock("view", _hoisted_1$v, _cache[0] || (_cache[0] = [
1618
+ createStaticVNode('<h1>\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE</h1><p>2023-12-01</p><p>\xA0</p><p>\u6B22\u8FCE\u60A8\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF01</p><p>\xA0</p><p>\u3010\u63D0\u793A\u6761\u6B3E\u3011</p><p> \u6B22\u8FCE\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u670D\u52A1\u63D0\u4F9B\u8005\u7B7E\u7F72\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u534F\u8BAE\u201D\uFF09\u5E76\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u503C\u670D\u52A1\uFF01\u60A8\u7406\u89E3\u548C\u540C\u610F\u672C\u534F\u8BAE\u7CFB\u6839\u636E\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u5236\u5B9A\uFF0C\u672C\u534F\u8BAE\u4E3A\u524D\u8FF0\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u4E00\u90E8\u5206\uFF0C\u672C\u534F\u8BAE\u672A\u89C4\u5B9A\u7684\uFF0C\u9002\u7528\u300A\u7528\u6237\u6CE8\u518C\u534F\u8BAE\u300B\u7B49\u534F\u8BAE\u4E2D\u7684\u76F8\u5173\u7EA6\u5B9A\u3002 </p><p>\xA0</p><p>\u3010\u5BA1\u614E\u9605\u8BFB\u3011</p><p><span class="bold">\u5728\u4F7F\u7528\u672C\u670D\u52A1\u524D\uFF0C\u8BF7\u60A8\u52A1\u5FC5\u5BA1\u614E\u9605\u8BFB\u3001\u5145\u5206\u7406\u89E3\u5404\u6761\u6B3E\u5185\u5BB9\uFF0C\u7279\u522B\u662F\u514D\u9664\u6216\u9650\u5236\u8D23\u4EFB\u7684\u76F8\u5E94\u6761\u6B3E\uFF0C\u4EE5\u53CA\u5F00\u901A\u6216\u4F7F\u7528\u67D0\u9879\u670D\u52A1\u7684\u5355\u72EC\u534F\u8BAE\uFF0C\u60A8\u4F7F\u7528\u6B64\u670D\u52A1\u5373\u8868\u793A\u60A8\u63A5\u53D7\u672C\u534F\u8BAE\u3002\u9650\u5236\u6216\u514D\u9664\u8D23\u4EFB\u6761\u6B3E\u53EF\u80FD\u4EE5\u52A0\u7C97\u5F62\u5F0F\u63D0\u793A\u60A8\u6CE8\u610F\u3002</span></p><p>\xA0</p><p>\u3010\u7279\u522B\u63D0\u793A\u3011</p><p><span class="bold">\u5145\u503C\u7528\u6237\u786E\u8BA4\uFF0C\u81EA\u5DF1\u4E3A\u5E74\u6EE118\u5468\u5C81\u4E14\u5177\u6709\u5B8C\u5168\u6C11\u4E8B\u884C\u4E3A\u80FD\u529B\u7684\u6210\u5E74\u4EBA\uFF0C\u9664\u975E\u60A8\u5DF2\u9605\u8BFB\u5E76\u63A5\u53D7\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\uFF0C\u5426\u5219\u60A8\u65E0\u6743\u4F7F\u7528\u5927\u9053\u4E91\u5E73\u53F0\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u60A8\u5BF9\u672C\u670D\u52A1\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E00\u3001\u534F\u8BAE\u7684\u8303\u56F4</span></p><p>\xA0</p><p>1.1\u3010\u534F\u8BAE\u9002\u7528\u4E3B\u4F53\u8303\u56F4\u3011</p><p>\u672C\u534F\u8BAE\u662F\u60A8\u4E0E\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u5173\u4E8E\u60A8\u4F7F\u7528\u672C\u670D\u52A1\u6240\u8BA2\u7ACB\u7684\u534F\u8BAE\u3002</p><p>\xA0</p><p>1.2\u3010\u670D\u52A1\u5185\u5BB9\u3011</p><p> \u672C\u534F\u8BAE\u9879\u4E0B\u7684\u670D\u52A1\u662F\u6307\u5927\u9053\u4E91\u5E73\u53F0\u5411\u7528\u6237\u63D0\u4F9B\u7684\u4E91\u8C46\u5145\u503C\u670D\u52A1\uFF08\u4EE5\u4E0B\u7B80\u79F0\u201C\u672C\u670D\u52A1\u201D\uFF09\u3002\u672C\u534F\u8BAE\u5185\u5BB9\u540C\u65F6\u5305\u62EC\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4E0D\u65AD\u53D1\u5E03\u7684\u5173\u4E8E\u672C\u670D\u52A1\u7684\u76F8\u5173\u534F\u8BAE\u3001\u4E1A\u52A1\u89C4\u5219\u7B49\u5185\u5BB9\u3002\u4E0A\u8FF0\u5185\u5BB9\u4E00\u7ECF\u6B63\u5F0F\u53D1\u5E03\uFF0C\u5373\u4E3A\u672C\u534F\u8BAE\u4E0D\u53EF\u5206\u5272\u7684\u7EC4\u6210\u90E8\u5206\uFF0C\u60A8\u540C\u6837\u5E94\u5F53\u9075\u5B88\u3002 </p><p>\xA0</p><p><span class="bold">\u4E8C\u3001\u540D\u8BCD\u5B9A\u4E49</span></p><p>\xA0</p><p><span class="bold">2.1\u3010\u4E91\u8C46\u3011</span></p><p><span class="bold">2.1.1 \u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u4F7F\u7528\u62B5\u6263\u3002</span></p><p>\xA0</p><p><span class="bold">2.1.2 \u4E91\u8C46\u5C5E\u4E8E\u5728\u7EBF\u4EA4\u4ED8\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u4E91\u8C46\u7684\u8D2D\u4E70\u8D39\u7528\u7CFB\u6570\u5B57\u5316\u5546\u54C1\u4EF7\u683C\uFF0C\u800C\u4E0D\u5177\u6709\u9884\u4ED8\u6B3E\u6027\u8D28\u6216\u8005\u5B9A\u91D1\u3001\u50A8\u503C\u7B49\u6027\u8D28\uFF0C\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u8D27\u5E01\u3002</span></p><p><span class="bold">2.1.3 \u4E91\u8C46\u4EC5\u9650\u4E8E\u7528\u6237\u81EA\u5DF1\u8D26\u53F7\u5728\u5927\u9053\u4E91\u5E73\u53F0\u4F7F\u7528\uFF0C\u4E0D\u5F97\u4EE5\u76C8\u5229\u7B49\u975E\u4E2A\u4EBA\u4F7F\u7528\u76EE\u7684\u4F7F\u7528\u4E91\u8C46\uFF0C\u6216\u901A\u8FC7\u8D60\u4E0E\u3001\u51FA\u501F\u3001\u8F6C\u8BA9\u3001\u9500\u552E\u3001\u62B5\u62BC\u3001\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\u7B49\u65B9\u5F0F\u83B7\u53D6\u6216\u5904\u7F6E\u4E91\u8C46\u3002</span></p><p><span class="bold">2.1.4 \u4EBA\u6C11\u5E01\u548C\u4E91\u8C46\u5151\u6362\u7684\u6BD4\u4F8B\u4E3A1:1\uFF08\u53731\u5143\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF09\uFF0C\u4E91\u8C46\u5728\u4EFB\u4F55\u60C5\u51B5\u4E0B\u90FD\u4E0D\u5177\u6709\u6CD5\u5B9A\u8D27\u5E01\u7684\u6D41\u8F6C\u53CA\u652F\u4ED8\u529F\u80FD\uFF0C\u4E0D\u5F97\u53CD\u5411\u5151\u6362\u4E3A\u4EBA\u6C11\u5E01\u6216\u5176\u4ED6\u6CD5\u5B9A\u8D27\u5E01\u3001\u5B9E\u7269\u548C\u5176\u4ED6\u865A\u62DF\u8D27\u5E01\uFF0C\u8BF7\u60A8\u6839\u636E\u5B9E\u9645\u9700\u6C42\u8D2D\u4E70\u76F8\u5E94\u6570\u91CF\u7684\u4E91\u8C46\u3002</span></p><p>2.2\u3010\u5927\u9053\u4E91\u5E73\u53F0\u3011</p><p> \u6307\u7531<span class="bold">\u5927\u9053\u4E91\u5E73\u53F0\u6240\u62E5\u6709\u3001\u63A7\u5236\u3001\u7ECF\u8425\u7684\u5927\u9053\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u6C47\u4E91\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E09\u3001\u6743\u5229\u4E49\u52A1</span></p><p>\xA0</p><p> 3.1.1 \u60A8\u627F\u8BFA\u5177\u5907\u4F7F\u7528\u672C\u670D\u52A1\u6240\u5FC5\u9700\u7684\u6C11\u4E8B\u80FD\u529B\u548C\u5408\u6CD5\u8D44\u683C\uFF0C\u6709\u6743\u4E14\u6709\u80FD\u529B\u540C\u610F\u672C\u534F\u8BAE\u53CA\u76F8\u5173\u534F\u8BAE\u7684\u5168\u90E8\u5185\u5BB9\u3002 </p><p> 3.1.2 <span class="bold">\u60A8\u5E94\u59A5\u5584\u4FDD\u7BA1\u5927\u9053\u4E91\u5E73\u53F0\u8D26\u53F7\u7684\u7528\u6237\u540D\u53CA\u5176\u5BC6\u7801\uFF0C\u5E76\u5BF9\u8BE5\u8D26\u53F7\u4E0B\u7684\u4E00\u5207\u64CD\u4F5C\u884C\u4E3A\u8D1F\u8D23\u3002\u5982\u60A8\u7684\u5927\u9053\u4E91\u8D26\u53F7\u5B58\u5728\u5F02\u5E38\u60C5\u5F62\uFF0C\u60A8\u53EF\u4EE5\u8054\u7CFB\u5BA2\u670D\u6302\u5931\u6216\u51BB\u7ED3\u60A8\u7684\u8D26\u6237\u3002\u6B64\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u9700\u8981\u60A8\u63D0\u4F9B\u5927\u9053\u4E91\u8D26\u53F7\u7684\u6CE8\u518C\u4FE1\u606F\u4EE5\u5B8C\u6210\u8EAB\u4EFD\u6838\u9A8C\u3002\u60A8\u7406\u89E3\u5E76\u786E\u8BA4\uFF0C\u7531\u4E8E\u6280\u672F\u5C40\u9650\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4FDD\u8BC1\u8EAB\u4EFD\u6838\u9A8C\u7684\u51C6\u786E\u6027\u548C\u771F\u5B9E\u6027\u3002</span></p><p> 3.1.3 \u60A8\u627F\u8BFA\u4E0D\u5F97\u901A\u8FC7\u975E\u5927\u9053\u4E91\u5E73\u53F0\u6307\u5B9A\u9014\u5F84\u6216\u4EFB\u4F55\u8FDD\u53CD\u76F8\u5173\u6CD5\u89C4\u3001\u8FDD\u53CD\u672C\u534F\u8BAE\u3001\u4E0D\u6B63\u5F53\u624B\u6BB5\u7B49\u8D2D\u4E70\u4E91\u8C46\u3002 </p><p> 3.1.4 \u5927\u9053\u4E91\u5E73\u53F0\u53EF\u80FD\u4F1A\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5BF9\u672C\u670D\u52A1\u7684\u6536\u8D39\u6807\u51C6\u3001\u65B9\u5F0F\u7B49\u8FDB\u884C\u4FEE\u6539\u548C\u53D8\u66F4\uFF0C\u524D\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u5728\u76F8\u5E94\u670D\u52A1\u9875\u9762\u8FDB\u884C\u901A\u77E5\u6216\u516C\u544A\u3002\u5982\u679C\u60A8\u4E0D\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\uFF0C\u5219\u5E94\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002\u5426\u5219\uFF0C\u60A8\u7684\u4EFB\u4F55\u8D2D\u4E70\u3001\u767B\u5F55\u3001\u67E5\u770B\u7B49\u4F7F\u7528\u884C\u4E3A\uFF0C\u5373\u89C6\u4E3A\u60A8\u540C\u610F\u4E0A\u8FF0\u4FEE\u6539\u3001\u53D8\u66F4\u3002 </p><p> 3.1.5 \u5927\u9053\u4E91\u5E73\u53F0\u5728\u76EE\u524D\u6280\u672F\u6C34\u5E73\u4E0B\uFF0C\u6700\u5927\u7A0B\u5EA6\u5730\u4FDD\u969C\u672C\u529F\u80FD\u7684\u6B63\u5E38\u8FD0\u884C\uFF0C\u4EE5\u7EF4\u62A4\u4F60\u7684\u5229\u76CA\u3002\u5927\u9053\u4E91\u5E73\u53F0\u5BF9\u672C\u670D\u52A1\u4E0D\u4F5C\u4EFB\u4F55\u660E\u793A\u6216\u6697\u793A\u7684\u4FDD\u8BC1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u5BF9\u672C\u670D\u52A1\u7684\u53EF\u9002\u7528\u6027\u3001\u6301\u7EED\u6027\u7B49\u3002 </p><p>\xA0</p><p><span class="bold">\u56DB\u3001\u4E91\u8C46\u4F7F\u7528\u89C4\u5219\u53CA\u7279\u522B\u7EA6\u5B9A</span></p><p>\xA0</p><p><span class="bold">4.1 \u5927\u9053\u4E91\u5E73\u53F0\u5411\u60A8\u63D0\u4F9B\u8D2D\u4E70\u3001\u7BA1\u7406\u4E91\u8C46\u6709\u5173\u7684\u7F51\u7EDC\u589E\u503C\u670D\u52A1\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4E91\u8C46\u7684\u8D2D\u4E70\u3001\u8D26\u6237\u7BA1\u7406\u9875\u9762\u3001\u4EA4\u6613\u660E\u7EC6\u67E5\u8BE2\u670D\u52A1\uFF08\u4EE5\u4E0B\u79F0\u201C\u4E91\u8C46\u670D\u52A1\u201D\uFF09\u3002\u4E91\u8C46\u670D\u52A1\u7684\u5177\u4F53\u5185\u5BB9\u8BF7\u4EE5\u76F8\u5173\u9875\u9762\u7684\u4FE1\u606F\u4E3A\u51C6\u3002\u60A8\u540C\u610F\u4EE5\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u4F5C\u4E3A\u4E91\u8C46\u8D2D\u4E70\u7684\u552F\u4E00\u6709\u6548\u4F9D\u636E\uFF0C\u5982\u60A8\u5BF9\u5927\u9053\u4E91\u5E73\u53F0\u7559\u5B58\u7684\u4EA4\u6613\u8BB0\u5F55\u6709\u5F02\u8BAE\uFF0C\u60A8\u5E94\u7ACB\u5373\u5411\u5927\u9053\u4E91\u5E73\u53F0\u63D0\u51FA\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u7ECF\u6838\u5BF9\u540E\u53D1\u73B0\u786E\u6709\u9519\u8BEF\u7684\uFF0C\u5C06\u4E88\u4EE5\u6539\u6B63\u3002</span></p><p><span class="bold">4.2. \u60A8\u5E94\u8BE5\u901A\u8FC7\u5927\u9053\u4E91\u5E73\u53F0\u5B98\u65B9\u6307\u5B9A\u7684\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u652F\u4ED8\u5B9D\u3001\u8D22\u4ED8\u901A\u7B49\u65B9\u5F0F\u4F9D\u7EA6\u652F\u4ED8\u4E00\u5B9A\u8D39\u7528\u540E\u8D2D\u4E70\u4E91\u8C46\u3002</span></p><p><span class="bold">4.3 \u60A8\u5FC5\u987B\u4E3A\u7ED1\u5B9A\u7684\u652F\u4ED8\u6E20\u9053\u8D26\u6237\u5F00\u6237\u4EBA/\u6301\u6709\u4EBA\uFF0C\u53EF\u5408\u6CD5\u3001\u6709\u6548\u4F7F\u7528\u8BE5\u8D26\u6237\u4E14\u672A\u4FB5\u72AF\u4EFB\u4F55\u7B2C\u4E09\u65B9\u6743\u76CA\uFF0C\u5426\u5219\u56E0\u6B64\u9020\u6210\u652F\u4ED8\u8D26\u6237\u5B9E\u9645\u6240\u6709\u4EBA\u635F\u5931\u7684\uFF0C\u5E94\u7531\u60A8\u5355\u72EC\u8D1F\u8D23\u89E3\u51B3\u7531\u6B64\u4EA7\u751F\u7684\u7EA0\u7EB7\u5E76\u627F\u62C5\u5168\u90E8\u6CD5\u5F8B\u8D23\u4EFB\u3002</span></p><p><span class="bold">4.4 \u60A8\u5E94\u5728\u8D2D\u4E70\u4E91\u8C46\u65F6\u4ED4\u7EC6\u786E\u8BA4\u8D26\u53F7\u3001\u652F\u4ED8\u8D26\u6237\u3001\u8D2D\u4E70\u6570\u91CF\u3001\u8D2D\u4E70\u8D39\u7528\u7B49\u4EA4\u6613\u4FE1\u606F\u51C6\u786E\u65E0\u8BEF\uFF0C\u5982\u56E0\u60A8\u81EA\u8EAB\u539F\u56E0\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u8D26\u53F7\u9519\u8BEF\u3001\u652F\u4ED8\u8D26\u6237\u9519\u8BEF\u3001\u64CD\u4F5C\u4E0D\u5F53\u3001\u8D26\u53F7/\u652F\u4ED8\u8D26\u6237\u5B58\u5728\u5F02\u5E38\u60C5\u51B5\u7B49\uFF09\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u5E94\u7531\u60A8\u81EA\u884C\u627F\u62C5\u3002</span></p><p><span class="bold">4.5 \u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u51B3\u5B9A\u4E91\u8C46\u5982\u4F55\u88AB\u4F7F\u7528\uFF08\u5305\u62EC\u5151\u6362\u865A\u62DF\u5546\u54C1\u7B49\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u4F7F\u7528\u7684\u4EA7\u54C1\u6216\u670D\u52A1\uFF09\u3002</span></p><p>\xA0</p><p><span class="bold">\u4E94\u3001\u884C\u4E3A\u89C4\u8303</span></p><p>\xA0</p><p>5.1\u3010\u7528\u6237\u7981\u6B62\u884C\u4E3A\u3011</p><p>\u672C\u670D\u52A1\u4EC5\u4F9B\u60A8\u4E2A\u4EBA\u4F7F\u7528\uFF0C\u9664\u975E\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\uFF0C\u60A8\u4E0D\u5F97\u8FDB\u884C\u4EE5\u4E0B\u884C\u4E3A\uFF1A</p><p>5.1.1 \u5C06\u672C\u670D\u52A1\u8F6C\u8BA9\u8BB8\u53EF\u4ED6\u4EBA\u4F7F\u7528\uFF1B</p><p>5.1.2 \u5176\u4ED6\u672A\u7ECF\u5927\u9053\u4E91\u5E73\u53F0\u4E66\u9762\u8BB8\u53EF\u7684\u884C\u4E3A\u3002</p><p>5.2\u3010\u884C\u4E3A\u8D23\u4EFB\u3011</p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u7528\u4EE5\u53C2\u4E0E\u672C\u670D\u52A1\u7684\u5927\u9053\u4E91\u8D26\u53F7\u7531\u60A8\u72EC\u7ACB\u7EF4\u62A4\u3001\u4F7F\u7528\u5E76\u72EC\u7ACB\u627F\u62C5\u5168\u90E8\u8D23\u4EFB\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u4E0D\u4F1A\u3001\u4E5F\u4E0D\u53EF\u80FD\u53C2\u4E0E\u8BE5\u8D26\u53F7\u7684\u4F7F\u7528\u7B49\u4EFB\u4F55\u6D3B\u52A8\u3002\u60A8\u5E94\u5BF9\u672C\u670D\u52A1\u4E2D\u7684\u5185\u5BB9\u81EA\u884C\u52A0\u4EE5\u5224\u65AD\uFF0C\u5E76\u627F\u62C5\u56E0\u4F7F\u7528\u5185\u5BB9\u800C\u5F15\u8D77\u7684\u6240\u6709\u98CE\u9669\uFF0C\u5305\u62EC\u56E0\u5BF9\u5185\u5BB9\u7684\u6B63\u786E\u6027\u3001\u5B8C\u6574\u6027\u6216\u5B9E\u7528\u6027\u7684\u4F9D\u8D56\u800C\u4EA7\u751F\u7684\u98CE\u9669\u3002\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u4E14\u4E0D\u4F1A\u5BF9\u56E0\u524D\u8FF0\u98CE\u9669\u800C\u5BFC\u81F4\u7684\u4EFB\u4F55\u635F\u5931\u6216\u635F\u5BB3\u627F\u62C5\u4EFB\u4F55\u8D23\u4EFB\u3002</span></p><p>\xA0</p><p><span class="bold">\u516D\u3001\u670D\u52A1\u7684\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62</span></p><p>\xA0</p><p> \u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u7531\u4E8E\u4E92\u8054\u7F51\u670D\u52A1\u7684\u7279\u6B8A\u6027\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u53EF\u4EE5\u5728\u4E0D\u63D0\u524D\u901A\u77E5\u60A8\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u6839\u636E\u672C\u670D\u52A1\u7684\u6574\u4F53\u89C4\u5212\uFF0C\u5355\u65B9\u6709\u6743\u5BF9\u672C\u670D\u52A1\u5185\u5BB9\u8FDB\u884C\u53D8\u66F4\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u3002 </p><p>\xA0</p><p><span class="bold">\u4E03\u3001\u8FDD\u7EA6\u8D23\u4EFB</span></p><p>\xA0</p><p><span class="bold">7.1 \u5982\u679C\u5927\u9053\u4E91\u5E73\u53F0\u53D1\u73B0\u6216\u6536\u5230\u4ED6\u4EBA\u4E3E\u62A5\u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u8FDB\u884C\u72EC\u7ACB\u5224\u65AD\u5E76\u91C7\u53D6\u6280\u672F\u624B\u6BB5\u4E88\u4EE5\u5220\u9664\u3001\u5C4F\u853D\u6216\u65AD\u5F00\u76F8\u5173\u7684\u4FE1\u606F\u3002\u540C\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u89C6\u60A8\u7684\u884C\u4E3A\u6027\u8D28\uFF0C\u5BF9\u60A8\u91C7\u53D6\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u3001\u4E2D\u6B62\u6216\u7EC8\u6B62\u60A8\u5BF9\u8D26\u53F7\u7684\u4F7F\u7528\u3001\u8FFD\u7A76\u6CD5\u5F8B\u8D23\u4EFB\u7B49\u63AA\u65BD\uFF0C\u800C\u7531\u6B64\u7ED9\u60A8\u5E26\u6765\u7684\u635F\u5931\uFF08\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u901A\u4FE1\u4E2D\u65AD\u3001\u76F8\u5173\u6570\u636E\u6E05\u7A7A\u3001\u670D\u52A1\u8D39\u7528\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u7B49\uFF09\uFF0C\u7531\u60A8\u81EA\u884C\u627F\u62C5\uFF0C\u9020\u6210\u5927\u9053\u4E91\u5E73\u53F0\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u4E88\u4EE5\u8D54\u507F\u3002\u82E5\u5927\u9053\u4E91\u5E73\u53F0\u4F9D\u524D\u8FF0\u7EA6\u5B9A\u5BF9\u60A8\u91C7\u53D6\u6682\u505C\u6216\u7EC8\u6B62\u90E8\u5206\u6216\u5168\u90E8\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p>7.2\u3010\u5BF9\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\u5904\u7406\u3011</p><p> \u60A8\u6709\u8FDD\u53CD\u672C\u534F\u8BAE\u4EFB\u4F55\u884C\u4E3A\uFF0C\u5BFC\u81F4\u4EFB\u4F55\u7B2C\u4E09\u65B9\u635F\u5BB3\u7684\uFF0C\u60A8\u5E94\u5F53\u72EC\u7ACB\u627F\u62C5\u8D23\u4EFB\uFF1B\u5927\u9053\u4E91\u5E73\u53F0\u56E0\u6B64\u906D\u53D7\u635F\u5931\u7684\uFF0C\u60A8\u4E5F\u5E94\u5F53\u4E00\u5E76\u8D54\u507F\u3002 </p><p>\xA0</p><p><span class="bold">7.3\u3010\u5355\u65B9\u63D0\u524D\u7EC8\u6B62\u670D\u52A1\u3011</span></p><p><span class="bold">\u60A8\u5145\u5206\u4E86\u89E3\u5E76\u540C\u610F\uFF0C\u60A8\u5728\u9009\u62E9\u4F7F\u7528\u672C\u670D\u52A1\u540E\uFF0C\u82E5\u60A8\u5728\u65E0\u4EFB\u4F55\u6CD5\u5B9A\u6216\u7EA6\u5B9A\u7406\u7531\u7684\u60C5\u51B5\u4E4B\u4E0B\uFF0C\u5355\u65B9\u8981\u6C42\u63D0\u524D\u7EC8\u6B62\u672C\u670D\u52A1\u7684\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u9700\u5411\u60A8\u9000\u8FD8\u4EFB\u4F55\u8D39\u7528\uFF0C\u5269\u4F59\u7684\u670D\u52A1\u8D39\u7528\uFF0C\u4F5C\u4E3A\u8FDD\u7EA6\u91D1\u800C\u5F52\u5927\u9053\u4E91\u5E73\u53F0\u6240\u6709\u3002</span></p><p>\xA0</p><p><span class="bold">\u516B\u3001\u514D\u8D23\u6761\u6B3E</span></p><p>\xA0</p><p><span class="bold">8.1 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u5728\u4F7F\u7528\u672C\u670D\u52A1\u7684\u8FC7\u7A0B\u4E2D\uFF0C\u53EF\u80FD\u4F1A\u56E0\u4E0D\u53EF\u6297\u529B\u800C\u4F7F\u672C\u670D\u52A1\u53D1\u751F\u4E2D\u65AD\uFF0C\u5E76\u56E0\u6B64\u800C\u5F15\u53D1\u635F\u5BB3\u3002\u4E0D\u53EF\u6297\u529B\u662F\u6307\u4E0D\u80FD\u9884\u89C1\u3001\u4E0D\u80FD\u514B\u670D\u5E76\u4E0D\u80FD\u907F\u514D\u4E14\u5BF9\u4E00\u65B9\u6216\u53CC\u65B9\u9020\u6210\u91CD\u5927\u5F71\u54CD\u7684\u5BA2\u89C2\u4E8B\u4EF6\uFF0C\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u81EA\u7136\u707E\u5BB3\u5982\u6D2A\u6C34\u3001\u5730\u9707\u3001\u98CE\u66B4\u3001\u75AB\u60C5\u7B49\u4EE5\u53CA\u793E\u4F1A\u4E8B\u4EF6\u5982\u6218\u4E89\u3001\u52A8\u4E71\u3001\u653F\u5E9C\u884C\u4E3A\u7B49\u3002\u51FA\u73B0\u4E0A\u8FF0\u60C5\u51B5\u65F6\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5C06\u52AA\u529B\u5728\u7B2C\u4E00\u65F6\u95F4\u4E0E\u76F8\u5173\u5355\u4F4D\u914D\u5408\uFF0C\u53CA\u65F6\u8FDB\u884C\u4FEE\u590D\uFF0C\u82E5\u7531\u6B64\u7ED9\u60A8\u9020\u6210\u635F\u5931\u7684\uFF0C\u60A8\u540C\u610F\u653E\u5F03\u8FFD\u7A76\u5927\u9053\u4E91\u5E73\u53F0\u7684\u8D23\u4EFB\u3002</span></p><p><span class="bold">8.2 \u60A8\u7406\u89E3\u5E76\u540C\u610F\uFF1A\u82E5\u7531\u4E8E\u4EE5\u4E0B\u60C5\u5F62\u5BFC\u81F4\u7684\u529F\u80FD\u4E2D\u65AD\u6216\u53D7\u963B\uFF0C\u5927\u9053\u4E91\u5E73\u53F0\u5E76\u4E0D\u627F\u62C5\u4EFB\u4F55\u6CD5\u5F8B\u8D23\u4EFB\uFF1A</span></p><p><span class="bold">8.2.1 \u53D7\u5230\u8BA1\u7B97\u673A\u75C5\u6BD2\u3001\u6728\u9A6C\u6216\u5176\u4ED6\u6076\u610F\u7A0B\u5E8F\u3001\u9ED1\u5BA2\u653B\u51FB\u7684\u7834\u574F\uFF1B</span></p><p><span class="bold">8.2.2 \u60A8\u64CD\u4F5C\u4E0D\u5F53\uFF1B</span></p><p><span class="bold">8.2.3 \u5176\u4ED6\u5927\u9053\u4E91\u5E73\u53F0\u65E0\u6CD5\u63A7\u5236\u6216\u5408\u7406\u9884\u89C1\u7684\u60C5\u5F62\u3002</span></p><p>\xA0</p><p>\u4E5D\u3001\u5176\u4ED6</p><p>\xA0</p><p>9.1\u3010\u534F\u8BAE\u7684\u751F\u6548\u4E0E\u53D8\u66F4\u3011</p><p> \u60A8\u4F7F\u7528\u672C\u670D\u52A1\u5373\u89C6\u4E3A\u60A8\u5DF2\u9605\u8BFB\u5E76\u540C\u610F\u53D7\u672C\u534F\u8BAE\u7684\u7EA6\u675F\u3002\u5927\u9053\u4E91\u5E73\u53F0\u6709\u6743\u5728\u5FC5\u8981\u65F6\u4FEE\u6539\u672C\u534F\u8BAE\u6761\u6B3E\u3002\u60A8\u53EF\u4EE5\u5728\u76F8\u5173\u9875\u9762\u4E2D\u67E5\u9605\u6700\u65B0\u7684\u534F\u8BAE\u6761\u6B3E\u3002\u672C\u534F\u8BAE\u6761\u6B3E\u53D8\u66F4\u540E\uFF0C\u5982\u679C\u60A8\u7EE7\u7EED\u4F7F\u7528\u672C\u670D\u52A1\uFF0C\u5373\u89C6\u4E3A\u60A8\u5DF2\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\u3002\u5982\u679C\u60A8\u4E0D\u63A5\u53D7\u4FEE\u6539\u540E\u7684\u534F\u8BAE\uFF0C\u5E94\u5F53\u505C\u6B62\u4F7F\u7528\u672C\u670D\u52A1\u3002 </p><p>9.2\u3010\u534F\u8BAE\u7B7E\u8BA2\u5730\u3011</p><p>\u672C\u534F\u8BAE\u7B7E\u8BA2\u5730\u4E3A\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u6DF1\u5733\u5E02\u5357\u5C71\u533A\u3002</p><p>9.3\u3010\u9002\u7528\u6CD5\u5F8B\u3011</p><p> \u672C\u534F\u8BAE\u7684\u6210\u7ACB\u3001\u751F\u6548\u3001\u5C65\u884C\u3001\u89E3\u91CA\u53CA\u7EA0\u7EB7\u89E3\u51B3\uFF0C\u9002\u7528\u4E2D\u534E\u4EBA\u6C11\u5171\u548C\u56FD\u5927\u9646\u5730\u533A\u6CD5\u5F8B\uFF08\u4E0D\u5305\u62EC\u51B2\u7A81\u6CD5\uFF09\u3002 </p><p><span class="bold">9.4\u3010\u4E89\u8BAE\u89E3\u51B3\u3011</span></p><p><span class="bold">\u82E5\u60A8\u548C\u5927\u9053\u4E91\u5E73\u53F0\u4E4B\u95F4\u53D1\u751F\u4EFB\u4F55\u7EA0\u7EB7\u6216\u4E89\u8BAE\uFF0C\u9996\u5148\u5E94\u53CB\u597D\u534F\u5546\u89E3\u51B3\uFF1B\u534F\u5546\u4E0D\u6210\u7684\uFF0C\u5404\u65B9\u5171\u540C\u7EA6\u5B9A\uFF0C\u51E1\u56E0\u672C\u534F\u8BAE\u5F15\u8D77\u7684\u6216\u4E0E\u672C\u534F\u8BAE\u6709\u5173\u7684\u4EFB\u4F55\u4E89\u8BAE\uFF0C\u5747\u63D0\u4EA4\u6E5B\u6C5F\u4EF2\u88C1\u59D4\u5458\u4F1A\u4F9D\u5176\u89C4\u5219\u548C\u56FD\u5BB6\u6CD5\u5F8B\u6CD5\u89C4\u4ECE\u901F\u4EF2\u88C1\u3002</span></p><p>9.5\u3010\u6761\u6B3E\u6807\u9898\u3011</p><p>\u672C\u534F\u8BAE\u6240\u6709\u6761\u6B3E\u7684\u6807\u9898\u4EC5\u4E3A\u9605\u8BFB\u65B9\u4FBF\uFF0C\u672C\u8EAB\u5E76\u65E0\u5B9E\u9645\u6DB5\u4E49\uFF0C\u4E0D\u80FD\u4F5C\u4E3A\u672C\u534F\u8BAE\u6DB5\u4E49\u89E3\u91CA\u7684\u4F9D\u636E\u3002</p><p>9.6\u3010\u6761\u6B3E\u6548\u529B\u3011</p><p>\u672C\u534F\u8BAE\u6761\u6B3E\u65E0\u8BBA\u56E0\u4F55\u79CD\u539F\u56E0\u90E8\u5206\u65E0\u6548\u6216\u4E0D\u53EF\u6267\u884C\uFF0C\u5176\u4F59\u6761\u6B3E\u4ECD\u6709\u6548\uFF0C\u5BF9\u53CC\u65B9\u4ECD\u5177\u6709\u7EA6\u675F\u529B\u3002</p><p>\xA0</p><p>\xA0</p>', 96)
1619
+ ]));
1496
1620
  }
1497
1621
 
1498
1622
  /* unplugin-vue-components disabled */const script$z = {};
@@ -1500,20 +1624,13 @@ function render$2(_ctx, _cache) {
1500
1624
  script$z.render = render$2;
1501
1625
  script$z.__file = "src/payment/components/UserAgreement.vue";
1502
1626
 
1503
- const _hoisted_1$x = { class: "recharge-result" };
1504
- const _hoisted_2$t = { class: "content" };
1505
- const _hoisted_3$p = /* @__PURE__ */ createElementVNode(
1506
- "div",
1507
- { class: "figure" },
1508
- null,
1509
- -1
1510
- /* HOISTED */
1511
- );
1512
- const _hoisted_4$j = {
1627
+ const _hoisted_1$u = { class: "recharge-result" };
1628
+ const _hoisted_2$l = { class: "content" };
1629
+ const _hoisted_3$g = {
1513
1630
  key: 0,
1514
1631
  class: "caption"
1515
1632
  };
1516
- const _hoisted_5$g = {
1633
+ const _hoisted_4$c = {
1517
1634
  key: 1,
1518
1635
  class: "caption"
1519
1636
  };
@@ -1535,9 +1652,15 @@ var script$y = /* @__PURE__ */ defineComponent({
1535
1652
  }
1536
1653
  return (_ctx, _cache) => {
1537
1654
  const _component_nut_button = Button;
1538
- return openBlock(), createElementBlock("div", _hoisted_1$x, [
1539
- createElementVNode("div", _hoisted_2$t, [
1540
- _hoisted_3$p,
1655
+ return openBlock(), createElementBlock("div", _hoisted_1$u, [
1656
+ createElementVNode("div", _hoisted_2$l, [
1657
+ _cache[1] || (_cache[1] = createElementVNode(
1658
+ "div",
1659
+ { class: "figure" },
1660
+ null,
1661
+ -1
1662
+ /* HOISTED */
1663
+ )),
1541
1664
  createElementVNode(
1542
1665
  "h2",
1543
1666
  null,
@@ -1545,9 +1668,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1545
1668
  1
1546
1669
  /* TEXT */
1547
1670
  ),
1548
- _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_4$j, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1671
+ _ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$g, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
1549
1672
  "div",
1550
- _hoisted_5$g,
1673
+ _hoisted_4$c,
1551
1674
  toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
1552
1675
  1
1553
1676
  /* TEXT */
@@ -1557,9 +1680,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1557
1680
  type: "default",
1558
1681
  onClick: onBackClick
1559
1682
  }, {
1560
- default: withCtx(() => [
1683
+ default: withCtx(() => _cache[0] || (_cache[0] = [
1561
1684
  createTextVNode("\u8FD4\u56DE")
1562
- ]),
1685
+ ])),
1563
1686
  _: 1
1564
1687
  /* STABLE */
1565
1688
  })
@@ -1571,9 +1694,9 @@ var script$y = /* @__PURE__ */ defineComponent({
1571
1694
 
1572
1695
  script$y.__file = "src/payment/components/RechargeResult.vue";
1573
1696
 
1574
- const _hoisted_1$w = { class: "tag" };
1575
- const _hoisted_2$s = { class: "token-line number" };
1576
- const _hoisted_3$o = { class: "number" };
1697
+ const _hoisted_1$t = { class: "tag" };
1698
+ const _hoisted_2$k = { class: "token-line number" };
1699
+ const _hoisted_3$f = { class: "number" };
1577
1700
  var script$x = /* @__PURE__ */ defineComponent({
1578
1701
  __name: "RightsPicker",
1579
1702
  props: {
@@ -1612,23 +1735,23 @@ var script$x = /* @__PURE__ */ defineComponent({
1612
1735
  default: withCtx(() => [
1613
1736
  createElementVNode(
1614
1737
  "div",
1615
- _hoisted_1$w,
1738
+ _hoisted_1$t,
1616
1739
  toDisplayString(amount.paymentDesc),
1617
1740
  1
1618
1741
  /* TEXT */
1619
1742
  ),
1620
1743
  createElementVNode(
1621
1744
  "h4",
1622
- _hoisted_2$s,
1745
+ _hoisted_2$k,
1623
1746
  toDisplayString(amount.priceRightNum) + "\u7B14",
1624
1747
  1
1625
1748
  /* TEXT */
1626
1749
  ),
1627
1750
  createElementVNode("h5", null, [
1628
- createTextVNode("\xA5"),
1751
+ _cache[0] || (_cache[0] = createTextVNode("\xA5")),
1629
1752
  createElementVNode(
1630
1753
  "span",
1631
- _hoisted_3$o,
1754
+ _hoisted_3$f,
1632
1755
  toDisplayString(amount.paymentAmount),
1633
1756
  1
1634
1757
  /* TEXT */
@@ -1652,48 +1775,34 @@ var script$x = /* @__PURE__ */ defineComponent({
1652
1775
 
1653
1776
  script$x.__file = "src/payment/components/RightsPicker.vue";
1654
1777
 
1655
- const _hoisted_1$v = { class: "view recharge-view2" };
1656
- const _hoisted_2$r = { class: "flex-grow" };
1657
- const _hoisted_3$n = {
1778
+ const _hoisted_1$s = { class: "view recharge-view2" };
1779
+ const _hoisted_2$j = { class: "flex-grow" };
1780
+ const _hoisted_3$e = {
1658
1781
  key: 0,
1659
1782
  class: "bean-buy"
1660
1783
  };
1661
- const _hoisted_4$i = { class: "left" };
1662
- const _hoisted_5$f = /* @__PURE__ */ createElementVNode(
1663
- "div",
1664
- { class: "title" },
1665
- "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1666
- -1
1667
- /* HOISTED */
1668
- );
1669
- const _hoisted_6$b = {
1784
+ const _hoisted_4$b = { class: "left" };
1785
+ const _hoisted_5$9 = {
1670
1786
  key: 0,
1671
1787
  class: "amount"
1672
1788
  };
1673
- const _hoisted_7$9 = {
1789
+ const _hoisted_6$4 = {
1674
1790
  key: 1,
1675
1791
  class: "amount"
1676
1792
  };
1677
- const _hoisted_8$5 = { class: "amount" };
1678
- const _hoisted_9$5 = ["src"];
1679
- const _hoisted_10$5 = { class: "amount-footer" };
1680
- const _hoisted_11$5 = {
1793
+ const _hoisted_7$4 = { class: "amount" };
1794
+ const _hoisted_8$4 = ["src"];
1795
+ const _hoisted_9$3 = { class: "amount-footer" };
1796
+ const _hoisted_10$2 = {
1681
1797
  key: 0,
1682
1798
  class: "agreement"
1683
1799
  };
1684
- const _hoisted_12$5 = { class: "buy-amount" };
1685
- const _hoisted_13$5 = { class: "left" };
1686
- const _hoisted_14$4 = { class: "amount" };
1687
- const _hoisted_15$3 = /* @__PURE__ */ createElementVNode(
1688
- "i",
1689
- null,
1690
- "\uFFE5",
1691
- -1
1692
- /* HOISTED */
1693
- );
1694
- const _hoisted_16$3 = { class: "item" };
1695
- const _hoisted_17$2 = { class: "item" };
1696
- const _hoisted_18$2 = { class: "item" };
1800
+ const _hoisted_11$2 = { class: "buy-amount" };
1801
+ const _hoisted_12$2 = { class: "left" };
1802
+ const _hoisted_13$2 = { class: "amount" };
1803
+ const _hoisted_14$2 = { class: "item" };
1804
+ const _hoisted_15$2 = { class: "item" };
1805
+ const _hoisted_16$2 = { class: "item" };
1697
1806
  var script$w = /* @__PURE__ */ defineComponent({
1698
1807
  __name: "TradeView",
1699
1808
  props: {
@@ -1783,25 +1892,31 @@ var script$w = /* @__PURE__ */ defineComponent({
1783
1892
  const _component_nut_checkbox = Checkbox;
1784
1893
  const _component_nut_button = Button;
1785
1894
  const _component_nut_dialog = Dialog;
1786
- return openBlock(), createElementBlock("view", _hoisted_1$v, [
1787
- createElementVNode("view", _hoisted_2$r, [
1895
+ return openBlock(), createElementBlock("view", _hoisted_1$s, [
1896
+ createElementVNode("view", _hoisted_2$j, [
1788
1897
  createVNode(script$x, {
1789
1898
  items: amounts.value,
1790
1899
  selected: state.selected,
1791
1900
  onChange: onAmountSelect
1792
1901
  }, null, 8, ["items", "selected"]),
1793
- amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$n, [
1794
- createElementVNode("div", _hoisted_4$i, [
1795
- _hoisted_5$f,
1902
+ amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$e, [
1903
+ createElementVNode("div", _hoisted_4$b, [
1904
+ _cache[4] || (_cache[4] = createElementVNode(
1905
+ "div",
1906
+ { class: "title" },
1907
+ "\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
1908
+ -1
1909
+ /* HOISTED */
1910
+ )),
1796
1911
  !selectBean.value ? (openBlock(), createElementBlock(
1797
1912
  "div",
1798
- _hoisted_6$b,
1913
+ _hoisted_5$9,
1799
1914
  "\u4F59\u989D " + toDisplayString(balance.value),
1800
1915
  1
1801
1916
  /* TEXT */
1802
1917
  )) : (openBlock(), createElementBlock(
1803
1918
  "div",
1804
- _hoisted_7$9,
1919
+ _hoisted_6$4,
1805
1920
  "\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1806
1921
  1
1807
1922
  /* TEXT */
@@ -1814,7 +1929,7 @@ var script$w = /* @__PURE__ */ defineComponent({
1814
1929
  }, [
1815
1930
  createElementVNode(
1816
1931
  "div",
1817
- _hoisted_8$5,
1932
+ _hoisted_7$4,
1818
1933
  "-" + toDisplayString(amounts.value[state.selected].paymentAmount),
1819
1934
  1
1820
1935
  /* TEXT */
@@ -1822,18 +1937,18 @@ var script$w = /* @__PURE__ */ defineComponent({
1822
1937
  createElementVNode("img", {
1823
1938
  class: "icon",
1824
1939
  src: selectBean.value ? "https://cdn.ddjf.com/static/images/appkit/select.svg" : "https://cdn.ddjf.com/static/images/appkit/not-select.svg"
1825
- }, null, 8, _hoisted_9$5)
1940
+ }, null, 8, _hoisted_8$4)
1826
1941
  ])) : createCommentVNode("v-if", true)
1827
1942
  ])) : createCommentVNode("v-if", true)
1828
1943
  ]),
1829
- createElementVNode("view", _hoisted_10$5, [
1830
- !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_11$5, [
1944
+ createElementVNode("view", _hoisted_9$3, [
1945
+ !selectBean.value ? (openBlock(), createElementBlock("view", _hoisted_10$2, [
1831
1946
  createVNode(_component_nut_checkbox, {
1832
1947
  modelValue: state.agreed,
1833
1948
  "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => state.agreed = $event)
1834
1949
  }, {
1835
1950
  default: withCtx(() => [
1836
- createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F"),
1951
+ _cache[5] || (_cache[5] = createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")),
1837
1952
  createElementVNode("a", {
1838
1953
  class: "link inline",
1839
1954
  onClick: onAgreementLinkClick
@@ -1843,11 +1958,17 @@ var script$w = /* @__PURE__ */ defineComponent({
1843
1958
  /* STABLE */
1844
1959
  }, 8, ["modelValue"])
1845
1960
  ])) : createCommentVNode("v-if", true),
1846
- createElementVNode("div", _hoisted_12$5, [
1847
- createElementVNode("div", _hoisted_13$5, [
1848
- createTextVNode(" \u5F85\u652F\u4ED8\uFF1A "),
1849
- createElementVNode("span", _hoisted_14$4, [
1850
- _hoisted_15$3,
1961
+ createElementVNode("div", _hoisted_11$2, [
1962
+ createElementVNode("div", _hoisted_12$2, [
1963
+ _cache[7] || (_cache[7] = createTextVNode(" \u5F85\u652F\u4ED8\uFF1A ")),
1964
+ createElementVNode("span", _hoisted_13$2, [
1965
+ _cache[6] || (_cache[6] = createElementVNode(
1966
+ "i",
1967
+ null,
1968
+ "\uFFE5",
1969
+ -1
1970
+ /* HOISTED */
1971
+ )),
1851
1972
  createTextVNode(
1852
1973
  toDisplayString(currentAmount.value),
1853
1974
  1
@@ -1862,9 +1983,9 @@ var script$w = /* @__PURE__ */ defineComponent({
1862
1983
  onClick: onPayClick,
1863
1984
  class: "recharge-button"
1864
1985
  }, {
1865
- default: withCtx(() => [
1986
+ default: withCtx(() => _cache[8] || (_cache[8] = [
1866
1987
  createTextVNode("\u8D2D\u4E70")
1867
- ]),
1988
+ ])),
1868
1989
  _: 1
1869
1990
  /* STABLE */
1870
1991
  }, 8, ["loading"])
@@ -1885,21 +2006,21 @@ var script$w = /* @__PURE__ */ defineComponent({
1885
2006
  [
1886
2007
  createElementVNode(
1887
2008
  "div",
1888
- _hoisted_16$3,
2009
+ _hoisted_14$2,
1889
2010
  "\u4E91\u8C46\u6263\u51CF\uFF1A" + toDisplayString(amounts.value[state.selected].paymentAmount),
1890
2011
  1
1891
2012
  /* TEXT */
1892
2013
  ),
1893
2014
  createElementVNode(
1894
2015
  "div",
1895
- _hoisted_17$2,
2016
+ _hoisted_15$2,
1896
2017
  "\u6743\u76CA\u589E\u52A0\uFF1A" + toDisplayString(amounts.value[state.selected].priceRightNum) + "\u7B14",
1897
2018
  1
1898
2019
  /* TEXT */
1899
2020
  ),
1900
2021
  createElementVNode(
1901
2022
  "div",
1902
- _hoisted_18$2,
2023
+ _hoisted_16$2,
1903
2024
  "\u6263\u51CF\u540E\u4E91\u8C46\u4F59\u989D\uFF1A" + toDisplayString((balance.value - amounts.value[state.selected].paymentAmount).toFixed(1)),
1904
2025
  1
1905
2026
  /* TEXT */
@@ -1927,84 +2048,11 @@ const components = {
1927
2048
  TradeView: script$w
1928
2049
  };
1929
2050
 
1930
- const _hoisted_1$u = { class: "account-card" };
1931
- const _hoisted_2$q = { class: "card" };
1932
- const _hoisted_3$m = { class: "card-row" };
1933
- const _hoisted_4$h = { class: "card-row-left" };
1934
- const _hoisted_5$e = /* @__PURE__ */ createElementVNode(
1935
- "div",
1936
- { class: "bean-box" },
1937
- [
1938
- /* @__PURE__ */ createElementVNode("div", { class: "bean-icon-box" }, [
1939
- /* @__PURE__ */ createElementVNode("img", {
1940
- class: "bean-icon",
1941
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
1942
- })
1943
- ]),
1944
- /* @__PURE__ */ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
1945
- ],
1946
- -1
1947
- /* HOISTED */
1948
- );
1949
- const _hoisted_6$a = { class: "bean-nums number" };
1950
- const _hoisted_7$8 = /* @__PURE__ */ createElementVNode(
1951
- "div",
1952
- { class: "account-info-name" },
1953
- "\u8D26\u6237\u660E\u7EC6",
1954
- -1
1955
- /* HOISTED */
1956
- );
1957
- const _hoisted_8$4 = /* @__PURE__ */ createElementVNode(
1958
- "div",
1959
- { class: "account-info-icon" },
1960
- [
1961
- /* @__PURE__ */ createElementVNode("img", {
1962
- class: "icon",
1963
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
1964
- })
1965
- ],
1966
- -1
1967
- /* HOISTED */
1968
- );
1969
- const _hoisted_9$4 = [
1970
- _hoisted_7$8,
1971
- _hoisted_8$4
1972
- ];
1973
- const _hoisted_10$4 = /* @__PURE__ */ createElementVNode(
1974
- "div",
1975
- { class: "line" },
1976
- null,
1977
- -1
1978
- /* HOISTED */
1979
- );
1980
- const _hoisted_11$4 = /* @__PURE__ */ createElementVNode(
1981
- "div",
1982
- { class: "card-row-left desc" },
1983
- "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
1984
- -1
1985
- /* HOISTED */
1986
- );
1987
- const _hoisted_12$4 = /* @__PURE__ */ createElementVNode(
1988
- "div",
1989
- null,
1990
- "\u5145\u503C",
1991
- -1
1992
- /* HOISTED */
1993
- );
1994
- const _hoisted_13$4 = /* @__PURE__ */ createElementVNode(
1995
- "img",
1996
- {
1997
- class: "pay-icon",
1998
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
1999
- },
2000
- null,
2001
- -1
2002
- /* HOISTED */
2003
- );
2004
- const _hoisted_14$3 = [
2005
- _hoisted_12$4,
2006
- _hoisted_13$4
2007
- ];
2051
+ const _hoisted_1$r = { class: "account-card" };
2052
+ const _hoisted_2$i = { class: "card" };
2053
+ const _hoisted_3$d = { class: "card-row" };
2054
+ const _hoisted_4$a = { class: "card-row-left" };
2055
+ const _hoisted_5$8 = { class: "bean-nums number" };
2008
2056
  var script$v = /* @__PURE__ */ defineComponent({
2009
2057
  __name: "BalanceCard",
2010
2058
  props: {
@@ -2048,14 +2096,28 @@ var script$v = /* @__PURE__ */ defineComponent({
2048
2096
  reload: loadBalance
2049
2097
  });
2050
2098
  return (_ctx, _cache) => {
2051
- return openBlock(), createElementBlock("div", _hoisted_1$u, [
2052
- createElementVNode("div", _hoisted_2$q, [
2053
- createElementVNode("div", _hoisted_3$m, [
2054
- createElementVNode("div", _hoisted_4$h, [
2055
- _hoisted_5$e,
2099
+ return openBlock(), createElementBlock("div", _hoisted_1$r, [
2100
+ createElementVNode("div", _hoisted_2$i, [
2101
+ createElementVNode("div", _hoisted_3$d, [
2102
+ createElementVNode("div", _hoisted_4$a, [
2103
+ _cache[0] || (_cache[0] = createElementVNode(
2104
+ "div",
2105
+ { class: "bean-box" },
2106
+ [
2107
+ createElementVNode("div", { class: "bean-icon-box" }, [
2108
+ createElementVNode("img", {
2109
+ class: "bean-icon",
2110
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2111
+ })
2112
+ ]),
2113
+ createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
2114
+ ],
2115
+ -1
2116
+ /* HOISTED */
2117
+ )),
2056
2118
  createElementVNode(
2057
2119
  "div",
2058
- _hoisted_6$a,
2120
+ _hoisted_5$8,
2059
2121
  toDisplayString(balance.value.total || 0),
2060
2122
  1
2061
2123
  /* TEXT */
@@ -2065,17 +2127,67 @@ var script$v = /* @__PURE__ */ defineComponent({
2065
2127
  createElementVNode("div", {
2066
2128
  class: "account-info-entry",
2067
2129
  onClick: gotoDetail
2068
- }, [..._hoisted_9$4])
2130
+ }, _cache[1] || (_cache[1] = [
2131
+ createElementVNode(
2132
+ "div",
2133
+ { class: "account-info-name" },
2134
+ "\u8D26\u6237\u660E\u7EC6",
2135
+ -1
2136
+ /* HOISTED */
2137
+ ),
2138
+ createElementVNode(
2139
+ "div",
2140
+ { class: "account-info-icon" },
2141
+ [
2142
+ createElementVNode("img", {
2143
+ class: "icon",
2144
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-to.png"
2145
+ })
2146
+ ],
2147
+ -1
2148
+ /* HOISTED */
2149
+ )
2150
+ ]))
2069
2151
  ])
2070
2152
  ]),
2071
- _hoisted_10$4,
2153
+ _cache[4] || (_cache[4] = createElementVNode(
2154
+ "div",
2155
+ { class: "line" },
2156
+ null,
2157
+ -1
2158
+ /* HOISTED */
2159
+ )),
2072
2160
  createElementVNode("div", { class: "card-row" }, [
2073
- _hoisted_11$4,
2161
+ _cache[3] || (_cache[3] = createElementVNode(
2162
+ "div",
2163
+ { class: "card-row-left desc" },
2164
+ "\u6743\u76CA\u4F7F\u7528\u65F6\u81EA\u52A8\u6263\u51CF\u4E91\u8C46",
2165
+ -1
2166
+ /* HOISTED */
2167
+ )),
2074
2168
  createElementVNode("div", { class: "card-row-right" }, [
2075
2169
  createElementVNode("div", {
2076
2170
  class: "pay",
2077
2171
  onClick: gotoRecharge
2078
- }, [..._hoisted_14$3])
2172
+ }, _cache[2] || (_cache[2] = [
2173
+ createElementVNode(
2174
+ "div",
2175
+ null,
2176
+ "\u5145\u503C",
2177
+ -1
2178
+ /* HOISTED */
2179
+ ),
2180
+ createElementVNode(
2181
+ "img",
2182
+ {
2183
+ class: "pay-icon",
2184
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/bean-right.png"
2185
+ },
2186
+ null,
2187
+ -1
2188
+ /* HOISTED */
2189
+ )
2190
+ ]))
2079
2191
  ])
2080
2192
  ])
2081
2193
  ])
@@ -2101,27 +2213,11 @@ const consumptionTypes = [
2101
2213
  const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
2102
2214
  const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
2103
2215
 
2104
- const _hoisted_1$t = { class: "consumption-filter" };
2105
- const _hoisted_2$p = /* @__PURE__ */ createElementVNode(
2106
- "div",
2107
- { class: "consumption-filter-title" },
2108
- [
2109
- /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2110
- ],
2111
- -1
2112
- /* HOISTED */
2113
- );
2114
- const _hoisted_3$l = { class: "consumption-filter-content" };
2115
- const _hoisted_4$g = { class: "title" };
2116
- const _hoisted_5$d = { class: "info" };
2117
- const _hoisted_6$9 = ["onClick"];
2118
- const _hoisted_7$7 = /* @__PURE__ */ createElementVNode(
2119
- "div",
2120
- { class: "consumption-filter-bottom" },
2121
- null,
2122
- -1
2123
- /* HOISTED */
2124
- );
2216
+ const _hoisted_1$q = { class: "consumption-filter" };
2217
+ const _hoisted_2$h = { class: "consumption-filter-content" };
2218
+ const _hoisted_3$c = { class: "title" };
2219
+ const _hoisted_4$9 = { class: "info" };
2220
+ const _hoisted_5$7 = ["onClick"];
2125
2221
  var script$u = /* @__PURE__ */ defineComponent({
2126
2222
  __name: "ConsumptionFilter",
2127
2223
  props: {
@@ -2174,9 +2270,17 @@ var script$u = /* @__PURE__ */ defineComponent({
2174
2270
  emit("complete", result);
2175
2271
  };
2176
2272
  return (_ctx, _cache) => {
2177
- return openBlock(), createElementBlock("div", _hoisted_1$t, [
2178
- _hoisted_2$p,
2179
- createElementVNode("div", _hoisted_3$l, [
2273
+ return openBlock(), createElementBlock("div", _hoisted_1$q, [
2274
+ _cache[0] || (_cache[0] = createElementVNode(
2275
+ "div",
2276
+ { class: "consumption-filter-title" },
2277
+ [
2278
+ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
2279
+ ],
2280
+ -1
2281
+ /* HOISTED */
2282
+ )),
2283
+ createElementVNode("div", _hoisted_2$h, [
2180
2284
  (openBlock(true), createElementBlock(
2181
2285
  Fragment,
2182
2286
  null,
@@ -2187,12 +2291,12 @@ var script$u = /* @__PURE__ */ defineComponent({
2187
2291
  [
2188
2292
  createElementVNode(
2189
2293
  "div",
2190
- _hoisted_4$g,
2294
+ _hoisted_3$c,
2191
2295
  toDisplayString(item.title),
2192
2296
  1
2193
2297
  /* TEXT */
2194
2298
  ),
2195
- createElementVNode("div", _hoisted_5$d, [
2299
+ createElementVNode("div", _hoisted_4$9, [
2196
2300
  (openBlock(true), createElementBlock(
2197
2301
  Fragment,
2198
2302
  null,
@@ -2201,7 +2305,7 @@ var script$u = /* @__PURE__ */ defineComponent({
2201
2305
  onClick: () => onFilterSectionClick(index, it.code),
2202
2306
  class: normalizeClass([getItemClass(index, it.code), "info-item"]),
2203
2307
  key: i
2204
- }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_6$9);
2308
+ }, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$7);
2205
2309
  }),
2206
2310
  128
2207
2311
  /* KEYED_FRAGMENT */
@@ -2226,7 +2330,13 @@ var script$u = /* @__PURE__ */ defineComponent({
2226
2330
  onClick: onOkClick
2227
2331
  }, "\u786E\u5B9A")
2228
2332
  ]),
2229
- _hoisted_7$7
2333
+ _cache[1] || (_cache[1] = createElementVNode(
2334
+ "div",
2335
+ { class: "consumption-filter-bottom" },
2336
+ null,
2337
+ -1
2338
+ /* HOISTED */
2339
+ ))
2230
2340
  ]);
2231
2341
  };
2232
2342
  }
@@ -2234,37 +2344,9 @@ var script$u = /* @__PURE__ */ defineComponent({
2234
2344
 
2235
2345
  script$u.__file = "src/balance/components/ConsumptionFilter.vue";
2236
2346
 
2237
- const _hoisted_1$s = { class: "consumption-date-filter" };
2238
- const _hoisted_2$o = /* @__PURE__ */ createElementVNode(
2239
- "div",
2240
- { class: "date-filter-header" },
2241
- "\u65E5\u671F\u9009\u62E9",
2242
- -1
2243
- /* HOISTED */
2244
- );
2245
- const _hoisted_3$k = { class: "content" };
2246
- const _hoisted_4$f = /* @__PURE__ */ createElementVNode(
2247
- "div",
2248
- { class: "title" },
2249
- "\u81EA\u5B9A\u4E49",
2250
- -1
2251
- /* HOISTED */
2252
- );
2253
- const _hoisted_5$c = { class: "time" };
2254
- const _hoisted_6$8 = /* @__PURE__ */ createElementVNode(
2255
- "div",
2256
- { class: "line" },
2257
- "-",
2258
- -1
2259
- /* HOISTED */
2260
- );
2261
- const _hoisted_7$6 = /* @__PURE__ */ createElementVNode(
2262
- "div",
2263
- { class: "bottom" },
2264
- null,
2265
- -1
2266
- /* HOISTED */
2267
- );
2347
+ const _hoisted_1$p = { class: "appkit-date-filter" };
2348
+ const _hoisted_2$g = { class: "content" };
2349
+ const _hoisted_3$b = { class: "time" };
2268
2350
  var script$t = /* @__PURE__ */ defineComponent({
2269
2351
  __name: "DateFilter",
2270
2352
  props: {
@@ -2274,7 +2356,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2274
2356
  emits: ["complete", "reset"],
2275
2357
  setup(__props, { emit: __emit }) {
2276
2358
  const props = __props;
2277
- const emit = __emit;
2359
+ const emit = __emit, state = usePopup();
2278
2360
  watch(
2279
2361
  () => `${props.from}${props.to}`,
2280
2362
  () => {
@@ -2288,6 +2370,12 @@ var script$t = /* @__PURE__ */ defineComponent({
2288
2370
  const minDate = ref();
2289
2371
  const maxDate = ref(/* @__PURE__ */ new Date());
2290
2372
  const datePickerOpen = ref(false);
2373
+ if (state) {
2374
+ state.beforeClose = () => {
2375
+ datePickerOpen.value = false;
2376
+ return true;
2377
+ };
2378
+ }
2291
2379
  function reset() {
2292
2380
  emit("reset");
2293
2381
  }
@@ -2306,6 +2394,11 @@ var script$t = /* @__PURE__ */ defineComponent({
2306
2394
  result.to = time;
2307
2395
  }
2308
2396
  datePickerOpen.value = false;
2397
+ state.couldClose = true;
2398
+ }
2399
+ function onDatePickerCancel() {
2400
+ datePickerOpen.value = false;
2401
+ state.couldClose = true;
2309
2402
  }
2310
2403
  function switchDateInput(shift) {
2311
2404
  if (shift === "from") {
@@ -2318,15 +2411,28 @@ var script$t = /* @__PURE__ */ defineComponent({
2318
2411
  focusedDate.value = new Date(result[shift]);
2319
2412
  focused.value = shift;
2320
2413
  datePickerOpen.value = true;
2414
+ state.couldClose = false;
2321
2415
  }
2322
2416
  return (_ctx, _cache) => {
2323
2417
  const _component_nut_date_picker = DatePicker;
2324
2418
  const _component_nut_popup = Popup;
2325
- return openBlock(), createElementBlock("div", _hoisted_1$s, [
2326
- _hoisted_2$o,
2327
- createElementVNode("div", _hoisted_3$k, [
2328
- _hoisted_4$f,
2329
- createElementVNode("div", _hoisted_5$c, [
2419
+ return openBlock(), createElementBlock("div", _hoisted_1$p, [
2420
+ _cache[6] || (_cache[6] = createElementVNode(
2421
+ "div",
2422
+ { class: "date-filter-header" },
2423
+ "\u65E5\u671F\u9009\u62E9",
2424
+ -1
2425
+ /* HOISTED */
2426
+ )),
2427
+ createElementVNode("div", _hoisted_2$g, [
2428
+ _cache[5] || (_cache[5] = createElementVNode(
2429
+ "div",
2430
+ { class: "title" },
2431
+ "\u81EA\u5B9A\u4E49",
2432
+ -1
2433
+ /* HOISTED */
2434
+ )),
2435
+ createElementVNode("div", _hoisted_3$b, [
2330
2436
  createElementVNode(
2331
2437
  "div",
2332
2438
  {
@@ -2337,7 +2443,13 @@ var script$t = /* @__PURE__ */ defineComponent({
2337
2443
  3
2338
2444
  /* TEXT, CLASS */
2339
2445
  ),
2340
- _hoisted_6$8,
2446
+ _cache[4] || (_cache[4] = createElementVNode(
2447
+ "div",
2448
+ { class: "line" },
2449
+ "-",
2450
+ -1
2451
+ /* HOISTED */
2452
+ )),
2341
2453
  createElementVNode(
2342
2454
  "div",
2343
2455
  {
@@ -2360,11 +2472,19 @@ var script$t = /* @__PURE__ */ defineComponent({
2360
2472
  onClick: onOkClick
2361
2473
  }, "\u786E\u5B9A")
2362
2474
  ]),
2363
- _hoisted_7$6,
2475
+ _cache[7] || (_cache[7] = createElementVNode(
2476
+ "div",
2477
+ { class: "bottom" },
2478
+ null,
2479
+ -1
2480
+ /* HOISTED */
2481
+ )),
2364
2482
  createVNode(_component_nut_popup, {
2365
2483
  visible: datePickerOpen.value,
2366
- "onUpdate:visible": _cache[4] || (_cache[4] = ($event) => datePickerOpen.value = $event),
2367
- position: "bottom"
2484
+ "onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event),
2485
+ class: "appkit-date-filter-picker-popup",
2486
+ position: "bottom",
2487
+ "overlay-class": "appkit-date-filter-picker-overlay"
2368
2488
  }, {
2369
2489
  default: withCtx(() => [
2370
2490
  createVNode(_component_nut_date_picker, {
@@ -2374,7 +2494,7 @@ var script$t = /* @__PURE__ */ defineComponent({
2374
2494
  "max-date": maxDate.value,
2375
2495
  "is-show-chinese": false,
2376
2496
  "three-dimensional": false,
2377
- onCancel: _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = false),
2497
+ onCancel: onDatePickerCancel,
2378
2498
  onConfirm: onDatePickerComplete
2379
2499
  }, null, 8, ["modelValue", "min-date", "max-date"])
2380
2500
  ]),
@@ -2388,38 +2508,36 @@ var script$t = /* @__PURE__ */ defineComponent({
2388
2508
 
2389
2509
  script$t.__file = "src/balance/components/DateFilter.vue";
2390
2510
 
2391
- const _hoisted_1$r = { class: "consumption-rules" };
2392
- const _hoisted_2$n = /* @__PURE__ */ createElementVNode(
2393
- "div",
2394
- { class: "title" },
2395
- "\u89C4\u5219\u8BF4\u660E",
2396
- -1
2397
- /* HOISTED */
2398
- );
2399
- const _hoisted_3$j = /* @__PURE__ */ createElementVNode(
2400
- "div",
2401
- { class: "desc" },
2402
- [
2403
- /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2404
- /* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
2405
- /* @__PURE__ */ createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
2406
- /* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
2407
- /* @__PURE__ */ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2408
- /* @__PURE__ */ createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
2409
- /* @__PURE__ */ createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
2410
- ],
2411
- -1
2412
- /* HOISTED */
2413
- );
2511
+ const _hoisted_1$o = { class: "consumption-rules" };
2414
2512
  var script$s = /* @__PURE__ */ defineComponent({
2415
2513
  __name: "ConsumptionRules",
2416
2514
  emits: ["complete"],
2417
2515
  setup(__props, { emit: __emit }) {
2418
2516
  const emit = __emit;
2419
2517
  return (_ctx, _cache) => {
2420
- return openBlock(), createElementBlock("div", _hoisted_1$r, [
2421
- _hoisted_2$n,
2422
- _hoisted_3$j,
2518
+ return openBlock(), createElementBlock("div", _hoisted_1$o, [
2519
+ _cache[1] || (_cache[1] = createElementVNode(
2520
+ "div",
2521
+ { class: "title" },
2522
+ "\u89C4\u5219\u8BF4\u660E",
2523
+ -1
2524
+ /* HOISTED */
2525
+ )),
2526
+ _cache[2] || (_cache[2] = createElementVNode(
2527
+ "div",
2528
+ { class: "desc" },
2529
+ [
2530
+ createElementVNode("div", { class: "desc-title" }, "\u3010\u4E91\u8C46\u3011"),
2531
+ createElementVNode("div", null, " 1\u3001\u4E91\u8C46\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u4E3A\u7528\u6237\u63D0\u4F9B\u7684\u6570\u5B57\u5316\u5546\u54C1\uFF0C\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u4E0A\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u8005\u4EA7\u54C1\u6743\u76CA\u7684\u5151\u6362\u3002 "),
2532
+ createElementVNode("div", null, " \u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u7684\u5151\u6362\u6BD4\u4F8B\uFF1A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\u3002\u4E91\u8C46\u8D2D\u4E70\u6210\u529F\u8FC7\u540E\u4E0D\u53EF\u8F6C\u8BA9\u6216\u8005\u9006\u5411\u5151\u6362\u3002 "),
2533
+ createElementVNode("div", null, " 2\u3001\u4E91\u8C46\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4E91\u8C46\u53EF\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u62B5\u6263\u4F7F\u7528\u6216\u5151\u6362\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\u3002 "),
2534
+ createElementVNode("div", { class: "desc-title" }, "\u3010\u4EA7\u54C1\u6743\u76CA\u3011"),
2535
+ createElementVNode("div", null, " 1\u3001\u4EA7\u54C1\u6743\u76CA\u7CFB\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u6807\u51C6\uFF0C\u53EF\u76F4\u63A5\u7528\u4E8E\u5355\u9879\u4EA7\u54C1\u7684\u4F7F\u7528\u6D88\u8017\u3002\u4EA7\u54C1\u6743\u76CA\u53EF\u901A\u8FC7\u4EBA\u6C11\u5E01\u5145\u503C\u8D2D\u4E70\u3001\u4E91\u8C46\u5151\u6362\u6216\u5927\u9053\u4E91\u5E73\u53F0\u8D60\u9001\u83B7\u5F97\u3002\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u6307\u5B9A\u7684\u4EA7\u54C1\u4F7F\u7528\u6D88\u8017\uFF0C\u4E5F\u65E0\u6CD5\u9006\u5411\u5151\u6362\u6210\u4E91\u8C46\u6216\u4EBA\u6C11\u5E01\u3002 "),
2536
+ createElementVNode("div", null, " 2\u3001\u4EA7\u54C1\u6743\u76CA\u7684\u4F7F\u7528\u8303\u56F4\uFF1A\u4EA7\u54C1\u6743\u76CA\u7528\u4E8E\u5927\u9053\u4E91\u5E73\u53F0\u5404\u4E2A\u7CFB\u7EDF\u4EA7\u54C1\u7684\u6D88\u8017\u4F7F\u7528\uFF0C\u7CFB\u7EDF\u5305\u62EC\u4F46\u4E0D\u9650\u4E8E\u4F01\u660E\u661F\u3001AI\u5BA1\u6279\u3001\u7535\u5B50\u7B7E\u7EA6\u3001\u8702\u9E1F\u5468\u8F6C\u7CFB\u7EDF\u3001\u8702\u9E1F\u5C45\u95F4\u7CFB\u7EDF\uFF0C\u5404\u4E2A\u7CFB\u7EDF\u7684\u4EA7\u54C1\u6743\u76CA\u4EC5\u7528\u4E8E\u5404\u4EA7\u54C1\u4E13\u9879\u4F7F\u7528\uFF0C\u65E0\u6CD5\u8DE8\u4EA7\u54C1\u4F7F\u7528\u3002 ")
2537
+ ],
2538
+ -1
2539
+ /* HOISTED */
2540
+ )),
2423
2541
  createElementVNode("div", {
2424
2542
  class: "know",
2425
2543
  onClick: _cache[0] || (_cache[0] = ($event) => emit("complete"))
@@ -2431,30 +2549,27 @@ var script$s = /* @__PURE__ */ defineComponent({
2431
2549
 
2432
2550
  script$s.__file = "src/balance/components/ConsumptionRules.vue";
2433
2551
 
2434
- const _hoisted_1$q = { class: "empty-view" };
2435
- const _hoisted_2$m = /* @__PURE__ */ createElementVNode(
2436
- "img",
2437
- {
2438
- class: "empty-view-image",
2439
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2440
- },
2441
- null,
2442
- -1
2443
- /* HOISTED */
2444
- );
2445
- const _hoisted_3$i = /* @__PURE__ */ createElementVNode(
2446
- "div",
2447
- { class: "empty-view-text" },
2448
- "\u6682\u65E0\u6570\u636E",
2449
- -1
2450
- /* HOISTED */
2451
- );
2452
- const _hoisted_4$e = [
2453
- _hoisted_2$m,
2454
- _hoisted_3$i
2455
- ];
2552
+ const _hoisted_1$n = { class: "empty-view" };
2456
2553
  function render$1(_ctx, _cache) {
2457
- return openBlock(), createElementBlock("div", _hoisted_1$q, [..._hoisted_4$e]);
2554
+ return openBlock(), createElementBlock("div", _hoisted_1$n, _cache[0] || (_cache[0] = [
2555
+ createElementVNode(
2556
+ "img",
2557
+ {
2558
+ class: "empty-view-image",
2559
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-data.png"
2560
+ },
2561
+ null,
2562
+ -1
2563
+ /* HOISTED */
2564
+ ),
2565
+ createElementVNode(
2566
+ "div",
2567
+ { class: "empty-view-text" },
2568
+ "\u6682\u65E0\u6570\u636E",
2569
+ -1
2570
+ /* HOISTED */
2571
+ )
2572
+ ]));
2458
2573
  }
2459
2574
 
2460
2575
  /* unplugin-vue-components disabled */const script$r = {};
@@ -2462,31 +2577,10 @@ function render$1(_ctx, _cache) {
2462
2577
  script$r.render = render$1;
2463
2578
  script$r.__file = "src/shared/components/EmptyView.vue";
2464
2579
 
2465
- const _hoisted_1$p = {
2580
+ const _hoisted_1$m = {
2466
2581
  key: 0,
2467
2582
  class: "tip"
2468
2583
  };
2469
- const _hoisted_2$l = /* @__PURE__ */ createElementVNode(
2470
- "img",
2471
- {
2472
- class: "tip-icon",
2473
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2474
- },
2475
- null,
2476
- -1
2477
- /* HOISTED */
2478
- );
2479
- const _hoisted_3$h = /* @__PURE__ */ createElementVNode(
2480
- "div",
2481
- { class: "tip-content" },
2482
- "2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
2483
- -1
2484
- /* HOISTED */
2485
- );
2486
- const _hoisted_4$d = [
2487
- _hoisted_2$l,
2488
- _hoisted_3$h
2489
- ];
2490
2584
  var script$q = /* @__PURE__ */ defineComponent({
2491
2585
  __name: "Tip",
2492
2586
  setup(__props) {
@@ -2499,141 +2593,73 @@ var script$q = /* @__PURE__ */ defineComponent({
2499
2593
  }
2500
2594
  });
2501
2595
  return (_ctx, _cache) => {
2502
- return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$p, [..._hoisted_4$d])) : createCommentVNode("v-if", true);
2596
+ return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$m, _cache[0] || (_cache[0] = [
2597
+ createElementVNode(
2598
+ "img",
2599
+ {
2600
+ class: "tip-icon",
2601
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-tip.png"
2602
+ },
2603
+ null,
2604
+ -1
2605
+ /* HOISTED */
2606
+ ),
2607
+ createElementVNode(
2608
+ "div",
2609
+ { class: "tip-content" },
2610
+ "2024\u5E745\u670831\u65E5\u8D77\uFF0C\u4EBA\u6C11\u5E01\u4E0E\u4E91\u8C46\u5151\u6362\u6BD4\u4F8B\u8C03\u6574\u4E3A1\u4EBA\u6C11\u5E01=1\u4E91\u8C46\uFF0C\u4E91\u8C46\u4F59\u989D\u6839\u636E\u5151\u6362\u6BD4\u4F8B\u8C03\u6574",
2611
+ -1
2612
+ /* HOISTED */
2613
+ )
2614
+ ]))) : createCommentVNode("v-if", true);
2503
2615
  };
2504
2616
  }
2505
2617
  });
2506
2618
 
2507
2619
  script$q.__file = "src/balance/components/Tip.vue";
2508
2620
 
2509
- const _hoisted_1$o = { class: "account-view" };
2510
- const _hoisted_2$k = { class: "scroll-content" };
2511
- const _hoisted_3$g = /* @__PURE__ */ createElementVNode(
2512
- "label",
2513
- null,
2514
- "\u6536\u652F\u660E\u7EC6",
2515
- -1
2516
- /* HOISTED */
2517
- );
2518
- const _hoisted_4$c = [
2519
- _hoisted_3$g
2520
- ];
2521
- const _hoisted_5$b = { class: "balance" };
2522
- const _hoisted_6$7 = { class: "bean-box spa-between" };
2523
- const _hoisted_7$5 = /* @__PURE__ */ createElementVNode(
2524
- "div",
2525
- { class: "bean-img" },
2526
- [
2527
- /* @__PURE__ */ createElementVNode("img", {
2528
- class: "bean-icon",
2529
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2530
- }),
2531
- /* @__PURE__ */ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2532
- ],
2533
- -1
2534
- /* HOISTED */
2535
- );
2536
- const _hoisted_8$3 = { class: "bean-counts spa-between" };
2537
- const _hoisted_9$3 = { class: "counts number" };
2538
- const _hoisted_10$3 = {
2621
+ const _hoisted_1$l = { class: "account-view" };
2622
+ const _hoisted_2$f = { class: "scroll-content" };
2623
+ const _hoisted_3$a = { class: "balance" };
2624
+ const _hoisted_4$8 = { class: "bean-box spa-between" };
2625
+ const _hoisted_5$6 = { class: "bean-counts spa-between" };
2626
+ const _hoisted_6$3 = { class: "counts number" };
2627
+ const _hoisted_7$3 = {
2539
2628
  key: 0,
2540
2629
  class: "rights-card"
2541
2630
  };
2542
- const _hoisted_11$3 = /* @__PURE__ */ createElementVNode(
2543
- "div",
2544
- { class: "title" },
2545
- "\u4F01\u660E\u661F\u6743\u76CA",
2546
- -1
2547
- /* HOISTED */
2548
- );
2549
- const _hoisted_12$3 = { class: "list" };
2550
- const _hoisted_13$3 = { class: "item-count" };
2551
- const _hoisted_14$2 = { class: "item-title" };
2552
- const _hoisted_15$2 = {
2631
+ const _hoisted_8$3 = { class: "list" };
2632
+ const _hoisted_9$2 = { class: "item-count" };
2633
+ const _hoisted_10$1 = { class: "item-title" };
2634
+ const _hoisted_11$1 = {
2553
2635
  key: 0,
2554
2636
  class: "item-title-button"
2555
2637
  };
2556
- const _hoisted_16$2 = ["onClick"];
2557
- const _hoisted_17$1 = /* @__PURE__ */ createElementVNode(
2558
- "img",
2559
- {
2560
- class: "button-icon",
2561
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2562
- },
2563
- null,
2564
- -1
2565
- /* HOISTED */
2566
- );
2567
- const _hoisted_18$1 = {
2638
+ const _hoisted_12$1 = ["onClick"];
2639
+ const _hoisted_13$1 = {
2568
2640
  key: 1,
2569
2641
  class: "rights-card"
2570
2642
  };
2571
- const _hoisted_19$1 = /* @__PURE__ */ createElementVNode(
2572
- "div",
2573
- { class: "title" },
2574
- "AI\u5BA1\u6279\u6743\u76CA",
2575
- -1
2576
- /* HOISTED */
2577
- );
2578
- const _hoisted_20$1 = { class: "list" };
2579
- const _hoisted_21$1 = { class: "item-count" };
2580
- const _hoisted_22$1 = { class: "item-title" };
2581
- const _hoisted_23$1 = { class: "operation-box" };
2582
- const _hoisted_24$1 = { class: "search-time" };
2583
- const _hoisted_25$1 = /* @__PURE__ */ createElementVNode(
2584
- "div",
2585
- { class: "title" },
2586
- "\u6536\u652F\u660E\u7EC6",
2587
- -1
2588
- /* HOISTED */
2589
- );
2590
- const _hoisted_26 = { class: "text number" };
2591
- const _hoisted_27 = /* @__PURE__ */ createElementVNode(
2592
- "img",
2593
- {
2594
- style: { "margin-top": "-2px" },
2595
- class: "time-icon",
2596
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
2597
- },
2598
- null,
2599
- -1
2600
- /* HOISTED */
2601
- );
2602
- const _hoisted_28 = /* @__PURE__ */ createElementVNode(
2603
- "span",
2604
- { class: "text" },
2605
- "\u7B5B\u9009",
2606
- -1
2607
- /* HOISTED */
2608
- );
2609
- const _hoisted_29 = /* @__PURE__ */ createElementVNode(
2610
- "img",
2611
- {
2612
- class: "time-icon",
2613
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
2614
- },
2615
- null,
2616
- -1
2617
- /* HOISTED */
2618
- );
2619
- const _hoisted_30 = [
2620
- _hoisted_28,
2621
- _hoisted_29
2622
- ];
2623
- const _hoisted_31 = { class: "operation-list" };
2624
- const _hoisted_32 = {
2643
+ const _hoisted_14$1 = { class: "list" };
2644
+ const _hoisted_15$1 = { class: "item-count" };
2645
+ const _hoisted_16$1 = { class: "item-title" };
2646
+ const _hoisted_17$1 = { class: "operation-box" };
2647
+ const _hoisted_18$1 = { class: "search-time" };
2648
+ const _hoisted_19$1 = { class: "text number" };
2649
+ const _hoisted_20$1 = { class: "operation-list" };
2650
+ const _hoisted_21$1 = {
2625
2651
  key: 0,
2626
2652
  class: "box"
2627
2653
  };
2628
- const _hoisted_33 = { class: "title number" };
2629
- const _hoisted_34 = { class: "item-type" };
2630
- const _hoisted_35 = { class: "item-detail" };
2631
- const _hoisted_36 = { class: "item-info spa-between" };
2632
- const _hoisted_37 = { class: "item-info-type" };
2633
- const _hoisted_38 = { class: "item-info-title" };
2634
- const _hoisted_39 = { class: "item-info-amount number" };
2635
- const _hoisted_40 = { class: "item-detail-remark" };
2636
- const _hoisted_41 = {
2654
+ const _hoisted_22$1 = { class: "title number" };
2655
+ const _hoisted_23 = { class: "item-type" };
2656
+ const _hoisted_24 = { class: "item-detail" };
2657
+ const _hoisted_25 = { class: "item-info spa-between" };
2658
+ const _hoisted_26 = { class: "item-info-type" };
2659
+ const _hoisted_27 = { class: "item-info-title" };
2660
+ const _hoisted_28 = { class: "item-info-amount number" };
2661
+ const _hoisted_29 = { class: "item-detail-remark" };
2662
+ const _hoisted_30 = {
2637
2663
  key: 0,
2638
2664
  class: "box-not-text"
2639
2665
  };
@@ -2814,8 +2840,8 @@ var script$p = /* @__PURE__ */ defineComponent({
2814
2840
  Fragment,
2815
2841
  null,
2816
2842
  [
2817
- createElementVNode("div", _hoisted_1$o, [
2818
- createElementVNode("div", _hoisted_2$k, [
2843
+ createElementVNode("div", _hoisted_1$l, [
2844
+ createElementVNode("div", _hoisted_2$f, [
2819
2845
  createVNode(unref(script$H), {
2820
2846
  "color-mode": "dark",
2821
2847
  title: "\u6211\u7684\u8D26\u6237",
@@ -2826,20 +2852,40 @@ var script$p = /* @__PURE__ */ defineComponent({
2826
2852
  createElementVNode("div", {
2827
2853
  class: "small-bean-button",
2828
2854
  onClick: onSecondBalanceButtonClick
2829
- }, [..._hoisted_4$c])
2855
+ }, _cache[7] || (_cache[7] = [
2856
+ createElementVNode(
2857
+ "label",
2858
+ null,
2859
+ "\u6536\u652F\u660E\u7EC6",
2860
+ -1
2861
+ /* HOISTED */
2862
+ )
2863
+ ]))
2830
2864
  ]),
2831
- createElementVNode("div", _hoisted_5$b, [
2832
- createElementVNode("div", _hoisted_6$7, [
2833
- _hoisted_7$5,
2865
+ createElementVNode("div", _hoisted_3$a, [
2866
+ createElementVNode("div", _hoisted_4$8, [
2867
+ _cache[8] || (_cache[8] = createElementVNode(
2868
+ "div",
2869
+ { class: "bean-img" },
2870
+ [
2871
+ createElementVNode("img", {
2872
+ class: "bean-icon",
2873
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/gold-bean.png"
2874
+ }),
2875
+ createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
2876
+ ],
2877
+ -1
2878
+ /* HOISTED */
2879
+ )),
2834
2880
  createElementVNode("div", {
2835
2881
  class: "rule",
2836
2882
  onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
2837
2883
  }, "\u89C4\u5219\u8BF4\u660E")
2838
2884
  ]),
2839
- createElementVNode("div", _hoisted_8$3, [
2885
+ createElementVNode("div", _hoisted_5$6, [
2840
2886
  createElementVNode(
2841
2887
  "div",
2842
- _hoisted_9$3,
2888
+ _hoisted_6$3,
2843
2889
  toDisplayString(balance.value.total || 0),
2844
2890
  1
2845
2891
  /* TEXT */
@@ -2851,9 +2897,15 @@ var script$p = /* @__PURE__ */ defineComponent({
2851
2897
  ])
2852
2898
  ]),
2853
2899
  createVNode(script$q),
2854
- balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_10$3, [
2855
- _hoisted_11$3,
2856
- createElementVNode("div", _hoisted_12$3, [
2900
+ balance.value.privileges.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
2901
+ _cache[10] || (_cache[10] = createElementVNode(
2902
+ "div",
2903
+ { class: "title" },
2904
+ "\u4F01\u660E\u661F\u6743\u76CA",
2905
+ -1
2906
+ /* HOISTED */
2907
+ )),
2908
+ createElementVNode("div", _hoisted_8$3, [
2857
2909
  (openBlock(true), createElementBlock(
2858
2910
  Fragment,
2859
2911
  null,
@@ -2862,7 +2914,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2862
2914
  class: "item star-item",
2863
2915
  key: index
2864
2916
  }, [
2865
- createElementVNode("div", _hoisted_13$3, [
2917
+ createElementVNode("div", _hoisted_9$2, [
2866
2918
  createElementVNode(
2867
2919
  "span",
2868
2920
  null,
@@ -2878,7 +2930,7 @@ var script$p = /* @__PURE__ */ defineComponent({
2878
2930
  /* TEXT */
2879
2931
  )
2880
2932
  ]),
2881
- createElementVNode("div", _hoisted_14$2, [
2933
+ createElementVNode("div", _hoisted_10$1, [
2882
2934
  createElementVNode(
2883
2935
  "div",
2884
2936
  null,
@@ -2886,11 +2938,20 @@ var script$p = /* @__PURE__ */ defineComponent({
2886
2938
  1
2887
2939
  /* TEXT */
2888
2940
  ),
2889
- item.id ? (openBlock(), createElementBlock("div", _hoisted_15$2, [
2941
+ item.id ? (openBlock(), createElementBlock("div", _hoisted_11$1, [
2890
2942
  createElementVNode("div", {
2891
2943
  onClick: ($event) => gotoTrade(item)
2892
- }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_16$2),
2893
- _hoisted_17$1
2944
+ }, "\u8D85\u503C\u6362\u8D2D", 8, _hoisted_12$1),
2945
+ _cache[9] || (_cache[9] = createElementVNode(
2946
+ "img",
2947
+ {
2948
+ class: "button-icon",
2949
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/button-hg.svg"
2950
+ },
2951
+ null,
2952
+ -1
2953
+ /* HOISTED */
2954
+ ))
2894
2955
  ])) : createCommentVNode("v-if", true)
2895
2956
  ])
2896
2957
  ]);
@@ -2900,9 +2961,15 @@ var script$p = /* @__PURE__ */ defineComponent({
2900
2961
  ))
2901
2962
  ])
2902
2963
  ])) : createCommentVNode("v-if", true),
2903
- balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_18$1, [
2904
- _hoisted_19$1,
2905
- createElementVNode("div", _hoisted_20$1, [
2964
+ balance.value.privileges.aiapprove ? (openBlock(), createElementBlock("div", _hoisted_13$1, [
2965
+ _cache[11] || (_cache[11] = createElementVNode(
2966
+ "div",
2967
+ { class: "title" },
2968
+ "AI\u5BA1\u6279\u6743\u76CA",
2969
+ -1
2970
+ /* HOISTED */
2971
+ )),
2972
+ createElementVNode("div", _hoisted_14$1, [
2906
2973
  (openBlock(true), createElementBlock(
2907
2974
  Fragment,
2908
2975
  null,
@@ -2913,14 +2980,14 @@ var script$p = /* @__PURE__ */ defineComponent({
2913
2980
  }, [
2914
2981
  createElementVNode(
2915
2982
  "div",
2916
- _hoisted_21$1,
2983
+ _hoisted_15$1,
2917
2984
  toDisplayString(item.count) + toDisplayString(item.unit),
2918
2985
  1
2919
2986
  /* TEXT */
2920
2987
  ),
2921
2988
  createElementVNode(
2922
2989
  "div",
2923
- _hoisted_22$1,
2990
+ _hoisted_16$1,
2924
2991
  toDisplayString(item.title),
2925
2992
  1
2926
2993
  /* TEXT */
@@ -2996,15 +3063,21 @@ var script$p = /* @__PURE__ */ defineComponent({
2996
3063
  title: "\u6536\u652F\u660E\u7EC6"
2997
3064
  }, {
2998
3065
  default: withCtx(() => [
2999
- createElementVNode("div", _hoisted_23$1, [
3066
+ createElementVNode("div", _hoisted_17$1, [
3000
3067
  createElementVNode(
3001
3068
  "div",
3002
3069
  {
3003
3070
  class: normalizeClass(["operation-title spa-between", { "with-shadow": scrolled.value > 0 }])
3004
3071
  },
3005
3072
  [
3006
- createElementVNode("div", _hoisted_24$1, [
3007
- _hoisted_25$1,
3073
+ createElementVNode("div", _hoisted_18$1, [
3074
+ _cache[13] || (_cache[13] = createElementVNode(
3075
+ "div",
3076
+ { class: "title" },
3077
+ "\u6536\u652F\u660E\u7EC6",
3078
+ -1
3079
+ /* HOISTED */
3080
+ )),
3008
3081
  withDirectives(createElementVNode(
3009
3082
  "div",
3010
3083
  {
@@ -3014,12 +3087,22 @@ var script$p = /* @__PURE__ */ defineComponent({
3014
3087
  [
3015
3088
  createElementVNode(
3016
3089
  "div",
3017
- _hoisted_26,
3090
+ _hoisted_19$1,
3018
3091
  toDisplayString(dateRangeDisplay.value),
3019
3092
  1
3020
3093
  /* TEXT */
3021
3094
  ),
3022
- _hoisted_27
3095
+ _cache[12] || (_cache[12] = createElementVNode(
3096
+ "img",
3097
+ {
3098
+ style: { "margin-top": "-2px" },
3099
+ class: "time-icon",
3100
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3101
+ },
3102
+ null,
3103
+ -1
3104
+ /* HOISTED */
3105
+ ))
3023
3106
  ],
3024
3107
  512
3025
3108
  /* NEED_PATCH */
@@ -3030,12 +3113,30 @@ var script$p = /* @__PURE__ */ defineComponent({
3030
3113
  createElementVNode("div", {
3031
3114
  class: "search",
3032
3115
  onClick: _cache[5] || (_cache[5] = ($event) => filterOpen.value = true)
3033
- }, [..._hoisted_30])
3116
+ }, _cache[14] || (_cache[14] = [
3117
+ createElementVNode(
3118
+ "span",
3119
+ { class: "text" },
3120
+ "\u7B5B\u9009",
3121
+ -1
3122
+ /* HOISTED */
3123
+ ),
3124
+ createElementVNode(
3125
+ "img",
3126
+ {
3127
+ class: "time-icon",
3128
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3129
+ },
3130
+ null,
3131
+ -1
3132
+ /* HOISTED */
3133
+ )
3134
+ ]))
3034
3135
  ],
3035
3136
  2
3036
3137
  /* CLASS */
3037
3138
  ),
3038
- createElementVNode("div", _hoisted_31, [
3139
+ createElementVNode("div", _hoisted_20$1, [
3039
3140
  createVNode(_component_scroll_view, {
3040
3141
  class: "operation-scroll",
3041
3142
  "scroll-y": true,
@@ -3044,7 +3145,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3044
3145
  onScrolltolower: onReachBottom
3045
3146
  }, {
3046
3147
  default: withCtx(() => [
3047
- consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_32, [
3148
+ consumptionGroups.value.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_21$1, [
3048
3149
  (openBlock(true), createElementBlock(
3049
3150
  Fragment,
3050
3151
  null,
@@ -3055,7 +3156,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3055
3156
  }, [
3056
3157
  createElementVNode(
3057
3158
  "div",
3058
- _hoisted_33,
3159
+ _hoisted_22$1,
3059
3160
  toDisplayString(item.date),
3060
3161
  1
3061
3162
  /* TEXT */
@@ -3070,24 +3171,24 @@ var script$p = /* @__PURE__ */ defineComponent({
3070
3171
  }, [
3071
3172
  createElementVNode(
3072
3173
  "div",
3073
- _hoisted_34,
3174
+ _hoisted_23,
3074
3175
  toDisplayString(it.\u4EA4\u6613\u7C7B\u578B),
3075
3176
  1
3076
3177
  /* TEXT */
3077
3178
  ),
3078
- createElementVNode("div", _hoisted_35, [
3079
- createElementVNode("div", _hoisted_36, [
3179
+ createElementVNode("div", _hoisted_24, [
3180
+ createElementVNode("div", _hoisted_25, [
3080
3181
  createElementVNode("div", null, [
3081
3182
  createElementVNode(
3082
3183
  "div",
3083
- _hoisted_37,
3184
+ _hoisted_26,
3084
3185
  toDisplayString(it.\u8D26\u6237\u7C7B\u578B),
3085
3186
  1
3086
3187
  /* TEXT */
3087
3188
  ),
3088
3189
  createElementVNode(
3089
3190
  "div",
3090
- _hoisted_38,
3191
+ _hoisted_27,
3091
3192
  toDisplayString(it.title),
3092
3193
  1
3093
3194
  /* TEXT */
@@ -3095,7 +3196,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3095
3196
  ]),
3096
3197
  createElementVNode(
3097
3198
  "div",
3098
- _hoisted_39,
3199
+ _hoisted_28,
3099
3200
  toDisplayString(it.\u6536\u5165\u8FD8\u662F\u652F\u51FA == "\u652F\u51FA" ? "-" : "+") + toDisplayString(it.amount),
3100
3201
  1
3101
3202
  /* TEXT */
@@ -3103,7 +3204,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3103
3204
  ]),
3104
3205
  createElementVNode(
3105
3206
  "div",
3106
- _hoisted_40,
3207
+ _hoisted_29,
3107
3208
  toDisplayString(it.description),
3108
3209
  1
3109
3210
  /* TEXT */
@@ -3119,7 +3220,7 @@ var script$p = /* @__PURE__ */ defineComponent({
3119
3220
  128
3120
3221
  /* KEYED_FRAGMENT */
3121
3222
  )),
3122
- reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_41, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3223
+ reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_30, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
3123
3224
  ])) : (openBlock(), createBlock(script$r, { key: 1 }))
3124
3225
  ]),
3125
3226
  _: 1
@@ -3141,20 +3242,10 @@ var script$p = /* @__PURE__ */ defineComponent({
3141
3242
 
3142
3243
  script$p.__file = "src/balance/components/AccountView.vue";
3143
3244
 
3144
- const _hoisted_1$n = { class: "balance-reminder" };
3145
- const _hoisted_2$j = /* @__PURE__ */ createElementVNode(
3146
- "div",
3147
- { class: "body" },
3148
- [
3149
- /* @__PURE__ */ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3150
- /* @__PURE__ */ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3151
- ],
3152
- -1
3153
- /* HOISTED */
3154
- );
3155
- const _hoisted_3$f = { class: "footer" };
3156
- const _hoisted_4$b = { class: "col" };
3157
- const _hoisted_5$a = { class: "col" };
3245
+ const _hoisted_1$k = { class: "balance-reminder" };
3246
+ const _hoisted_2$e = { class: "footer" };
3247
+ const _hoisted_3$9 = { class: "col" };
3248
+ const _hoisted_4$7 = { class: "col" };
3158
3249
  var script$o = /* @__PURE__ */ defineComponent({
3159
3250
  __name: "BalanceReminder",
3160
3251
  props: {
@@ -3175,23 +3266,32 @@ var script$o = /* @__PURE__ */ defineComponent({
3175
3266
  "close-on-click-overlay": false
3176
3267
  }, {
3177
3268
  default: withCtx(() => [
3178
- createElementVNode("div", _hoisted_1$n, [
3179
- _hoisted_2$j,
3180
- createElementVNode("div", _hoisted_3$f, [
3181
- createElementVNode("div", _hoisted_4$b, [
3269
+ createElementVNode("div", _hoisted_1$k, [
3270
+ _cache[3] || (_cache[3] = createElementVNode(
3271
+ "div",
3272
+ { class: "body" },
3273
+ [
3274
+ createElementVNode("h2", null, "\u64CD\u4F5C\u5931\u8D25"),
3275
+ createElementVNode("p", null, "\u60A8\u7684\u8D26\u6237\u53EF\u7528\u4F59\u989D\u4E0D\u8DB3\uFF0C\u8BF7\u5145\u503C\u540E\u518D\u8FDB\u884C\u67E5\u8BE2")
3276
+ ],
3277
+ -1
3278
+ /* HOISTED */
3279
+ )),
3280
+ createElementVNode("div", _hoisted_2$e, [
3281
+ createElementVNode("div", _hoisted_3$9, [
3182
3282
  createVNode(_component_nut_button, {
3183
3283
  class: "cancel-button",
3184
3284
  onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
3185
3285
  block: ""
3186
3286
  }, {
3187
- default: withCtx(() => [
3287
+ default: withCtx(() => _cache[2] || (_cache[2] = [
3188
3288
  createTextVNode("\u53D6\u6D88")
3189
- ]),
3289
+ ])),
3190
3290
  _: 1
3191
3291
  /* STABLE */
3192
3292
  })
3193
3293
  ]),
3194
- createElementVNode("div", _hoisted_5$a, [
3294
+ createElementVNode("div", _hoisted_4$7, [
3195
3295
  createVNode(_component_nut_button, {
3196
3296
  block: "",
3197
3297
  class: "recharge-button",
@@ -3220,18 +3320,7 @@ var script$o = /* @__PURE__ */ defineComponent({
3220
3320
 
3221
3321
  script$o.__file = "src/balance/components/BalanceReminder.vue";
3222
3322
 
3223
- const _hoisted_1$m = { class: "text" };
3224
- const _hoisted_2$i = /* @__PURE__ */ createElementVNode(
3225
- "img",
3226
- {
3227
- style: { "margin-top": "-2px" },
3228
- class: "time-icon",
3229
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3230
- },
3231
- null,
3232
- -1
3233
- /* HOISTED */
3234
- );
3323
+ const _hoisted_1$j = { class: "text" };
3235
3324
  var script$n = /* @__PURE__ */ defineComponent({
3236
3325
  __name: "DateRange",
3237
3326
  props: {
@@ -3250,12 +3339,17 @@ var script$n = /* @__PURE__ */ defineComponent({
3250
3339
  const $n = useNutshell();
3251
3340
  const model = useModel(__props, "modelValue");
3252
3341
  const openDateRangePicker = () => {
3342
+ const child = ref();
3253
3343
  $n.sheet({
3254
3344
  component: script$t,
3345
+ ref: child,
3255
3346
  props: {
3256
3347
  from: model.value.from,
3257
3348
  to: model.value.to
3258
3349
  },
3350
+ modal: true,
3351
+ // 不允许点击 overlay 关闭弹窗
3352
+ mask: true,
3259
3353
  onComplete(result) {
3260
3354
  model.value = {
3261
3355
  from: result.from,
@@ -3276,12 +3370,22 @@ var script$n = /* @__PURE__ */ defineComponent({
3276
3370
  }, [
3277
3371
  createElementVNode(
3278
3372
  "div",
3279
- _hoisted_1$m,
3373
+ _hoisted_1$j,
3280
3374
  toDisplayString(dateRangeDisplay.value),
3281
3375
  1
3282
3376
  /* TEXT */
3283
3377
  ),
3284
- _hoisted_2$i
3378
+ _cache[0] || (_cache[0] = createElementVNode(
3379
+ "img",
3380
+ {
3381
+ style: { "margin-top": "-2px" },
3382
+ class: "time-icon",
3383
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
3384
+ },
3385
+ null,
3386
+ -1
3387
+ /* HOISTED */
3388
+ ))
3285
3389
  ]);
3286
3390
  };
3287
3391
  }
@@ -3289,27 +3393,11 @@ var script$n = /* @__PURE__ */ defineComponent({
3289
3393
 
3290
3394
  script$n.__file = "src/balance/components/DateRange.vue";
3291
3395
 
3292
- const _hoisted_1$l = { class: "list-filter-picker" };
3293
- const _hoisted_2$h = /* @__PURE__ */ createElementVNode(
3294
- "div",
3295
- { class: "list-filter-picker-title" },
3296
- [
3297
- /* @__PURE__ */ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3298
- ],
3299
- -1
3300
- /* HOISTED */
3301
- );
3302
- const _hoisted_3$e = { class: "consumption-filter-content" };
3303
- const _hoisted_4$a = { class: "title" };
3304
- const _hoisted_5$9 = { class: "info" };
3305
- const _hoisted_6$6 = ["onClick"];
3306
- const _hoisted_7$4 = /* @__PURE__ */ createElementVNode(
3307
- "div",
3308
- { class: "consumption-filter-bottom" },
3309
- null,
3310
- -1
3311
- /* HOISTED */
3312
- );
3396
+ const _hoisted_1$i = { class: "list-filter-picker" };
3397
+ const _hoisted_2$d = { class: "consumption-filter-content" };
3398
+ const _hoisted_3$8 = { class: "title" };
3399
+ const _hoisted_4$6 = { class: "info" };
3400
+ const _hoisted_5$5 = ["onClick"];
3313
3401
  var script$m = /* @__PURE__ */ defineComponent({
3314
3402
  __name: "ListFilterPicker",
3315
3403
  props: {
@@ -3356,9 +3444,17 @@ var script$m = /* @__PURE__ */ defineComponent({
3356
3444
  emit("complete", result);
3357
3445
  };
3358
3446
  return (_ctx, _cache) => {
3359
- return openBlock(), createElementBlock("div", _hoisted_1$l, [
3360
- _hoisted_2$h,
3361
- createElementVNode("div", _hoisted_3$e, [
3447
+ return openBlock(), createElementBlock("div", _hoisted_1$i, [
3448
+ _cache[0] || (_cache[0] = createElementVNode(
3449
+ "div",
3450
+ { class: "list-filter-picker-title" },
3451
+ [
3452
+ createElementVNode("h3", null, "\u9009\u62E9\u7B5B\u9009\u9879")
3453
+ ],
3454
+ -1
3455
+ /* HOISTED */
3456
+ )),
3457
+ createElementVNode("div", _hoisted_2$d, [
3362
3458
  (openBlock(true), createElementBlock(
3363
3459
  Fragment,
3364
3460
  null,
@@ -3369,12 +3465,12 @@ var script$m = /* @__PURE__ */ defineComponent({
3369
3465
  [
3370
3466
  createElementVNode(
3371
3467
  "div",
3372
- _hoisted_4$a,
3468
+ _hoisted_3$8,
3373
3469
  toDisplayString(item.label),
3374
3470
  1
3375
3471
  /* TEXT */
3376
3472
  ),
3377
- createElementVNode("div", _hoisted_5$9, [
3473
+ createElementVNode("div", _hoisted_4$6, [
3378
3474
  (openBlock(true), createElementBlock(
3379
3475
  Fragment,
3380
3476
  null,
@@ -3383,7 +3479,7 @@ var script$m = /* @__PURE__ */ defineComponent({
3383
3479
  onClick: () => onFilterSectionClick(item.name, it.value),
3384
3480
  class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
3385
3481
  key: i
3386
- }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_6$6);
3482
+ }, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$5);
3387
3483
  }),
3388
3484
  128
3389
3485
  /* KEYED_FRAGMENT */
@@ -3408,7 +3504,13 @@ var script$m = /* @__PURE__ */ defineComponent({
3408
3504
  onClick: onOkClick
3409
3505
  }, "\u786E\u5B9A")
3410
3506
  ]),
3411
- _hoisted_7$4
3507
+ _cache[1] || (_cache[1] = createElementVNode(
3508
+ "div",
3509
+ { class: "consumption-filter-bottom" },
3510
+ null,
3511
+ -1
3512
+ /* HOISTED */
3513
+ ))
3412
3514
  ]);
3413
3515
  };
3414
3516
  }
@@ -3416,27 +3518,6 @@ var script$m = /* @__PURE__ */ defineComponent({
3416
3518
 
3417
3519
  script$m.__file = "src/balance/components/ListFilterPicker.vue";
3418
3520
 
3419
- const _hoisted_1$k = /* @__PURE__ */ createElementVNode(
3420
- "span",
3421
- { class: "text" },
3422
- "\u7B5B\u9009",
3423
- -1
3424
- /* HOISTED */
3425
- );
3426
- const _hoisted_2$g = /* @__PURE__ */ createElementVNode(
3427
- "img",
3428
- {
3429
- class: "icon",
3430
- src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3431
- },
3432
- null,
3433
- -1
3434
- /* HOISTED */
3435
- );
3436
- const _hoisted_3$d = [
3437
- _hoisted_1$k,
3438
- _hoisted_2$g
3439
- ];
3440
3521
  var script$l = /* @__PURE__ */ defineComponent({
3441
3522
  __name: "ListFilter",
3442
3523
  props: {
@@ -3471,23 +3552,31 @@ var script$l = /* @__PURE__ */ defineComponent({
3471
3552
  return openBlock(), createElementBlock("div", {
3472
3553
  class: "list-filter",
3473
3554
  onClick: openPicker
3474
- }, [..._hoisted_3$d]);
3555
+ }, _cache[0] || (_cache[0] = [
3556
+ createElementVNode(
3557
+ "span",
3558
+ { class: "text" },
3559
+ "\u7B5B\u9009",
3560
+ -1
3561
+ /* HOISTED */
3562
+ ),
3563
+ createElementVNode(
3564
+ "img",
3565
+ {
3566
+ class: "icon",
3567
+ src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-select-icon.png"
3568
+ },
3569
+ null,
3570
+ -1
3571
+ /* HOISTED */
3572
+ )
3573
+ ]));
3475
3574
  };
3476
3575
  }
3477
3576
  });
3478
3577
 
3479
3578
  script$l.__file = "src/balance/components/ListFilter.vue";
3480
3579
 
3481
- const _hoisted_1$j = /* @__PURE__ */ createElementVNode(
3482
- "img",
3483
- {
3484
- class: "ocr-id__img",
3485
- src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3486
- },
3487
- null,
3488
- -1
3489
- /* HOISTED */
3490
- );
3491
3580
  var script$k = /* @__PURE__ */ defineComponent({
3492
3581
  __name: "index",
3493
3582
  emits: ["ocr"],
@@ -3577,7 +3666,16 @@ var script$k = /* @__PURE__ */ defineComponent({
3577
3666
  onClick: ocrIDCard
3578
3667
  }, [
3579
3668
  renderSlot(_ctx.$slots, "icon", {}, () => [
3580
- _hoisted_1$j
3669
+ _cache[0] || (_cache[0] = createElementVNode(
3670
+ "img",
3671
+ {
3672
+ class: "ocr-id__img",
3673
+ src: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgZmlsbD0ibm9uZSI+PHBhdGggb3BhY2l0eT0iLjAxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQwIDB2NDBIMFYwaDQweiIgZmlsbD0iI0M0QzRDNCIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMzMuMDQ0IDE3LjM2M2MuOTYgMCAxLjczOS0uNzkgMS43MzktMS43NjYgMC0uOTc1LS43NzktMS43NjYtMS43NC0xLjc2Ni0uOTYgMC0xLjczOC43OS0xLjczOCAxLjc2NnMuNzc4IDEuNzY2IDEuNzM5IDEuNzY2eiIgZmlsbD0iIzRCQ0I5MyIvPjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMCAzMS44MTJWMTQuNzg4YzAtMi4yNTggMi4wNDktNC4wOTcgNC41NjQtNC4wOTdoMy44NDRsMS4xMzYtMy42NThDOS44ODggNS45MTMgMTEuMjM3IDUgMTIuNTQ4IDVIMjcuNDVjMS4zOSAwIDIuNjguODc2IDMuMDEgMi4wNDRsMS4xMzMgMy42NDdoMy44NDRjMi41MTUgMCA0LjU2NCAxLjgzOSA0LjU2NCA0LjA5N3YxLjczOWMwIC41MDMtLjQ1NC45MS0xLjAxNC45MXMtMS4wMTQtLjQwNy0xLjAxNC0uOTF2LTEuNzRjMC0xLjI1My0xLjEzOS0yLjI3NS0yLjUzNi0yLjI3NWgtMy44NDRjLS45MDcgMC0xLjcxMS0uNTQ5LTEuOTU1LTEuMzMybC0xLjEzNi0zLjY2YS4zNDIuMzQyIDAgMCAwLS4wMDctLjAyNWMtLjExLS4zOTYtLjYzOS0uNjc0LTEuMDQ1LS42NzRoLTE0LjljLS4zOTkgMC0uOTUuMzY2LTEuMDUzLjY5OWwtMS4xMzYgMy42NmMtLjI0Ny43ODYtMS4wNDUgMS4zMy0xLjk1NSAxLjMzMkg0LjU2NGMtMS4zOTcgMC0yLjUzNiAxLjAyMi0yLjUzNiAyLjI3NnYxNy4wMjRjMCAxLjI1NCAxLjEzOSAyLjI3NiAyLjUzNiAyLjI3NmgzMC44N2MxLjM5NyAwIDIuNTM1LTEuMDIyIDIuNTM1LTIuMjc2VjIxLjU5NmMwLS41MDMuNDU0LS45MSAxLjAxNC0uOTFzMS4wMTUuNDA3IDEuMDE1LjkxVjMxLjgxYy0uMDAzIDIuMjYtMi4wNSA0LjEtNC41NjcgNC4xSDQuNTY0QzIuMDQ5IDM1LjkxIDAgMzQuMDcgMCAzMS44MTF6IiBmaWxsPSIjNEJDQjkzIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4xNzQgMjEuNzc4YzAtNC44NyAzLjcwNS04LjgzIDguMjYtOC44MyA0LjU1NiAwIDguMjYyIDMuOTYgOC4yNjIgOC44M3MtMy43MDYgOC44MzItOC4yNjEgOC44MzJjLTQuNTU2IDAtOC4yNjEtMy45NjItOC4yNjEtOC44MzJ6bTEuNzc5LjEzYzAgMy43OTYgMi45MDcgNi44ODMgNi40ODIgNi44ODMgMy41NzQgMCA2LjQ4MS0zLjA4NyA2LjQ4MS02Ljg4M3MtMi45MDctNi44ODMtNi40ODItNi44ODNjLTMuNTc0IDAtNi40ODEgMy4wODctNi40ODEgNi44ODN6IiBmaWxsPSIjNEJDQjkzIi8+PC9zdmc+"
3674
+ },
3675
+ null,
3676
+ -1
3677
+ /* HOISTED */
3678
+ ))
3581
3679
  ])
3582
3680
  ]);
3583
3681
  };
@@ -3616,7 +3714,7 @@ var script$j = /* @__PURE__ */ defineComponent({
3616
3714
 
3617
3715
  script$j.__file = "src/components/dd-icon/index.vue";
3618
3716
 
3619
- const _hoisted_1$i = { class: "dd-area" };
3717
+ const _hoisted_1$h = { class: "dd-area" };
3620
3718
  var script$i = /* @__PURE__ */ defineComponent({
3621
3719
  __name: "index",
3622
3720
  props: {
@@ -3776,7 +3874,7 @@ var script$i = /* @__PURE__ */ defineComponent({
3776
3874
  disabled: props.disabled
3777
3875
  }, {
3778
3876
  default: withCtx(() => [
3779
- createElementVNode("div", _hoisted_1$i, [
3877
+ createElementVNode("div", _hoisted_1$h, [
3780
3878
  createElementVNode(
3781
3879
  "div",
3782
3880
  {
@@ -3806,8 +3904,8 @@ var script$i = /* @__PURE__ */ defineComponent({
3806
3904
 
3807
3905
  script$i.__file = "src/components/dd-area/index.vue";
3808
3906
 
3809
- const _hoisted_1$h = { class: "dd-selector" };
3810
- const _hoisted_2$f = { class: "dd-selector-value" };
3907
+ const _hoisted_1$g = { class: "dd-selector" };
3908
+ const _hoisted_2$c = { class: "dd-selector-value" };
3811
3909
  var script$h = /* @__PURE__ */ defineComponent({
3812
3910
  __name: "index",
3813
3911
  props: {
@@ -3868,8 +3966,8 @@ var script$h = /* @__PURE__ */ defineComponent({
3868
3966
  }, {
3869
3967
  default: withCtx(() => [
3870
3968
  renderSlot(_ctx.$slots, "content", {}, () => [
3871
- createElementVNode("div", _hoisted_1$h, [
3872
- createElementVNode("div", _hoisted_2$f, [
3969
+ createElementVNode("div", _hoisted_1$g, [
3970
+ createElementVNode("div", _hoisted_2$c, [
3873
3971
  createElementVNode(
3874
3972
  "div",
3875
3973
  {
@@ -3906,11 +4004,11 @@ var script$h = /* @__PURE__ */ defineComponent({
3906
4004
 
3907
4005
  script$h.__file = "src/components/dd-selector/index.vue";
3908
4006
 
3909
- const _hoisted_1$g = { class: "self-registration" };
3910
- const _hoisted_2$e = { class: "self-registration-body" };
3911
- const _hoisted_3$c = ["src"];
3912
- const _hoisted_4$9 = { class: "self-registration__input" };
3913
- const _hoisted_5$8 = { class: "self-registration-bottom" };
4007
+ const _hoisted_1$f = { class: "self-registration" };
4008
+ const _hoisted_2$b = { class: "self-registration-body" };
4009
+ const _hoisted_3$7 = ["src"];
4010
+ const _hoisted_4$5 = { class: "self-registration__input" };
4011
+ const _hoisted_5$4 = { class: "self-registration-bottom" };
3914
4012
  var script$g = /* @__PURE__ */ defineComponent({
3915
4013
  __name: "SelfRegistration",
3916
4014
  props: {
@@ -4013,13 +4111,13 @@ var script$g = /* @__PURE__ */ defineComponent({
4013
4111
  const _component_nut_form_item = FormItem;
4014
4112
  const _component_nut_form = Form;
4015
4113
  const _component_nut_button = Button;
4016
- return openBlock(), createElementBlock("div", _hoisted_1$g, [
4017
- createElementVNode("div", _hoisted_2$e, [
4114
+ return openBlock(), createElementBlock("div", _hoisted_1$f, [
4115
+ createElementVNode("div", _hoisted_2$b, [
4018
4116
  createElementVNode("img", {
4019
4117
  src: _ctx.banner,
4020
4118
  class: "self-registration-banner",
4021
4119
  alt: ""
4022
- }, null, 8, _hoisted_3$c),
4120
+ }, null, 8, _hoisted_3$7),
4023
4121
  createVNode(_component_nut_form, null, {
4024
4122
  default: withCtx(() => [
4025
4123
  createVNode(_component_nut_form_item, {
@@ -4035,16 +4133,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4035
4133
  }, {
4036
4134
  default: withCtx(() => [
4037
4135
  createVNode(_component_nut_radio, { label: "person" }, {
4038
- default: withCtx(() => [
4136
+ default: withCtx(() => _cache[7] || (_cache[7] = [
4039
4137
  createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
4040
- ]),
4138
+ ])),
4041
4139
  _: 1
4042
4140
  /* STABLE */
4043
4141
  }),
4044
4142
  createVNode(_component_nut_radio, { label: "company" }, {
4045
- default: withCtx(() => [
4143
+ default: withCtx(() => _cache[8] || (_cache[8] = [
4046
4144
  createTextVNode("\u516C\u53F8\u4F7F\u7528")
4047
- ]),
4145
+ ])),
4048
4146
  _: 1
4049
4147
  /* STABLE */
4050
4148
  })
@@ -4061,7 +4159,7 @@ var script$g = /* @__PURE__ */ defineComponent({
4061
4159
  required: ""
4062
4160
  }, {
4063
4161
  default: withCtx(() => [
4064
- createElementVNode("div", _hoisted_4$9, [
4162
+ createElementVNode("div", _hoisted_4$5, [
4065
4163
  withDirectives(createElementVNode(
4066
4164
  "input",
4067
4165
  {
@@ -4200,16 +4298,16 @@ var script$g = /* @__PURE__ */ defineComponent({
4200
4298
  /* STABLE */
4201
4299
  })
4202
4300
  ]),
4203
- createElementVNode("div", _hoisted_5$8, [
4301
+ createElementVNode("div", _hoisted_5$4, [
4204
4302
  createVNode(_component_nut_button, {
4205
4303
  block: "",
4206
4304
  type: "primary",
4207
4305
  class: "experience-button",
4208
4306
  onClick: submit
4209
4307
  }, {
4210
- default: withCtx(() => [
4308
+ default: withCtx(() => _cache[9] || (_cache[9] = [
4211
4309
  createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
4212
- ]),
4310
+ ])),
4213
4311
  _: 1
4214
4312
  /* STABLE */
4215
4313
  })
@@ -4232,19 +4330,39 @@ const transforms$1 = Object.fromEntries(
4232
4330
  Object.entries(endpointsList$1).map(([, def]) => [def.path, def.transform])
4233
4331
  );
4234
4332
 
4333
+ const logger$1 = useLogger();
4235
4334
  const vendor$1 = {
4236
4335
  async request(config) {
4237
4336
  return new Promise((resolve, reject) => {
4337
+ const header = {
4338
+ ...config.headers,
4339
+ traceId: generateUniqueId("appkit")
4340
+ };
4341
+ const startTime = (/* @__PURE__ */ new Date()).getTime();
4238
4342
  Taro.request({
4239
4343
  url: config.url,
4240
4344
  method: config.method,
4241
- header: config.headers,
4345
+ header,
4242
4346
  data: config.data
4243
4347
  }).then(({ data }) => {
4244
- resolve({
4245
- status: +data.code,
4246
- message: data.msg,
4247
- data: data.result
4348
+ if (data.success) {
4349
+ resolve({
4350
+ status: +data.code,
4351
+ message: data.msg,
4352
+ data: data.result
4353
+ });
4354
+ } else if (data.code !== "401") {
4355
+ Taro.showToast({
4356
+ title: data.msg,
4357
+ icon: "none"
4358
+ });
4359
+ }
4360
+ const endTime = (/* @__PURE__ */ new Date()).getTime();
4361
+ logger$1.info({
4362
+ send: JSON.stringify({ url: config.url, data: config.data }),
4363
+ receive: JSON.stringify(data),
4364
+ traceId: header.traceId,
4365
+ duration: endTime - startTime
4248
4366
  });
4249
4367
  }).catch((e) => {
4250
4368
  reject(e);
@@ -4296,22 +4414,8 @@ function useHttp$1() {
4296
4414
  return $http;
4297
4415
  }
4298
4416
 
4299
- const _hoisted_1$f = /* @__PURE__ */ createElementVNode(
4300
- "div",
4301
- { class: "notice-popup-hd" },
4302
- [
4303
- /* @__PURE__ */ createElementVNode("img", {
4304
- class: "notice-popup-hd-icon",
4305
- src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4306
- alt: ""
4307
- }),
4308
- /* @__PURE__ */ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4309
- ],
4310
- -1
4311
- /* HOISTED */
4312
- );
4313
- const _hoisted_2$d = { class: "notice-popup-bd" };
4314
- const _hoisted_3$b = { style: { "white-space": "pre-wrap" } };
4417
+ const _hoisted_1$e = { class: "notice-popup-bd" };
4418
+ const _hoisted_2$a = { style: { "white-space": "pre-wrap" } };
4315
4419
  var script$f = /* @__PURE__ */ defineComponent({
4316
4420
  __name: "NoticePopup",
4317
4421
  props: {
@@ -4352,11 +4456,24 @@ var script$f = /* @__PURE__ */ defineComponent({
4352
4456
  round: ""
4353
4457
  }, {
4354
4458
  default: withCtx(() => [
4355
- _hoisted_1$f,
4356
- createElementVNode("div", _hoisted_2$d, [
4459
+ _cache[1] || (_cache[1] = createElementVNode(
4460
+ "div",
4461
+ { class: "notice-popup-hd" },
4462
+ [
4463
+ createElementVNode("img", {
4464
+ class: "notice-popup-hd-icon",
4465
+ src: "https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png",
4466
+ alt: ""
4467
+ }),
4468
+ createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
4469
+ ],
4470
+ -1
4471
+ /* HOISTED */
4472
+ )),
4473
+ createElementVNode("div", _hoisted_1$e, [
4357
4474
  createElementVNode(
4358
4475
  "div",
4359
- _hoisted_3$b,
4476
+ _hoisted_2$a,
4360
4477
  toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
4361
4478
  1
4362
4479
  /* TEXT */
@@ -4409,19 +4526,8 @@ function useNotice() {
4409
4526
  };
4410
4527
  }
4411
4528
 
4412
- const _hoisted_1$e = /* @__PURE__ */ createElementVNode(
4413
- "img",
4414
- {
4415
- class: "notice-banner-icon",
4416
- src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4417
- alt: ""
4418
- },
4419
- null,
4420
- -1
4421
- /* HOISTED */
4422
- );
4423
- const _hoisted_2$c = { class: "notice-banner-text" };
4424
- const _hoisted_3$a = ["onClick"];
4529
+ const _hoisted_1$d = { class: "notice-banner-text" };
4530
+ const _hoisted_2$9 = ["onClick"];
4425
4531
  var script$e = /* @__PURE__ */ defineComponent({
4426
4532
  __name: "NoticeBanner",
4427
4533
  props: {
@@ -4553,10 +4659,20 @@ var script$e = /* @__PURE__ */ defineComponent({
4553
4659
  onClose: ($event) => unref(onClose)(item, key)
4554
4660
  }, {
4555
4661
  default: withCtx(() => [
4556
- _hoisted_1$e,
4662
+ _cache[1] || (_cache[1] = createElementVNode(
4663
+ "img",
4664
+ {
4665
+ class: "notice-banner-icon",
4666
+ src: "https://cdn.ddjf.com/static/images/customer-center/notice-icon.png",
4667
+ alt: ""
4668
+ },
4669
+ null,
4670
+ -1
4671
+ /* HOISTED */
4672
+ )),
4557
4673
  createElementVNode(
4558
4674
  "div",
4559
- _hoisted_2$c,
4675
+ _hoisted_1$d,
4560
4676
  toDisplayString(item.context),
4561
4677
  1
4562
4678
  /* TEXT */
@@ -4564,7 +4680,7 @@ var script$e = /* @__PURE__ */ defineComponent({
4564
4680
  createElementVNode("div", {
4565
4681
  class: "notice-banner-btn",
4566
4682
  onClick: ($event) => onDetail(item)
4567
- }, "\u8BE6\u60C5", 8, _hoisted_3$a)
4683
+ }, "\u8BE6\u60C5", 8, _hoisted_2$9)
4568
4684
  ]),
4569
4685
  _: 2
4570
4686
  /* DYNAMIC */
@@ -4602,26 +4718,8 @@ var script$e = /* @__PURE__ */ defineComponent({
4602
4718
 
4603
4719
  script$e.__file = "src/notice/components/NoticeBanner.vue";
4604
4720
 
4605
- const _hoisted_1$d = { class: "notice-entry" };
4606
- const _hoisted_2$b = /* @__PURE__ */ createElementVNode(
4607
- "img",
4608
- {
4609
- class: "notice-entry-img",
4610
- src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4611
- alt: ""
4612
- },
4613
- null,
4614
- -1
4615
- /* HOISTED */
4616
- );
4617
- const _hoisted_3$9 = /* @__PURE__ */ createElementVNode(
4618
- "span",
4619
- null,
4620
- "\u901A\u77E5",
4621
- -1
4622
- /* HOISTED */
4623
- );
4624
- const _hoisted_4$8 = {
4721
+ const _hoisted_1$c = { class: "notice-entry" };
4722
+ const _hoisted_2$8 = {
4625
4723
  key: 0,
4626
4724
  class: "notice-entry-icon"
4627
4725
  };
@@ -4661,10 +4759,26 @@ var script$d = /* @__PURE__ */ defineComponent({
4661
4759
  });
4662
4760
  }
4663
4761
  return (_ctx, _cache) => {
4664
- return openBlock(), createElementBlock("div", _hoisted_1$d, [
4665
- _hoisted_2$b,
4666
- _hoisted_3$9,
4667
- noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_4$8)) : createCommentVNode("v-if", true)
4762
+ return openBlock(), createElementBlock("div", _hoisted_1$c, [
4763
+ _cache[0] || (_cache[0] = createElementVNode(
4764
+ "img",
4765
+ {
4766
+ class: "notice-entry-img",
4767
+ src: "https://cdn.ddjf.com/static/images/loan-manage/notice-icon.png",
4768
+ alt: ""
4769
+ },
4770
+ null,
4771
+ -1
4772
+ /* HOISTED */
4773
+ )),
4774
+ _cache[1] || (_cache[1] = createElementVNode(
4775
+ "span",
4776
+ null,
4777
+ "\u901A\u77E5",
4778
+ -1
4779
+ /* HOISTED */
4780
+ )),
4781
+ noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$8)) : createCommentVNode("v-if", true)
4668
4782
  ]);
4669
4783
  };
4670
4784
  }
@@ -4672,34 +4786,9 @@ var script$d = /* @__PURE__ */ defineComponent({
4672
4786
 
4673
4787
  script$d.__file = "src/notice/components/NoticeEntry.vue";
4674
4788
 
4675
- const _hoisted_1$c = { class: "dd-search__form" };
4676
- const _hoisted_2$a = /* @__PURE__ */ createElementVNode(
4677
- "div",
4678
- { class: "dd-search__prefix" },
4679
- [
4680
- /* @__PURE__ */ createElementVNode("image", {
4681
- class: "full-img",
4682
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4683
- })
4684
- ],
4685
- -1
4686
- /* HOISTED */
4687
- );
4688
- const _hoisted_3$8 = { class: "dd-search__control" };
4689
- const _hoisted_4$7 = ["disabled", "placeholder", "focus"];
4690
- const _hoisted_5$7 = /* @__PURE__ */ createElementVNode(
4691
- "image",
4692
- {
4693
- class: "full-img",
4694
- src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4695
- },
4696
- null,
4697
- -1
4698
- /* HOISTED */
4699
- );
4700
- const _hoisted_6$5 = [
4701
- _hoisted_5$7
4702
- ];
4789
+ const _hoisted_1$b = { class: "dd-search__form" };
4790
+ const _hoisted_2$7 = { class: "dd-search__control" };
4791
+ const _hoisted_3$6 = ["disabled", "placeholder", "focus"];
4703
4792
  var script$c = /* @__PURE__ */ defineComponent({
4704
4793
  __name: "index",
4705
4794
  props: {
@@ -4753,9 +4842,20 @@ var script$c = /* @__PURE__ */ defineComponent({
4753
4842
  }])
4754
4843
  },
4755
4844
  [
4756
- createElementVNode("div", _hoisted_1$c, [
4757
- _hoisted_2$a,
4758
- createElementVNode("div", _hoisted_3$8, [
4845
+ createElementVNode("div", _hoisted_1$b, [
4846
+ _cache[2] || (_cache[2] = createElementVNode(
4847
+ "div",
4848
+ { class: "dd-search__prefix" },
4849
+ [
4850
+ createElementVNode("image", {
4851
+ class: "full-img",
4852
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/search-icon.png"
4853
+ })
4854
+ ],
4855
+ -1
4856
+ /* HOISTED */
4857
+ )),
4858
+ createElementVNode("div", _hoisted_2$7, [
4759
4859
  withDirectives(createElementVNode("input", {
4760
4860
  class: "dd-search__input",
4761
4861
  type: "text",
@@ -4769,7 +4869,7 @@ var script$c = /* @__PURE__ */ defineComponent({
4769
4869
  onConfirm,
4770
4870
  onFocus: onFoucs,
4771
4871
  onBlur
4772
- }, null, 40, _hoisted_4$7), [
4872
+ }, null, 40, _hoisted_3$6), [
4773
4873
  [vModelText, key.value]
4774
4874
  ])
4775
4875
  ]),
@@ -4779,7 +4879,18 @@ var script$c = /* @__PURE__ */ defineComponent({
4779
4879
  class: "dd-search__suffix",
4780
4880
  onTap: onClear
4781
4881
  },
4782
- [..._hoisted_6$5],
4882
+ _cache[1] || (_cache[1] = [
4883
+ createElementVNode(
4884
+ "image",
4885
+ {
4886
+ class: "full-img",
4887
+ src: "https://cdn.ddjf.com/static/images/wx-yunservice/clear-icon.png"
4888
+ },
4889
+ null,
4890
+ -1
4891
+ /* HOISTED */
4892
+ )
4893
+ ]),
4783
4894
  544
4784
4895
  /* NEED_HYDRATION, NEED_PATCH */
4785
4896
  ), [
@@ -4860,59 +4971,28 @@ function useCommonList(api, query, showLoading = true, method = "GET") {
4860
4971
  };
4861
4972
  }
4862
4973
 
4863
- const _hoisted_1$b = { class: "notice-list" };
4864
- const _hoisted_2$9 = { style: { "flex": "1", "overflow": "hidden" } };
4865
- const _hoisted_3$7 = {
4974
+ const _hoisted_1$a = { class: "notice-list" };
4975
+ const _hoisted_2$6 = { style: { "flex": "1", "overflow": "hidden" } };
4976
+ const _hoisted_3$5 = {
4866
4977
  key: 0,
4867
4978
  class: "wrapper"
4868
4979
  };
4869
- const _hoisted_4$6 = ["onClick"];
4870
- const _hoisted_5$6 = /* @__PURE__ */ createElementVNode(
4871
- "div",
4872
- { class: "point" },
4873
- null,
4874
- -1
4875
- /* HOISTED */
4876
- );
4877
- const _hoisted_6$4 = { class: "time" };
4878
- const _hoisted_7$3 = {
4980
+ const _hoisted_4$4 = ["onClick"];
4981
+ const _hoisted_5$3 = { class: "time" };
4982
+ const _hoisted_6$2 = {
4879
4983
  key: 0,
4880
4984
  class: "notice-list-label"
4881
4985
  };
4882
- const _hoisted_8$2 = ["onClick"];
4883
- const _hoisted_9$2 = {
4986
+ const _hoisted_7$2 = ["onClick"];
4987
+ const _hoisted_8$2 = {
4884
4988
  key: 0,
4885
4989
  class: "cue-text",
4886
4990
  style: { "padding-bottom": "40px" }
4887
4991
  };
4888
- const _hoisted_10$2 = {
4992
+ const _hoisted_9$1 = {
4889
4993
  key: 1,
4890
4994
  class: "no-data"
4891
4995
  };
4892
- const _hoisted_11$2 = /* @__PURE__ */ createElementVNode(
4893
- "div",
4894
- { class: "no-data-img" },
4895
- [
4896
- /* @__PURE__ */ createElementVNode("img", {
4897
- style: { "width": "100%", "height": "100%" },
4898
- src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
4899
- alt: ""
4900
- })
4901
- ],
4902
- -1
4903
- /* HOISTED */
4904
- );
4905
- const _hoisted_12$2 = /* @__PURE__ */ createElementVNode(
4906
- "div",
4907
- { class: "text" },
4908
- "\u6682\u65E0\u8BB0\u5F55",
4909
- -1
4910
- /* HOISTED */
4911
- );
4912
- const _hoisted_13$2 = [
4913
- _hoisted_11$2,
4914
- _hoisted_12$2
4915
- ];
4916
4996
  var script$b = /* @__PURE__ */ defineComponent({
4917
4997
  __name: "NoticeList",
4918
4998
  props: {
@@ -4987,7 +5067,7 @@ var script$b = /* @__PURE__ */ defineComponent({
4987
5067
  return (_ctx, _cache) => {
4988
5068
  const _component_rich_text = resolveComponent("rich-text");
4989
5069
  const _component_scroll_view = resolveComponent("scroll-view");
4990
- return openBlock(), createElementBlock("div", _hoisted_1$b, [
5070
+ return openBlock(), createElementBlock("div", _hoisted_1$a, [
4991
5071
  createVNode(script$c, {
4992
5072
  bordered: false,
4993
5073
  focus: false,
@@ -4995,8 +5075,8 @@ var script$b = /* @__PURE__ */ defineComponent({
4995
5075
  placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
4996
5076
  onSearch
4997
5077
  }, null, 8, ["value"]),
4998
- createElementVNode("div", _hoisted_2$9, [
4999
- unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$7, [
5078
+ createElementVNode("div", _hoisted_2$6, [
5079
+ unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$5, [
5000
5080
  createVNode(_component_scroll_view, {
5001
5081
  class: "content",
5002
5082
  "scroll-y": true,
@@ -5017,11 +5097,17 @@ var script$b = /* @__PURE__ */ defineComponent({
5017
5097
  key: index,
5018
5098
  onClick: ($event) => notifyRead(item, index)
5019
5099
  }, [
5020
- _hoisted_5$6,
5100
+ _cache[0] || (_cache[0] = createElementVNode(
5101
+ "div",
5102
+ { class: "point" },
5103
+ null,
5104
+ -1
5105
+ /* HOISTED */
5106
+ )),
5021
5107
  createElementVNode("div", null, [
5022
5108
  createElementVNode(
5023
5109
  "div",
5024
- _hoisted_6$4,
5110
+ _hoisted_5$3,
5025
5111
  toDisplayString(formatMinutes(item.receiveTime)),
5026
5112
  1
5027
5113
  /* TEXT */
@@ -5041,7 +5127,7 @@ var script$b = /* @__PURE__ */ defineComponent({
5041
5127
  ),
5042
5128
  _ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
5043
5129
  "div",
5044
- _hoisted_7$3,
5130
+ _hoisted_6$2,
5045
5131
  toDisplayString(appMap[item.appCode]),
5046
5132
  1
5047
5133
  /* TEXT */
@@ -5064,23 +5150,44 @@ var script$b = /* @__PURE__ */ defineComponent({
5064
5150
  key: 0,
5065
5151
  class: "notice-list-file",
5066
5152
  onClick: ($event) => onNoticeView(item.link)
5067
- }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_8$2)) : createCommentVNode("v-if", true)
5153
+ }, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$2)) : createCommentVNode("v-if", true)
5068
5154
  ],
5069
5155
  2
5070
5156
  /* CLASS */
5071
5157
  )
5072
5158
  ])
5073
- ], 10, _hoisted_4$6);
5159
+ ], 10, _hoisted_4$4);
5074
5160
  }),
5075
5161
  128
5076
5162
  /* KEYED_FRAGMENT */
5077
5163
  )),
5078
- unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_9$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5164
+ unref(isLast) ? (openBlock(), createElementBlock("div", _hoisted_8$2, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
5079
5165
  ]),
5080
5166
  _: 1
5081
5167
  /* STABLE */
5082
5168
  }, 8, ["refresherTriggered", "onScrolltolower"])
5083
- ])) : (openBlock(), createElementBlock("div", _hoisted_10$2, [..._hoisted_13$2]))
5169
+ ])) : (openBlock(), createElementBlock("div", _hoisted_9$1, _cache[1] || (_cache[1] = [
5170
+ createElementVNode(
5171
+ "div",
5172
+ { class: "no-data-img" },
5173
+ [
5174
+ createElementVNode("img", {
5175
+ style: { "width": "100%", "height": "100%" },
5176
+ src: "https://cdn.ddjf.com/static/images/loan-manage/no-data.png",
5177
+ alt: ""
5178
+ })
5179
+ ],
5180
+ -1
5181
+ /* HOISTED */
5182
+ ),
5183
+ createElementVNode(
5184
+ "div",
5185
+ { class: "text" },
5186
+ "\u6682\u65E0\u8BB0\u5F55",
5187
+ -1
5188
+ /* HOISTED */
5189
+ )
5190
+ ])))
5084
5191
  ])
5085
5192
  ]);
5086
5193
  };
@@ -5089,24 +5196,10 @@ var script$b = /* @__PURE__ */ defineComponent({
5089
5196
 
5090
5197
  script$b.__file = "src/notice/components/NoticeList.vue";
5091
5198
 
5092
- const _hoisted_1$a = { class: "user-entry" };
5093
- const _hoisted_2$8 = { class: "user-entry-head" };
5094
- const _hoisted_3$6 = ["src"];
5095
- const _hoisted_4$5 = { class: "user-entry-bd" };
5096
- const _hoisted_5$5 = /* @__PURE__ */ createElementVNode(
5097
- "span",
5098
- { class: "user-entry-bd-arrow" },
5099
- ">",
5100
- -1
5101
- /* HOISTED */
5102
- );
5103
- const _hoisted_6$3 = /* @__PURE__ */ createElementVNode(
5104
- "span",
5105
- { class: "user-entry-bd-arrow" },
5106
- ">",
5107
- -1
5108
- /* HOISTED */
5109
- );
5199
+ const _hoisted_1$9 = { class: "user-entry" };
5200
+ const _hoisted_2$5 = { class: "user-entry-head" };
5201
+ const _hoisted_3$4 = ["src"];
5202
+ const _hoisted_4$3 = { class: "user-entry-bd" };
5110
5203
  var script$a = /* @__PURE__ */ defineComponent({
5111
5204
  __name: "UserEntry",
5112
5205
  props: {
@@ -5129,8 +5222,8 @@ var script$a = /* @__PURE__ */ defineComponent({
5129
5222
  }
5130
5223
  const emits = __emit;
5131
5224
  return (_ctx, _cache) => {
5132
- return openBlock(), createElementBlock("div", _hoisted_1$a, [
5133
- createElementVNode("div", _hoisted_2$8, [
5225
+ return openBlock(), createElementBlock("div", _hoisted_1$9, [
5226
+ createElementVNode("div", _hoisted_2$5, [
5134
5227
  _ctx.avatar ? (openBlock(), createElementBlock("img", {
5135
5228
  key: 0,
5136
5229
  class: "user-entry-head-img",
@@ -5138,7 +5231,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5138
5231
  mode: "aspectFit",
5139
5232
  src: _ctx.avatar,
5140
5233
  alt: ""
5141
- }, null, 8, _hoisted_3$6)) : (openBlock(), createElementBlock("img", {
5234
+ }, null, 8, _hoisted_3$4)) : (openBlock(), createElementBlock("img", {
5142
5235
  key: 1,
5143
5236
  class: "user-entry-head-img",
5144
5237
  mode: "aspectFit",
@@ -5147,15 +5240,21 @@ var script$a = /* @__PURE__ */ defineComponent({
5147
5240
  alt: ""
5148
5241
  }))
5149
5242
  ]),
5150
- createElementVNode("div", _hoisted_4$5, [
5243
+ createElementVNode("div", _hoisted_4$3, [
5151
5244
  !_ctx.mobile ? (openBlock(), createElementBlock("div", {
5152
5245
  key: 0,
5153
5246
  class: "user-entry-bd-bigtxt",
5154
5247
  onClick: toLogin
5155
- }, [
5248
+ }, _cache[0] || (_cache[0] = [
5156
5249
  createTextVNode(" \u8BF7\u767B\u5F55 "),
5157
- _hoisted_5$5
5158
- ])) : (openBlock(), createElementBlock(
5250
+ createElementVNode(
5251
+ "span",
5252
+ { class: "user-entry-bd-arrow" },
5253
+ ">",
5254
+ -1
5255
+ /* HOISTED */
5256
+ )
5257
+ ]))) : (openBlock(), createElementBlock(
5159
5258
  Fragment,
5160
5259
  { key: 1 },
5161
5260
  [
@@ -5168,7 +5267,13 @@ var script$a = /* @__PURE__ */ defineComponent({
5168
5267
  1
5169
5268
  /* TEXT */
5170
5269
  ),
5171
- _hoisted_6$3
5270
+ _cache[1] || (_cache[1] = createElementVNode(
5271
+ "span",
5272
+ { class: "user-entry-bd-arrow" },
5273
+ ">",
5274
+ -1
5275
+ /* HOISTED */
5276
+ ))
5172
5277
  ]),
5173
5278
  createElementVNode(
5174
5279
  "div",
@@ -5192,7 +5297,7 @@ var script$a = /* @__PURE__ */ defineComponent({
5192
5297
 
5193
5298
  script$a.__file = "src/user/components/UserEntry.vue";
5194
5299
 
5195
- const _hoisted_1$9 = { class: "dd-skeleton" };
5300
+ const _hoisted_1$8 = { class: "dd-skeleton" };
5196
5301
  var script$9 = /* @__PURE__ */ defineComponent({
5197
5302
  __name: "index",
5198
5303
  props: {
@@ -5203,7 +5308,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
5203
5308
  setup(__props) {
5204
5309
  return (_ctx, _cache) => {
5205
5310
  const _component_nut_skeleton = Skeleton;
5206
- return openBlock(), createElementBlock("div", _hoisted_1$9, [
5311
+ return openBlock(), createElementBlock("div", _hoisted_1$8, [
5207
5312
  (openBlock(true), createElementBlock(
5208
5313
  Fragment,
5209
5314
  null,
@@ -5249,19 +5354,39 @@ const transforms = Object.fromEntries(
5249
5354
  Object.entries(endpointsList).map(([, def]) => [def.path, def.transform])
5250
5355
  );
5251
5356
 
5357
+ const logger = useLogger();
5252
5358
  const vendor = {
5253
5359
  async request(config) {
5254
5360
  return new Promise((resolve, reject) => {
5361
+ const header = {
5362
+ ...config.headers,
5363
+ traceId: generateUniqueId("appkit")
5364
+ };
5365
+ const startTime = (/* @__PURE__ */ new Date()).getTime();
5255
5366
  Taro.request({
5256
5367
  url: config.url,
5257
5368
  method: config.method,
5258
- header: config.headers,
5369
+ header,
5259
5370
  data: config.data
5260
5371
  }).then(({ data }) => {
5261
- resolve({
5262
- status: +data.code,
5263
- message: data.msg,
5264
- data: data.result
5372
+ if (data.success) {
5373
+ resolve({
5374
+ status: +data.code,
5375
+ message: data.msg,
5376
+ data: data.result
5377
+ });
5378
+ } else if (data.code !== "401") {
5379
+ Taro.showToast({
5380
+ title: data.msg,
5381
+ icon: "none"
5382
+ });
5383
+ }
5384
+ const endTime = (/* @__PURE__ */ new Date()).getTime();
5385
+ logger.info({
5386
+ send: JSON.stringify({ url: config.url, data: config.data }),
5387
+ receive: JSON.stringify(data),
5388
+ traceId: header.traceId,
5389
+ duration: endTime - startTime
5265
5390
  });
5266
5391
  }).catch((e) => {
5267
5392
  reject(e);
@@ -5317,77 +5442,49 @@ function useHttp() {
5317
5442
  return $http;
5318
5443
  }
5319
5444
 
5320
- const _hoisted_1$8 = {
5445
+ const _hoisted_1$7 = {
5321
5446
  key: 1,
5322
5447
  class: "user-info-wrap"
5323
5448
  };
5324
- const _hoisted_2$7 = /* @__PURE__ */ createElementVNode(
5325
- "div",
5326
- { class: "user-info-tit" },
5327
- "\u8D26\u53F7\u4FE1\u606F",
5328
- -1
5329
- /* HOISTED */
5330
- );
5331
- const _hoisted_3$5 = { class: "user-info-head" };
5332
- const _hoisted_4$4 = ["src"];
5333
- const _hoisted_5$4 = {
5449
+ const _hoisted_2$4 = { class: "user-info-head" };
5450
+ const _hoisted_3$3 = ["src"];
5451
+ const _hoisted_4$2 = {
5334
5452
  key: 1,
5335
5453
  class: "user-info-head-img",
5336
5454
  mode: "aspectFit",
5337
5455
  src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
5338
5456
  alt: ""
5339
5457
  };
5340
- const _hoisted_6$2 = /* @__PURE__ */ createElementVNode(
5341
- "div",
5342
- { class: "user-info-head-upload" },
5343
- [
5344
- /* @__PURE__ */ createElementVNode("img", {
5345
- class: "user-info-head-upload-icon",
5346
- mode: "aspectFit",
5347
- src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5348
- alt: ""
5349
- })
5350
- ],
5351
- -1
5352
- /* HOISTED */
5353
- );
5354
- const _hoisted_7$2 = /* @__PURE__ */ createElementVNode(
5355
- "div",
5356
- { class: "user-info-tit" },
5357
- "\u4F01\u4E1A/\u56E2\u961F",
5358
- -1
5359
- /* HOISTED */
5360
- );
5361
- const _hoisted_8$1 = { class: "user-info-team" };
5362
- const _hoisted_9$1 = { class: "user-info-team-item-avatar" };
5363
- const _hoisted_10$1 = ["src"];
5364
- const _hoisted_11$1 = {
5458
+ const _hoisted_5$2 = { class: "user-info-team" };
5459
+ const _hoisted_6$1 = { class: "user-info-team-item-avatar" };
5460
+ const _hoisted_7$1 = ["src"];
5461
+ const _hoisted_8$1 = {
5365
5462
  key: 1,
5366
5463
  class: "user-info-team-item-avatar-img empty",
5367
5464
  mode: "aspectFit",
5368
5465
  src: "https://cdn.ddjf.com/static/images/customer-center/tenant-logo.png",
5369
5466
  alt: ""
5370
5467
  };
5371
- const _hoisted_12$1 = { class: "user-info-team-item-bd" };
5372
- const _hoisted_13$1 = { class: "user-info-team-item-title" };
5373
- const _hoisted_14$1 = {
5468
+ const _hoisted_9 = { class: "user-info-team-item-bd" };
5469
+ const _hoisted_10 = { class: "user-info-team-item-title" };
5470
+ const _hoisted_11 = {
5374
5471
  key: 0,
5375
5472
  class: "user-info-team-item-app"
5376
5473
  };
5377
- const _hoisted_15$1 = ["onClick"];
5378
- const _hoisted_16$1 = {
5474
+ const _hoisted_12 = ["onClick"];
5475
+ const _hoisted_13 = {
5379
5476
  key: 1,
5380
5477
  class: "user-info-team-item-role"
5381
5478
  };
5382
- const _hoisted_17 = { class: "user-info-team-item-role-item-name" };
5383
- const _hoisted_18 = { class: "user-info-team-item-role-item-info" };
5384
- const _hoisted_19 = { class: "user-info-team-item-user" };
5385
- const _hoisted_20 = ["onClick"];
5386
- const _hoisted_21 = { class: "user-info-team-item-dept" };
5387
- const _hoisted_22 = { class: "user-info-ft" };
5388
- const _hoisted_23 = { class: "upload-avatar-popup-box" };
5389
- const _hoisted_24 = ["src"];
5390
- const _hoisted_25 = {
5479
+ const _hoisted_14 = { class: "user-info-team-item-role-item-name" };
5480
+ const _hoisted_15 = { class: "user-info-team-item-role-item-info" };
5481
+ const _hoisted_16 = { class: "user-info-team-item-user" };
5482
+ const _hoisted_17 = ["onClick"];
5483
+ const _hoisted_18 = { class: "user-info-team-item-dept" };
5484
+ const _hoisted_19 = { class: "user-info-ft" };
5485
+ const _hoisted_20 = { class: "upload-avatar-popup-box" };
5486
+ const _hoisted_21 = ["src"];
5487
+ const _hoisted_22 = {
5391
5488
  key: 1,
5392
5489
  class: "upload-avatar-popup-avatar",
5393
5490
  mode: "aspectFit",
@@ -5565,9 +5662,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
5565
5662
  firstLoading.value ? (openBlock(), createBlock(script$9, {
5566
5663
  key: 0,
5567
5664
  row: 3
5568
- })) : (openBlock(), createElementBlock("div", _hoisted_1$8, [
5569
- _hoisted_2$7,
5570
- createElementVNode("div", _hoisted_3$5, [
5665
+ })) : (openBlock(), createElementBlock("div", _hoisted_1$7, [
5666
+ _cache[7] || (_cache[7] = createElementVNode(
5667
+ "div",
5668
+ { class: "user-info-tit" },
5669
+ "\u8D26\u53F7\u4FE1\u606F",
5670
+ -1
5671
+ /* HOISTED */
5672
+ )),
5673
+ createElementVNode("div", _hoisted_2$4, [
5571
5674
  createElementVNode("div", {
5572
5675
  class: "user-info-head-avatar",
5573
5676
  onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
@@ -5578,8 +5681,21 @@ var script$8 = /* @__PURE__ */ defineComponent({
5578
5681
  mode: "aspectFit",
5579
5682
  src: userInfo.value.avatar,
5580
5683
  alt: ""
5581
- }, null, 8, _hoisted_4$4)) : (openBlock(), createElementBlock("img", _hoisted_5$4)),
5582
- _hoisted_6$2
5684
+ }, null, 8, _hoisted_3$3)) : (openBlock(), createElementBlock("img", _hoisted_4$2)),
5685
+ _cache[4] || (_cache[4] = createElementVNode(
5686
+ "div",
5687
+ { class: "user-info-head-upload" },
5688
+ [
5689
+ createElementVNode("img", {
5690
+ class: "user-info-head-upload-icon",
5691
+ mode: "aspectFit",
5692
+ src: "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzQiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNCAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi4wOTk5IDE4LjQyMjRDMjIuMDk5OSAxNS41ODMyIDE5LjgxNjYgMTMuMjgxNiAxNi45OTk5IDEzLjI4MTZDMTQuMTgzMyAxMy4yODE2IDExLjg5OTkgMTUuNTgzMiAxMS44OTk5IDE4LjQyMjRDMTEuODk5OSAyMS4yNjE2IDE0LjE4MzMgMjMuNTYzMiAxNi45OTk5IDIzLjU2MzJDMTkuODE2NiAyMy41NjMyIDIyLjA5OTkgMjEuMjYxNiAyMi4wOTk5IDE4LjQyMjRWMTguNDIyNFoiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMi41NSIgc3Ryb2tlLWxpbmVjYXA9InNxdWFyZSIvPgo8cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTIzLjc5OTkgNS45OTg4QzIzLjc5OTkgNi4yMzUzOSAyMy45OTAyIDYuNDI3MiAyNC4yMjQ5IDYuNDI3MkgyNS45MjVDMjkuNDQ1OCA2LjQyNzIgMzIuMyA5LjMwNDIxIDMyLjMgMTIuODUzMlYyMy45OTE2QzMyLjMgMjcuNTQwNiAyOS40NDU4IDMwLjQxNzYgMjUuOTI1IDMwLjQxNzZIOC4wNzQ5NEM0LjU1NDE0IDMwLjQxNzYgMS42OTk5NSAyNy41NDA2IDEuNjk5OTUgMjMuOTkxNlYxMi44NTMyQzEuNjk5OTUgOS4zMDQyMSA0LjU1NDE0IDYuNDI3MiA4LjA3NDk0IDYuNDI3Mkg5Ljc3NDk1QzEwLjAwOTcgNi40MjcyIDEwLjIgNi4yMzUzOSAxMC4yIDUuOTk4OEMxMC4yIDUuNzA5NDkgMTAuMjQwNiA1LjQyOTc1IDEwLjMxNjUgNS4xNjUwNkMxMC42NzQ4IDMuOTE0NTEgMTEuODE4OSAzIDEzLjE3NSAzSDIwLjgyNUMyMi40NjggMyAyMy43OTk5IDQuMzQyNjEgMjMuNzk5OSA1Ljk5ODhWNS45OTg4WiIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjU1IiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNy42NDk5IDEwLjI4MjhDOC44MjM1MSAxMC4yODI4IDkuNzc0OSAxMS4yNDE4IDkuNzc0OSAxMi40MjQ4QzkuNzc0OSAxMy42MDc4IDguODIzNTEgMTQuNTY2OCA3LjY0OTkgMTQuNTY2OEM2LjQ3NjMgMTQuNTY2OCA1LjUyNDkgMTMuNjA3OCA1LjUyNDkgMTIuNDI0OEM1LjUyNDkgMTEuMjQxOCA2LjQ3NjMgMTAuMjgyOCA3LjY0OTkgMTAuMjgyOFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=",
5693
+ alt: ""
5694
+ })
5695
+ ],
5696
+ -1
5697
+ /* HOISTED */
5698
+ ))
5583
5699
  ]),
5584
5700
  createVNode(_component_nut_cell, {
5585
5701
  title: "\u767B\u5F55\u624B\u673A\u53F7",
@@ -5588,8 +5704,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5588
5704
  onClick: toBinding
5589
5705
  }, null, 8, ["desc"])
5590
5706
  ]),
5591
- _hoisted_7$2,
5592
- createElementVNode("div", _hoisted_8$1, [
5707
+ _cache[8] || (_cache[8] = createElementVNode(
5708
+ "div",
5709
+ { class: "user-info-tit" },
5710
+ "\u4F01\u4E1A/\u56E2\u961F",
5711
+ -1
5712
+ /* HOISTED */
5713
+ )),
5714
+ createElementVNode("div", _hoisted_5$2, [
5593
5715
  (openBlock(true), createElementBlock(
5594
5716
  Fragment,
5595
5717
  null,
@@ -5598,24 +5720,24 @@ var script$8 = /* @__PURE__ */ defineComponent({
5598
5720
  key,
5599
5721
  class: "user-info-team-item"
5600
5722
  }, [
5601
- createElementVNode("div", _hoisted_9$1, [
5723
+ createElementVNode("div", _hoisted_6$1, [
5602
5724
  item.tenantLogo ? (openBlock(), createElementBlock("img", {
5603
5725
  key: 0,
5604
5726
  class: "user-info-team-item-avatar-img",
5605
5727
  mode: "aspectFit",
5606
5728
  src: item.tenantLogo,
5607
5729
  alt: ""
5608
- }, null, 8, _hoisted_10$1)) : (openBlock(), createElementBlock("img", _hoisted_11$1))
5730
+ }, null, 8, _hoisted_7$1)) : (openBlock(), createElementBlock("img", _hoisted_8$1))
5609
5731
  ]),
5610
- createElementVNode("div", _hoisted_12$1, [
5732
+ createElementVNode("div", _hoisted_9, [
5611
5733
  createElementVNode(
5612
5734
  "div",
5613
- _hoisted_13$1,
5735
+ _hoisted_10,
5614
5736
  toDisplayString(item.tenantName),
5615
5737
  1
5616
5738
  /* TEXT */
5617
5739
  ),
5618
- item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_14$1, [
5740
+ item.appRoleInfo ? (openBlock(), createElementBlock("div", _hoisted_11, [
5619
5741
  (openBlock(true), createElementBlock(
5620
5742
  Fragment,
5621
5743
  null,
@@ -5638,7 +5760,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5638
5760
  class: "user-info-team-item-role-btn",
5639
5761
  onClick: ($event) => toShowRole(item)
5640
5762
  }, [
5641
- createTextVNode(" \u89D2\u8272\u8BE6\u60C5 "),
5763
+ _cache[5] || (_cache[5] = createTextVNode(" \u89D2\u8272\u8BE6\u60C5 ")),
5642
5764
  createElementVNode(
5643
5765
  "img",
5644
5766
  {
@@ -5650,9 +5772,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5650
5772
  2
5651
5773
  /* CLASS */
5652
5774
  )
5653
- ], 8, _hoisted_15$1)
5775
+ ], 8, _hoisted_12)
5654
5776
  ])) : createCommentVNode("v-if", true),
5655
- item.showRole ? (openBlock(), createElementBlock("div", _hoisted_16$1, [
5777
+ item.showRole ? (openBlock(), createElementBlock("div", _hoisted_13, [
5656
5778
  (openBlock(true), createElementBlock(
5657
5779
  Fragment,
5658
5780
  null,
@@ -5663,14 +5785,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5663
5785
  }, [
5664
5786
  createElementVNode(
5665
5787
  "div",
5666
- _hoisted_17,
5788
+ _hoisted_14,
5667
5789
  toDisplayString(aitem.appAbbr),
5668
5790
  1
5669
5791
  /* TEXT */
5670
5792
  ),
5671
5793
  createElementVNode(
5672
5794
  "div",
5673
- _hoisted_18,
5795
+ _hoisted_15,
5674
5796
  toDisplayString(aitem.roleName),
5675
5797
  1
5676
5798
  /* TEXT */
@@ -5681,7 +5803,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5681
5803
  /* KEYED_FRAGMENT */
5682
5804
  ))
5683
5805
  ])) : createCommentVNode("v-if", true),
5684
- createElementVNode("div", _hoisted_19, [
5806
+ createElementVNode("div", _hoisted_16, [
5685
5807
  createTextVNode(
5686
5808
  toDisplayString(item.fullName) + " ",
5687
5809
  1
@@ -5692,9 +5814,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5692
5814
  class: "user-info-team-item-user-icon",
5693
5815
  src: "https://cdn.ddjf.com/static/images/appkit/edit.png",
5694
5816
  alt: ""
5695
- }, null, 8, _hoisted_20)
5817
+ }, null, 8, _hoisted_17)
5696
5818
  ]),
5697
- createElementVNode("div", _hoisted_21, [
5819
+ createElementVNode("div", _hoisted_18, [
5698
5820
  (openBlock(true), createElementBlock(
5699
5821
  Fragment,
5700
5822
  null,
@@ -5721,7 +5843,7 @@ var script$8 = /* @__PURE__ */ defineComponent({
5721
5843
  /* KEYED_FRAGMENT */
5722
5844
  ))
5723
5845
  ]),
5724
- createElementVNode("div", _hoisted_22, [
5846
+ createElementVNode("div", _hoisted_19, [
5725
5847
  createVNode(_component_nut_button, {
5726
5848
  class: "user-info-ft-btn",
5727
5849
  style: { "width": "100%" },
@@ -5729,9 +5851,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5729
5851
  plain: "",
5730
5852
  type: "primary"
5731
5853
  }, {
5732
- default: withCtx(() => [
5854
+ default: withCtx(() => _cache[6] || (_cache[6] = [
5733
5855
  createTextVNode("\u9000\u51FA\u767B\u5F55")
5734
- ]),
5856
+ ])),
5735
5857
  _: 1
5736
5858
  /* STABLE */
5737
5859
  })
@@ -5756,9 +5878,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5756
5878
  type: "default",
5757
5879
  onClick: onUserNameCancel
5758
5880
  }, {
5759
- default: withCtx(() => [
5881
+ default: withCtx(() => _cache[9] || (_cache[9] = [
5760
5882
  createTextVNode(" \u53D6\u6D88 ")
5761
- ]),
5883
+ ])),
5762
5884
  _: 1
5763
5885
  /* STABLE */
5764
5886
  }),
@@ -5767,9 +5889,9 @@ var script$8 = /* @__PURE__ */ defineComponent({
5767
5889
  type: "primary",
5768
5890
  onClick: onUserNameOk
5769
5891
  }, {
5770
- default: withCtx(() => [
5892
+ default: withCtx(() => _cache[10] || (_cache[10] = [
5771
5893
  createTextVNode(" \u786E\u5B9A ")
5772
- ]),
5894
+ ])),
5773
5895
  _: 1
5774
5896
  /* STABLE */
5775
5897
  })
@@ -5794,14 +5916,14 @@ var script$8 = /* @__PURE__ */ defineComponent({
5794
5916
  "overlay-style": { background: "rgba(0, 0, 0, 0.9)" }
5795
5917
  }, {
5796
5918
  default: withCtx(() => [
5797
- createElementVNode("div", _hoisted_23, [
5919
+ createElementVNode("div", _hoisted_20, [
5798
5920
  userInfo.value.avatar ? (openBlock(), createElementBlock("img", {
5799
5921
  key: 0,
5800
5922
  class: "upload-avatar-popup-avatar",
5801
5923
  mode: "aspectFit",
5802
5924
  src: userInfo.value.avatar,
5803
5925
  alt: ""
5804
- }, null, 8, _hoisted_24)) : (openBlock(), createElementBlock("img", _hoisted_25)),
5926
+ }, null, 8, _hoisted_21)) : (openBlock(), createElementBlock("img", _hoisted_22)),
5805
5927
  createElementVNode("div", {
5806
5928
  class: "upload-avatar-popup-btn",
5807
5929
  onClick: toUpload
@@ -5821,15 +5943,15 @@ var script$8 = /* @__PURE__ */ defineComponent({
5821
5943
 
5822
5944
  script$8.__file = "src/user/components/UserInfo.vue";
5823
5945
 
5824
- const _hoisted_1$7 = { class: "user-binding" };
5825
- const _hoisted_2$6 = { class: "user-binding-layout" };
5826
- const _hoisted_3$4 = ["src"];
5827
- const _hoisted_4$3 = {
5946
+ const _hoisted_1$6 = { class: "user-binding" };
5947
+ const _hoisted_2$3 = { class: "user-binding-layout" };
5948
+ const _hoisted_3$2 = ["src"];
5949
+ const _hoisted_4$1 = {
5828
5950
  key: 0,
5829
5951
  class: "user-binding-layout user-binding-inputlayout",
5830
5952
  style: { "flex": "1" }
5831
5953
  };
5832
- const _hoisted_5$3 = {
5954
+ const _hoisted_5$1 = {
5833
5955
  key: 1,
5834
5956
  class: "user-binding-layout user-binding-inputlayout",
5835
5957
  style: { "flex": "1" }
@@ -5916,28 +6038,28 @@ var script$7 = /* @__PURE__ */ defineComponent({
5916
6038
  const _component_nut_form_item = FormItem;
5917
6039
  const _component_nut_button = Button;
5918
6040
  const _component_nut_form = Form;
5919
- return openBlock(), createElementBlock("div", _hoisted_1$7, [
5920
- createElementVNode("div", _hoisted_2$6, [
6041
+ return openBlock(), createElementBlock("div", _hoisted_1$6, [
6042
+ createElementVNode("div", _hoisted_2$3, [
5921
6043
  createElementVNode("img", {
5922
6044
  class: "user-binding-img",
5923
6045
  src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
5924
- }, null, 8, _hoisted_3$4),
6046
+ }, null, 8, _hoisted_3$2),
5925
6047
  createVNode(_component_nut_steps, {
5926
6048
  current: current.value,
5927
6049
  class: "user-binding-steps"
5928
6050
  }, {
5929
6051
  default: withCtx(() => [
5930
6052
  createVNode(_component_nut_step, { title: "\u8EAB\u4EFD\u8BA4\u8BC1" }, {
5931
- default: withCtx(() => [
6053
+ default: withCtx(() => _cache[4] || (_cache[4] = [
5932
6054
  createTextVNode("1")
5933
- ]),
6055
+ ])),
5934
6056
  _: 1
5935
6057
  /* STABLE */
5936
6058
  }),
5937
6059
  createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
5938
- default: withCtx(() => [
6060
+ default: withCtx(() => _cache[5] || (_cache[5] = [
5939
6061
  createTextVNode("2")
5940
- ]),
6062
+ ])),
5941
6063
  _: 1
5942
6064
  /* STABLE */
5943
6065
  })
@@ -5946,7 +6068,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
5946
6068
  /* STABLE */
5947
6069
  }, 8, ["current"])
5948
6070
  ]),
5949
- current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$3, [
6071
+ current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$1, [
5950
6072
  createVNode(_component_nut_form, null, {
5951
6073
  default: withCtx(() => [
5952
6074
  createVNode(_component_nut_form_item, {
@@ -6014,13 +6136,13 @@ var script$7 = /* @__PURE__ */ defineComponent({
6014
6136
  type: "primary",
6015
6137
  onClick: onAuth
6016
6138
  }, {
6017
- default: withCtx(() => [
6139
+ default: withCtx(() => _cache[6] || (_cache[6] = [
6018
6140
  createTextVNode("\u63D0\u4EA4")
6019
- ]),
6141
+ ])),
6020
6142
  _: 1
6021
6143
  /* STABLE */
6022
6144
  }, 8, ["disabled"])
6023
- ])) : (openBlock(), createElementBlock("div", _hoisted_5$3, [
6145
+ ])) : (openBlock(), createElementBlock("div", _hoisted_5$1, [
6024
6146
  createVNode(_component_nut_form, null, {
6025
6147
  default: withCtx(() => [
6026
6148
  createVNode(_component_nut_form_item, {
@@ -6087,9 +6209,9 @@ var script$7 = /* @__PURE__ */ defineComponent({
6087
6209
  type: "primary",
6088
6210
  onClick: onBinding
6089
6211
  }, {
6090
- default: withCtx(() => [
6212
+ default: withCtx(() => _cache[7] || (_cache[7] = [
6091
6213
  createTextVNode("\u63D0\u4EA4")
6092
- ]),
6214
+ ])),
6093
6215
  _: 1
6094
6216
  /* STABLE */
6095
6217
  }, 8, ["disabled"])
@@ -6101,19 +6223,8 @@ var script$7 = /* @__PURE__ */ defineComponent({
6101
6223
 
6102
6224
  script$7.__file = "src/user/components/UserBinding.vue";
6103
6225
 
6104
- const _hoisted_1$6 = { class: "user-binding-success" };
6105
- const _hoisted_2$5 = /* @__PURE__ */ createElementVNode(
6106
- "img",
6107
- {
6108
- class: "user-binding-success-icon",
6109
- src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6110
- alt: ""
6111
- },
6112
- null,
6113
- -1
6114
- /* HOISTED */
6115
- );
6116
- const _hoisted_3$3 = { class: "user-binding-success-info" };
6226
+ const _hoisted_1$5 = { class: "user-binding-success" };
6227
+ const _hoisted_2$2 = { class: "user-binding-success-info" };
6117
6228
  var script$6 = /* @__PURE__ */ defineComponent({
6118
6229
  __name: "UserBindingSuccess",
6119
6230
  emits: ["binding"],
@@ -6132,11 +6243,21 @@ var script$6 = /* @__PURE__ */ defineComponent({
6132
6243
  const emits = __emit;
6133
6244
  return (_ctx, _cache) => {
6134
6245
  const _component_nut_button = Button;
6135
- return openBlock(), createElementBlock("div", _hoisted_1$6, [
6136
- _hoisted_2$5,
6246
+ return openBlock(), createElementBlock("div", _hoisted_1$5, [
6247
+ _cache[2] || (_cache[2] = createElementVNode(
6248
+ "img",
6249
+ {
6250
+ class: "user-binding-success-icon",
6251
+ src: "https://cdn.ddjf.com/static/images/customer-center/phone-icon.png",
6252
+ alt: ""
6253
+ },
6254
+ null,
6255
+ -1
6256
+ /* HOISTED */
6257
+ )),
6137
6258
  createElementVNode(
6138
6259
  "div",
6139
- _hoisted_3$3,
6260
+ _hoisted_2$2,
6140
6261
  toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
6141
6262
  1
6142
6263
  /* TEXT */
@@ -6156,9 +6277,9 @@ var script$6 = /* @__PURE__ */ defineComponent({
6156
6277
  type: "primary",
6157
6278
  onClick: toBinding
6158
6279
  }, {
6159
- default: withCtx(() => [
6280
+ default: withCtx(() => _cache[1] || (_cache[1] = [
6160
6281
  createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
6161
- ]),
6282
+ ])),
6162
6283
  _: 1
6163
6284
  /* STABLE */
6164
6285
  })
@@ -6776,39 +6897,11 @@ var script$5 = {
6776
6897
  }
6777
6898
  };
6778
6899
 
6779
- const _hoisted_1$5 = { class: "bt-container" };
6780
- const _hoisted_2$4 = ["src"];
6781
- const _hoisted_3$2 = /* @__PURE__ */ createElementVNode(
6782
- "view",
6783
- { class: "line row row1" },
6784
- null,
6785
- -1
6786
- /* HOISTED */
6787
- );
6788
- const _hoisted_4$2 = /* @__PURE__ */ createElementVNode(
6789
- "view",
6790
- { class: "line row row2" },
6791
- null,
6792
- -1
6793
- /* HOISTED */
6794
- );
6795
- const _hoisted_5$2 = /* @__PURE__ */ createElementVNode(
6796
- "view",
6797
- { class: "line col col1" },
6798
- null,
6799
- -1
6800
- /* HOISTED */
6801
- );
6802
- const _hoisted_6$1 = /* @__PURE__ */ createElementVNode(
6803
- "view",
6804
- { class: "line col col2" },
6805
- null,
6806
- -1
6807
- /* HOISTED */
6808
- );
6809
- const _hoisted_7$1 = { class: "slot" };
6900
+ const _hoisted_1$4 = { class: "bt-container" };
6901
+ const _hoisted_2$1 = ["src"];
6902
+ const _hoisted_3$1 = { class: "slot" };
6810
6903
  function render(_ctx, _cache, $props, $setup, $data, $options) {
6811
- return openBlock(), createElementBlock("view", _hoisted_1$5, [
6904
+ return openBlock(), createElementBlock("view", _hoisted_1$4, [
6812
6905
  createElementVNode("view", {
6813
6906
  class: "iconfont icon-replay",
6814
6907
  onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
@@ -6828,7 +6921,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6828
6921
  onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
6829
6922
  style: normalizeStyle([$options.imageStyle]),
6830
6923
  class: "image"
6831
- }, null, 44, _hoisted_2$4),
6924
+ }, null, 44, _hoisted_2$1),
6832
6925
  $props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
6833
6926
  "view",
6834
6927
  {
@@ -6847,10 +6940,34 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6847
6940
  Fragment,
6848
6941
  { key: 0 },
6849
6942
  [
6850
- _hoisted_3$2,
6851
- _hoisted_4$2,
6852
- _hoisted_5$2,
6853
- _hoisted_6$1
6943
+ _cache[12] || (_cache[12] = createElementVNode(
6944
+ "view",
6945
+ { class: "line row row1" },
6946
+ null,
6947
+ -1
6948
+ /* HOISTED */
6949
+ )),
6950
+ _cache[13] || (_cache[13] = createElementVNode(
6951
+ "view",
6952
+ { class: "line row row2" },
6953
+ null,
6954
+ -1
6955
+ /* HOISTED */
6956
+ )),
6957
+ _cache[14] || (_cache[14] = createElementVNode(
6958
+ "view",
6959
+ { class: "line col col1" },
6960
+ null,
6961
+ -1
6962
+ /* HOISTED */
6963
+ )),
6964
+ _cache[15] || (_cache[15] = createElementVNode(
6965
+ "view",
6966
+ { class: "line col col2" },
6967
+ null,
6968
+ -1
6969
+ /* HOISTED */
6970
+ ))
6854
6971
  ],
6855
6972
  64
6856
6973
  /* STABLE_FRAGMENT */
@@ -6959,7 +7076,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6959
7076
  32
6960
7077
  /* NEED_HYDRATION */
6961
7078
  ),
6962
- createElementVNode("view", _hoisted_7$1, [
7079
+ createElementVNode("view", _hoisted_3$1, [
6963
7080
  renderSlot(_ctx.$slots, "default")
6964
7081
  ]),
6965
7082
  $options.isWeapp ? (openBlock(), createElementBlock(
@@ -6998,7 +7115,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
6998
7115
  script$5.render = render;
6999
7116
  script$5.__file = "src/components/bt-cropper/index.vue";
7000
7117
 
7001
- const _hoisted_1$4 = { class: "user-head-crop" };
7118
+ const _hoisted_1$3 = { class: "user-head-crop" };
7002
7119
  var script$4 = /* @__PURE__ */ defineComponent({
7003
7120
  __name: "UserHeadCrop",
7004
7121
  setup(__props) {
@@ -7023,7 +7140,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
7023
7140
  }
7024
7141
  }
7025
7142
  return (_ctx, _cache) => {
7026
- return openBlock(), createElementBlock("div", _hoisted_1$4, [
7143
+ return openBlock(), createElementBlock("div", _hoisted_1$3, [
7027
7144
  createVNode(script$5, {
7028
7145
  ref_key: "cropperRef",
7029
7146
  ref: cropperRef,
@@ -7052,84 +7169,20 @@ var script$4 = /* @__PURE__ */ defineComponent({
7052
7169
 
7053
7170
  script$4.__file = "src/user/components/UserHeadCrop.vue";
7054
7171
 
7055
- const _hoisted_1$3 = {
7172
+ const _hoisted_1$2 = {
7056
7173
  key: 0,
7057
7174
  class: "user-feedback-wrap"
7058
7175
  };
7059
- const _hoisted_2$3 = /* @__PURE__ */ createElementVNode(
7060
- "img",
7061
- {
7062
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7063
- style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7064
- },
7065
- null,
7066
- -1
7067
- /* HOISTED */
7068
- );
7069
- const _hoisted_3$1 = /* @__PURE__ */ createElementVNode(
7070
- "div",
7071
- { class: "user-feedback-tit" },
7072
- "\u8865\u5145\u63CF\u8FF0",
7073
- -1
7074
- /* HOISTED */
7075
- );
7076
- const _hoisted_4$1 = { class: "user-feedback-body" };
7077
- const _hoisted_5$1 = { class: "user-feedback-handle" };
7078
- const _hoisted_6 = ["src"];
7079
- const _hoisted_7 = ["src"];
7080
- const _hoisted_8 = ["onClick"];
7081
- const _hoisted_9 = /* @__PURE__ */ createElementVNode(
7082
- "img",
7083
- {
7084
- class: "user-feedback-handle-item-close-img",
7085
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7086
- },
7087
- null,
7088
- -1
7089
- /* HOISTED */
7090
- );
7091
- const _hoisted_10 = [
7092
- _hoisted_9
7093
- ];
7094
- const _hoisted_11 = /* @__PURE__ */ createElementVNode(
7095
- "img",
7096
- {
7097
- class: "user-feedback-handle-item-loading",
7098
- mode: "aspectFit",
7099
- src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7100
- alt: ""
7101
- },
7102
- null,
7103
- -1
7104
- /* HOISTED */
7105
- );
7106
- const _hoisted_12 = { class: "user-feedback-footer" };
7107
- const _hoisted_13 = {
7176
+ const _hoisted_2 = { class: "user-feedback-body" };
7177
+ const _hoisted_3 = { class: "user-feedback-handle" };
7178
+ const _hoisted_4 = ["src"];
7179
+ const _hoisted_5 = ["src"];
7180
+ const _hoisted_6 = ["onClick"];
7181
+ const _hoisted_7 = { class: "user-feedback-footer" };
7182
+ const _hoisted_8 = {
7108
7183
  key: 1,
7109
7184
  class: "user-feedback-wrap"
7110
7185
  };
7111
- const _hoisted_14 = /* @__PURE__ */ createElementVNode(
7112
- "img",
7113
- {
7114
- class: "user-feedback-success-img",
7115
- mode: "aspectFit",
7116
- src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7117
- },
7118
- null,
7119
- -1
7120
- /* HOISTED */
7121
- );
7122
- const _hoisted_15 = /* @__PURE__ */ createElementVNode(
7123
- "div",
7124
- { class: "user-feedback-success-info" },
7125
- "\u63D0\u4EA4\u6210\u529F",
7126
- -1
7127
- /* HOISTED */
7128
- );
7129
- const _hoisted_16 = [
7130
- _hoisted_14,
7131
- _hoisted_15
7132
- ];
7133
7186
  var script$3 = /* @__PURE__ */ defineComponent({
7134
7187
  __name: "UserFeedback",
7135
7188
  props: {
@@ -7302,17 +7355,32 @@ var script$3 = /* @__PURE__ */ defineComponent({
7302
7355
  class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
7303
7356
  },
7304
7357
  [
7305
- !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$3, [
7306
- _hoisted_2$3,
7307
- _hoisted_3$1,
7308
- createElementVNode("div", _hoisted_4$1, [
7358
+ !isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$2, [
7359
+ _cache[4] || (_cache[4] = createElementVNode(
7360
+ "img",
7361
+ {
7362
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback-img.png",
7363
+ style: { "width": "311px", "height": "149.5px", "margin": "0 auto" }
7364
+ },
7365
+ null,
7366
+ -1
7367
+ /* HOISTED */
7368
+ )),
7369
+ _cache[5] || (_cache[5] = createElementVNode(
7370
+ "div",
7371
+ { class: "user-feedback-tit" },
7372
+ "\u8865\u5145\u63CF\u8FF0",
7373
+ -1
7374
+ /* HOISTED */
7375
+ )),
7376
+ createElementVNode("div", _hoisted_2, [
7309
7377
  createVNode(_component_editor, {
7310
7378
  id: "myEditor",
7311
7379
  "show-img-resize": true,
7312
7380
  class: "user-feedback-editor",
7313
7381
  placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
7314
7382
  }),
7315
- createElementVNode("div", _hoisted_5$1, [
7383
+ createElementVNode("div", _hoisted_3, [
7316
7384
  (openBlock(true), createElementBlock(
7317
7385
  Fragment,
7318
7386
  null,
@@ -7330,20 +7398,42 @@ var script$3 = /* @__PURE__ */ defineComponent({
7330
7398
  class: "user-feedback-handle-item-img",
7331
7399
  mode: "aspectFit",
7332
7400
  src: item.url
7333
- }, null, 8, _hoisted_6)) : (openBlock(), createElementBlock("video", {
7401
+ }, null, 8, _hoisted_4)) : (openBlock(), createElementBlock("video", {
7334
7402
  key: 1,
7335
7403
  class: "user-feedback-handle-item-img",
7336
7404
  src: item.url
7337
- }, null, 8, _hoisted_7)),
7405
+ }, null, 8, _hoisted_5)),
7338
7406
  createElementVNode("div", {
7339
7407
  class: "user-feedback-handle-item-close",
7340
7408
  onClick: ($event) => onDelete(key)
7341
- }, [..._hoisted_10], 8, _hoisted_8)
7409
+ }, [..._cache[0] || (_cache[0] = [
7410
+ createElementVNode(
7411
+ "img",
7412
+ {
7413
+ class: "user-feedback-handle-item-close-img",
7414
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7415
+ },
7416
+ null,
7417
+ -1
7418
+ /* HOISTED */
7419
+ )
7420
+ ])], 8, _hoisted_6)
7342
7421
  ],
7343
7422
  64
7344
7423
  /* STABLE_FRAGMENT */
7345
7424
  )) : createCommentVNode("v-if", true),
7346
- _hoisted_11
7425
+ _cache[1] || (_cache[1] = createElementVNode(
7426
+ "img",
7427
+ {
7428
+ class: "user-feedback-handle-item-loading",
7429
+ mode: "aspectFit",
7430
+ src: "https://cdn.ddjf.com/static/images/customer-center/loading.png",
7431
+ alt: ""
7432
+ },
7433
+ null,
7434
+ -1
7435
+ /* HOISTED */
7436
+ ))
7347
7437
  ]);
7348
7438
  }),
7349
7439
  128
@@ -7355,16 +7445,16 @@ var script$3 = /* @__PURE__ */ defineComponent({
7355
7445
  }, "+")
7356
7446
  ])
7357
7447
  ]),
7358
- createElementVNode("div", _hoisted_12, [
7448
+ createElementVNode("div", _hoisted_7, [
7359
7449
  createVNode(_component_nut_button, {
7360
7450
  class: "user-feedback-footer-btn",
7361
7451
  plain: "",
7362
7452
  type: "primary",
7363
7453
  onClick: onCancel
7364
7454
  }, {
7365
- default: withCtx(() => [
7455
+ default: withCtx(() => _cache[2] || (_cache[2] = [
7366
7456
  createTextVNode("\u6700\u5C0F\u5316")
7367
- ]),
7457
+ ])),
7368
7458
  _: 1
7369
7459
  /* STABLE */
7370
7460
  }),
@@ -7373,14 +7463,33 @@ var script$3 = /* @__PURE__ */ defineComponent({
7373
7463
  type: "primary",
7374
7464
  onClick: onOk
7375
7465
  }, {
7376
- default: withCtx(() => [
7466
+ default: withCtx(() => _cache[3] || (_cache[3] = [
7377
7467
  createTextVNode("\u53CD\u9988")
7378
- ]),
7468
+ ])),
7379
7469
  _: 1
7380
7470
  /* STABLE */
7381
7471
  })
7382
7472
  ])
7383
- ])) : (openBlock(), createElementBlock("div", _hoisted_13, [..._hoisted_16]))
7473
+ ])) : (openBlock(), createElementBlock("div", _hoisted_8, _cache[6] || (_cache[6] = [
7474
+ createElementVNode(
7475
+ "img",
7476
+ {
7477
+ class: "user-feedback-success-img",
7478
+ mode: "aspectFit",
7479
+ src: "https://cdn.ddjf.com/static/images/customer-center/success-icon.png"
7480
+ },
7481
+ null,
7482
+ -1
7483
+ /* HOISTED */
7484
+ ),
7485
+ createElementVNode(
7486
+ "div",
7487
+ { class: "user-feedback-success-info" },
7488
+ "\u63D0\u4EA4\u6210\u529F",
7489
+ -1
7490
+ /* HOISTED */
7491
+ )
7492
+ ])))
7384
7493
  ],
7385
7494
  2
7386
7495
  /* CLASS */
@@ -7474,41 +7583,6 @@ function useDragBox() {
7474
7583
  };
7475
7584
  }
7476
7585
 
7477
- const _hoisted_1$2 = /* @__PURE__ */ createElementVNode(
7478
- "img",
7479
- {
7480
- class: "user-feedback-entry-icon",
7481
- mode: "aspectFit",
7482
- src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7483
- },
7484
- null,
7485
- -1
7486
- /* HOISTED */
7487
- );
7488
- const _hoisted_2$2 = /* @__PURE__ */ createElementVNode(
7489
- "div",
7490
- null,
7491
- "\u53CD\u9988",
7492
- -1
7493
- /* HOISTED */
7494
- );
7495
- const _hoisted_3 = [
7496
- _hoisted_1$2,
7497
- _hoisted_2$2
7498
- ];
7499
- const _hoisted_4 = /* @__PURE__ */ createElementVNode(
7500
- "img",
7501
- {
7502
- class: "user-feedback-entry-close-img",
7503
- src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7504
- },
7505
- null,
7506
- -1
7507
- /* HOISTED */
7508
- );
7509
- const _hoisted_5 = [
7510
- _hoisted_4
7511
- ];
7512
7586
  var script$2 = /* @__PURE__ */ defineComponent({
7513
7587
  __name: "UserFeedbackEntry",
7514
7588
  props: {
@@ -7596,7 +7670,26 @@ var script$2 = /* @__PURE__ */ defineComponent({
7596
7670
  class: "user-feedback-entry",
7597
7671
  onClick: onJump
7598
7672
  },
7599
- [..._hoisted_3],
7673
+ _cache[2] || (_cache[2] = [
7674
+ createElementVNode(
7675
+ "img",
7676
+ {
7677
+ class: "user-feedback-entry-icon",
7678
+ mode: "aspectFit",
7679
+ src: "https://cdn.ddjf.com/static/images/customer-center/feedback.png"
7680
+ },
7681
+ null,
7682
+ -1
7683
+ /* HOISTED */
7684
+ ),
7685
+ createElementVNode(
7686
+ "div",
7687
+ null,
7688
+ "\u53CD\u9988",
7689
+ -1
7690
+ /* HOISTED */
7691
+ )
7692
+ ]),
7600
7693
  36
7601
7694
  /* STYLE, NEED_HYDRATION */
7602
7695
  )) : (openBlock(), createElementBlock(
@@ -7620,7 +7713,18 @@ var script$2 = /* @__PURE__ */ defineComponent({
7620
7713
  createElementVNode("div", {
7621
7714
  class: "user-feedback-entry-close",
7622
7715
  onClick: onClose
7623
- }, [..._hoisted_5])
7716
+ }, _cache[3] || (_cache[3] = [
7717
+ createElementVNode(
7718
+ "img",
7719
+ {
7720
+ class: "user-feedback-entry-close-img",
7721
+ src: "https://cdn.ddjf.com/static/images/customer-center/close-filled.png"
7722
+ },
7723
+ null,
7724
+ -1
7725
+ /* HOISTED */
7726
+ )
7727
+ ]))
7624
7728
  ],
7625
7729
  36
7626
7730
  /* STYLE, NEED_HYDRATION */
@@ -7631,17 +7735,7 @@ var script$2 = /* @__PURE__ */ defineComponent({
7631
7735
 
7632
7736
  script$2.__file = "src/user/components/UserFeedbackEntry.vue";
7633
7737
 
7634
- const _hoisted_1$1 = /* @__PURE__ */ createElementVNode(
7635
- "img",
7636
- {
7637
- class: "login-setting-img",
7638
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7639
- },
7640
- null,
7641
- -1
7642
- /* HOISTED */
7643
- );
7644
- const _hoisted_2$1 = { class: "login-setting-text" };
7738
+ const _hoisted_1$1 = { class: "login-setting-text" };
7645
7739
  var script$1 = /* @__PURE__ */ defineComponent({
7646
7740
  __name: "LoginSetting",
7647
7741
  props: {
@@ -7702,10 +7796,19 @@ var script$1 = /* @__PURE__ */ defineComponent({
7702
7796
  style: normalizeStyle(style.value)
7703
7797
  },
7704
7798
  [
7705
- _hoisted_1$1,
7799
+ _cache[0] || (_cache[0] = createElementVNode(
7800
+ "img",
7801
+ {
7802
+ class: "login-setting-img",
7803
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7804
+ },
7805
+ null,
7806
+ -1
7807
+ /* HOISTED */
7808
+ )),
7706
7809
  createElementVNode(
7707
7810
  "div",
7708
- _hoisted_2$1,
7811
+ _hoisted_1$1,
7709
7812
  toDisplayString(loginRuleTip.value),
7710
7813
  1
7711
7814
  /* TEXT */
@@ -7720,17 +7823,7 @@ var script$1 = /* @__PURE__ */ defineComponent({
7720
7823
 
7721
7824
  script$1.__file = "src/user/components/LoginSetting.vue";
7722
7825
 
7723
- const _hoisted_1 = /* @__PURE__ */ createElementVNode(
7724
- "img",
7725
- {
7726
- class: "user-resource-empty-img",
7727
- src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7728
- },
7729
- null,
7730
- -1
7731
- /* HOISTED */
7732
- );
7733
- const _hoisted_2 = { class: "user-resource-empty-text" };
7826
+ const _hoisted_1 = { class: "user-resource-empty-text" };
7734
7827
  var script = /* @__PURE__ */ defineComponent({
7735
7828
  __name: "UserResourceEmpty",
7736
7829
  props: {
@@ -7761,10 +7854,19 @@ var script = /* @__PURE__ */ defineComponent({
7761
7854
  style: normalizeStyle(style.value)
7762
7855
  },
7763
7856
  [
7764
- _hoisted_1,
7857
+ _cache[0] || (_cache[0] = createElementVNode(
7858
+ "img",
7859
+ {
7860
+ class: "user-resource-empty-img",
7861
+ src: "https://cdn.ddjf.com/static/images/nutshell/empty-permission.png"
7862
+ },
7863
+ null,
7864
+ -1
7865
+ /* HOISTED */
7866
+ )),
7765
7867
  createElementVNode(
7766
7868
  "div",
7767
- _hoisted_2,
7869
+ _hoisted_1,
7768
7870
  " \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 ",
7769
7871
  1
7770
7872
  /* TEXT */
@@ -7832,4 +7934,4 @@ const AppKit = {
7832
7934
  }
7833
7935
  };
7834
7936
 
7835
- export { script$p as AccountView, script$I as AmountPicker, script$G as AppDrawer, script$F as AppVerify, script$v as BalanceCard, script$o as BalanceReminder, script$n as DateRange, script$D as DeviceVersion, script$l as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$B as OcrBusinessLicense, script$C as OcrIcon, script$H as PageHeader, script$y as RechargeResult, script$A as RechargeView, script$g as SelfRegistration, script$w as TradeView, script$z as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useSafeArea, useTabbar, useUpload, useValidator };
7937
+ export { script$p as AccountView, script$I as AmountPicker, script$G as AppDrawer, script$F as AppVerify, script$v as BalanceCard, script$o as BalanceReminder, script$n as DateRange, script$D as DeviceVersion, script$l as ListFilter, script$1 as LoginSetting, script$e as NoticeBanner, script$d as NoticeEntry, script$b as NoticeList, script$B as OcrBusinessLicense, script$C as OcrIcon, script$H as PageHeader, script$y as RechargeResult, script$A as RechargeView, script$g as SelfRegistration, script$w as TradeView, script$z as UserAgreement, script$7 as UserBinding, script$6 as UserBindingSuccess, script$a as UserEntry, script$3 as UserFeedback, script$2 as UserFeedbackEntry, script$4 as UserHeadCrop, script$8 as UserInfo, script as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, generateUniqueId, requestPayment$2 as requestPayment, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useLogger, useSafeArea, useTabbar, useUpload, useValidator };