@uxda/appkit 4.2.74 → 4.2.76
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.
- package/dist/appkit.css +114 -1
- package/dist/assets/asset-3B_CoPto +1 -0
- package/dist/index.js +1013 -557
- package/package.json +1 -1
- package/rollup.config.mjs +20 -10
- package/src/balance/components/AccountView.vue +2 -0
- package/src/balance/components/DateFilter.vue +16 -7
- package/src/balance/components/DateRange.vue +51 -20
- package/src/balance/components/PromoterCard.vue +2 -0
- package/src/index.ts +1 -0
- package/src/scenarios/components/SharePoster.vue +364 -0
- package/src/scenarios/components/image/share-poster/1752718942546.png +0 -0
- package/src/scenarios/components/index.ts +3 -0
- package/src/scenarios/components/poster-paste.vue +93 -0
- package/src/scenarios/components/share-poster.md +273 -0
- package/src/scenarios/index.ts +1 -0
- package/src/utils/utils.ts +28 -0
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GridItem, Grid, Popup, ActionSheet, Checkbox, Button, Dialog, DatePicker, Radio, RadioGroup, FormItem, Form, Skeleton, Cell, Input, Step, Steps } from '@nutui/nutui-taro';
|
|
2
2
|
import '@nutui/nutui-taro/dist/packages/button/style/css';
|
|
3
3
|
import '@nutui/nutui-taro/dist/packages/checkbox/style/css';
|
|
4
|
-
import { defineComponent, reactive,
|
|
4
|
+
import { defineComponent, reactive, openBlock, createBlock, withCtx, createElementBlock, Fragment, renderList, normalizeClass, createElementVNode, toDisplayString, createTextVNode, ref, computed, onUnmounted, createCommentVNode, renderSlot, createVNode, normalizeStyle, unref, isRef, onMounted, createStaticVNode, watch, withDirectives, vShow, mergeModels, useModel, resolveComponent, vModelText, watchPostEffect, withModifiers } from 'vue';
|
|
5
5
|
import '@nutui/nutui-taro/dist/packages/grid/style/css';
|
|
6
6
|
import '@nutui/nutui-taro/dist/packages/griditem/style/css';
|
|
7
7
|
import Taro, { showModal, getSystemInfoSync, getMenuButtonBoundingClientRect, uploadFile, request as request$1, showToast, chooseMedia, chooseMessageFile, showLoading, hideLoading, useRouter, useDidShow, getStorageSync } from '@tarojs/taro';
|
|
@@ -15,7 +15,7 @@ import '@nutui/nutui-taro/dist/packages/dialog/style/css';
|
|
|
15
15
|
import '@nutui/nutui-taro/dist/packages/datepicker/style/css';
|
|
16
16
|
import dayjs from 'dayjs';
|
|
17
17
|
import groupBy from 'lodash-es/groupBy';
|
|
18
|
-
import { ScrollView } from '@tarojs/components';
|
|
18
|
+
import { ScrollView, Swiper, SwiperItem } from '@tarojs/components';
|
|
19
19
|
import { IconFont } from '@nutui/icons-vue-taro';
|
|
20
20
|
import '@nutui/nutui-taro/dist/packages/form/style/css';
|
|
21
21
|
import '@nutui/nutui-taro/dist/packages/formitem/style/css';
|
|
@@ -27,9 +27,9 @@ import '@nutui/nutui-taro/dist/packages/skeleton/style/css';
|
|
|
27
27
|
import '@nutui/nutui-taro/dist/packages/steps/style/css';
|
|
28
28
|
import '@nutui/nutui-taro/dist/packages/step/style/css';
|
|
29
29
|
|
|
30
|
-
const _hoisted_1$
|
|
31
|
-
const _hoisted_2$
|
|
32
|
-
var script$
|
|
30
|
+
const _hoisted_1$F = { class: "token-line number" };
|
|
31
|
+
const _hoisted_2$r = { class: "number" };
|
|
32
|
+
var script$L = /* @__PURE__ */ defineComponent({
|
|
33
33
|
__name: "AmountPicker",
|
|
34
34
|
props: {
|
|
35
35
|
items: { type: Array, required: true, default: () => [] },
|
|
@@ -67,7 +67,7 @@ var script$J = /* @__PURE__ */ defineComponent({
|
|
|
67
67
|
default: withCtx(() => [
|
|
68
68
|
createElementVNode(
|
|
69
69
|
"h4",
|
|
70
|
-
_hoisted_1$
|
|
70
|
+
_hoisted_1$F,
|
|
71
71
|
toDisplayString(amount.token),
|
|
72
72
|
1
|
|
73
73
|
/* TEXT */
|
|
@@ -76,7 +76,7 @@ var script$J = /* @__PURE__ */ defineComponent({
|
|
|
76
76
|
_cache[0] || (_cache[0] = createTextVNode("\xA5")),
|
|
77
77
|
createElementVNode(
|
|
78
78
|
"span",
|
|
79
|
-
_hoisted_2$
|
|
79
|
+
_hoisted_2$r,
|
|
80
80
|
toDisplayString(amount.amount),
|
|
81
81
|
1
|
|
82
82
|
/* TEXT */
|
|
@@ -98,7 +98,7 @@ var script$J = /* @__PURE__ */ defineComponent({
|
|
|
98
98
|
}
|
|
99
99
|
});
|
|
100
100
|
|
|
101
|
-
script$
|
|
101
|
+
script$L.__file = "src/payment/components/AmountPicker.vue";
|
|
102
102
|
|
|
103
103
|
const getSdkConfig = (appCode, url) => {
|
|
104
104
|
return new Promise((resolve, reject) => {
|
|
@@ -504,11 +504,11 @@ function useLogger(options) {
|
|
|
504
504
|
};
|
|
505
505
|
}
|
|
506
506
|
|
|
507
|
-
const _hoisted_1$
|
|
507
|
+
const _hoisted_1$E = {
|
|
508
508
|
key: 0,
|
|
509
509
|
class: "page-title"
|
|
510
510
|
};
|
|
511
|
-
var script$
|
|
511
|
+
var script$K = /* @__PURE__ */ defineComponent({
|
|
512
512
|
__name: "PageHeader",
|
|
513
513
|
props: {
|
|
514
514
|
title: { type: String, required: false, default: "" },
|
|
@@ -538,7 +538,7 @@ var script$I = /* @__PURE__ */ defineComponent({
|
|
|
538
538
|
[
|
|
539
539
|
_ctx.title ? (openBlock(), createElementBlock(
|
|
540
540
|
"h1",
|
|
541
|
-
_hoisted_1$
|
|
541
|
+
_hoisted_1$E,
|
|
542
542
|
toDisplayString(_ctx.title),
|
|
543
543
|
1
|
|
544
544
|
/* TEXT */
|
|
@@ -556,10 +556,10 @@ var script$I = /* @__PURE__ */ defineComponent({
|
|
|
556
556
|
}
|
|
557
557
|
});
|
|
558
558
|
|
|
559
|
-
script$
|
|
559
|
+
script$K.__file = "src/shared/components/PageHeader.vue";
|
|
560
560
|
|
|
561
|
-
const _hoisted_1$
|
|
562
|
-
var script$
|
|
561
|
+
const _hoisted_1$D = { class: "drawer-body" };
|
|
562
|
+
var script$J = /* @__PURE__ */ defineComponent({
|
|
563
563
|
__name: "AppDrawer",
|
|
564
564
|
props: {
|
|
565
565
|
modelValue: { type: Boolean, required: true },
|
|
@@ -583,12 +583,12 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
583
583
|
"onUpdate:visible": onVisibleChange
|
|
584
584
|
}, {
|
|
585
585
|
default: withCtx(() => [
|
|
586
|
-
createVNode(script$
|
|
586
|
+
createVNode(script$K, {
|
|
587
587
|
title: _ctx.title,
|
|
588
588
|
style: normalizeStyle(unref(Taro).getEnv() !== "WEB" ? "" : "--height: 40px"),
|
|
589
589
|
onClose: onPageHeaderClose
|
|
590
590
|
}, null, 8, ["title", "style"]),
|
|
591
|
-
createElementVNode("div", _hoisted_1$
|
|
591
|
+
createElementVNode("div", _hoisted_1$D, [
|
|
592
592
|
renderSlot(_ctx.$slots, "default")
|
|
593
593
|
])
|
|
594
594
|
]),
|
|
@@ -599,18 +599,18 @@ var script$H = /* @__PURE__ */ defineComponent({
|
|
|
599
599
|
}
|
|
600
600
|
});
|
|
601
601
|
|
|
602
|
-
script$
|
|
602
|
+
script$J.__file = "src/shared/components/AppDrawer.vue";
|
|
603
603
|
|
|
604
|
-
const _hoisted_1$
|
|
605
|
-
const _hoisted_2$
|
|
606
|
-
const _hoisted_3$
|
|
607
|
-
const _hoisted_4$
|
|
608
|
-
const _hoisted_5$
|
|
604
|
+
const _hoisted_1$C = { class: "app-verify column" };
|
|
605
|
+
const _hoisted_2$q = { class: "caption" };
|
|
606
|
+
const _hoisted_3$k = { class: "number" };
|
|
607
|
+
const _hoisted_4$g = { class: "form-btn" };
|
|
608
|
+
const _hoisted_5$d = {
|
|
609
609
|
key: 1,
|
|
610
610
|
class: "caption"
|
|
611
611
|
};
|
|
612
|
-
const _hoisted_6$
|
|
613
|
-
var script$
|
|
612
|
+
const _hoisted_6$7 = { class: "row buttons" };
|
|
613
|
+
var script$I = /* @__PURE__ */ defineComponent({
|
|
614
614
|
__name: "AppVerify",
|
|
615
615
|
props: {
|
|
616
616
|
phone: { type: String, required: true },
|
|
@@ -642,7 +642,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
642
642
|
};
|
|
643
643
|
const props = __props;
|
|
644
644
|
return (_ctx, _cache) => {
|
|
645
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
645
|
+
return openBlock(), createElementBlock("div", _hoisted_1$C, [
|
|
646
646
|
createElementVNode(
|
|
647
647
|
"h2",
|
|
648
648
|
null,
|
|
@@ -652,14 +652,14 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
652
652
|
),
|
|
653
653
|
createElementVNode(
|
|
654
654
|
"p",
|
|
655
|
-
_hoisted_2$
|
|
655
|
+
_hoisted_2$q,
|
|
656
656
|
toDisplayString(_ctx.message || "\u77ED\u4FE1\u5C06\u53D1\u9001\u81F3\u8D26\u53F7\u7ED1\u5B9A\u624B\u673A\u53F7"),
|
|
657
657
|
1
|
|
658
658
|
/* TEXT */
|
|
659
659
|
),
|
|
660
660
|
createElementVNode(
|
|
661
661
|
"p",
|
|
662
|
-
_hoisted_3$
|
|
662
|
+
_hoisted_3$k,
|
|
663
663
|
toDisplayString(_ctx.phone),
|
|
664
664
|
1
|
|
665
665
|
/* TEXT */
|
|
@@ -684,7 +684,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
684
684
|
method: (value) => value.length === 6
|
|
685
685
|
}]
|
|
686
686
|
}, null, 8, ["modelValue", "rules"]),
|
|
687
|
-
createElementVNode("div", _hoisted_4$
|
|
687
|
+
createElementVNode("div", _hoisted_4$g, [
|
|
688
688
|
!sent.value ? (openBlock(), createBlock(unref(NsButton), {
|
|
689
689
|
key: 0,
|
|
690
690
|
size: "xs",
|
|
@@ -695,7 +695,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
695
695
|
})) : createCommentVNode("v-if", true),
|
|
696
696
|
sent.value ? (openBlock(), createElementBlock(
|
|
697
697
|
"div",
|
|
698
|
-
_hoisted_5$
|
|
698
|
+
_hoisted_5$d,
|
|
699
699
|
toDisplayString(countdown.value) + "s\u540E\u91CD\u65B0\u53D1\u9001",
|
|
700
700
|
1
|
|
701
701
|
/* TEXT */
|
|
@@ -705,7 +705,7 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
705
705
|
_: 1
|
|
706
706
|
/* STABLE */
|
|
707
707
|
}, 8, ["modelValue"]),
|
|
708
|
-
createElementVNode("div", _hoisted_6$
|
|
708
|
+
createElementVNode("div", _hoisted_6$7, [
|
|
709
709
|
createVNode(unref(NsButton), {
|
|
710
710
|
class: "cancel-btn",
|
|
711
711
|
onClick: _cache[2] || (_cache[2] = ($event) => emits("cancel"))
|
|
@@ -713,8 +713,8 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
713
713
|
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
714
714
|
createTextVNode("\u53D6\u6D88")
|
|
715
715
|
])),
|
|
716
|
-
_: 1
|
|
717
|
-
|
|
716
|
+
_: 1,
|
|
717
|
+
__: [3]
|
|
718
718
|
}),
|
|
719
719
|
createVNode(unref(NsButton), {
|
|
720
720
|
color: "primary",
|
|
@@ -723,8 +723,8 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
723
723
|
default: withCtx(() => _cache[4] || (_cache[4] = [
|
|
724
724
|
createTextVNode("\u786E\u8BA4")
|
|
725
725
|
])),
|
|
726
|
-
_: 1
|
|
727
|
-
|
|
726
|
+
_: 1,
|
|
727
|
+
__: [4]
|
|
728
728
|
})
|
|
729
729
|
])
|
|
730
730
|
]);
|
|
@@ -732,10 +732,10 @@ var script$G = /* @__PURE__ */ defineComponent({
|
|
|
732
732
|
}
|
|
733
733
|
});
|
|
734
734
|
|
|
735
|
-
script$
|
|
735
|
+
script$I.__file = "src/shared/components/AppVerify.vue";
|
|
736
736
|
|
|
737
|
-
const _hoisted_1$
|
|
738
|
-
var script$
|
|
737
|
+
const _hoisted_1$B = { key: 0 };
|
|
738
|
+
var script$H = /* @__PURE__ */ defineComponent({
|
|
739
739
|
__name: "index",
|
|
740
740
|
props: {
|
|
741
741
|
text: { type: String, required: false },
|
|
@@ -766,7 +766,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
766
766
|
}, [
|
|
767
767
|
_ctx.text ? (openBlock(), createElementBlock(
|
|
768
768
|
"span",
|
|
769
|
-
_hoisted_1$
|
|
769
|
+
_hoisted_1$B,
|
|
770
770
|
toDisplayString(_ctx.text),
|
|
771
771
|
1
|
|
772
772
|
/* TEXT */
|
|
@@ -786,7 +786,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
786
786
|
},
|
|
787
787
|
null,
|
|
788
788
|
-1
|
|
789
|
-
/*
|
|
789
|
+
/* CACHED */
|
|
790
790
|
)
|
|
791
791
|
]))) : createCommentVNode("v-if", true)
|
|
792
792
|
],
|
|
@@ -797,7 +797,7 @@ var script$F = /* @__PURE__ */ defineComponent({
|
|
|
797
797
|
}
|
|
798
798
|
});
|
|
799
799
|
|
|
800
|
-
script$
|
|
800
|
+
script$H.__file = "src/components/dd-notice-bar/index.vue";
|
|
801
801
|
|
|
802
802
|
const typeMappings = {
|
|
803
803
|
CZ: "\u5145\u503C",
|
|
@@ -993,7 +993,7 @@ function useHttp$3() {
|
|
|
993
993
|
return $http;
|
|
994
994
|
}
|
|
995
995
|
|
|
996
|
-
var script$
|
|
996
|
+
var script$G = /* @__PURE__ */ defineComponent({
|
|
997
997
|
__name: "DeviceVersion",
|
|
998
998
|
props: {
|
|
999
999
|
versions: { type: String, required: false, default: "{}" }
|
|
@@ -1040,7 +1040,7 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
1040
1040
|
}
|
|
1041
1041
|
});
|
|
1042
1042
|
return (_ctx, _cache) => {
|
|
1043
|
-
return showAlert.value ? (openBlock(), createBlock(script$
|
|
1043
|
+
return showAlert.value ? (openBlock(), createBlock(script$H, {
|
|
1044
1044
|
key: 0,
|
|
1045
1045
|
showClose: "",
|
|
1046
1046
|
style: normalizeStyle(topStype.value),
|
|
@@ -1051,9 +1051,9 @@ var script$E = /* @__PURE__ */ defineComponent({
|
|
|
1051
1051
|
}
|
|
1052
1052
|
});
|
|
1053
1053
|
|
|
1054
|
-
script$
|
|
1054
|
+
script$G.__file = "src/shared/components/DeviceVersion.vue";
|
|
1055
1055
|
|
|
1056
|
-
var script$
|
|
1056
|
+
var script$F = /* @__PURE__ */ defineComponent({
|
|
1057
1057
|
__name: "OcrIcon",
|
|
1058
1058
|
props: {
|
|
1059
1059
|
disabled: { type: Boolean, required: false, default: false },
|
|
@@ -1244,9 +1244,9 @@ var script$D = /* @__PURE__ */ defineComponent({
|
|
|
1244
1244
|
}
|
|
1245
1245
|
});
|
|
1246
1246
|
|
|
1247
|
-
script$
|
|
1247
|
+
script$F.__file = "src/shared/components/OcrIcon.vue";
|
|
1248
1248
|
|
|
1249
|
-
var script$
|
|
1249
|
+
var script$E = /* @__PURE__ */ defineComponent({
|
|
1250
1250
|
__name: "OcrBusinessLicense",
|
|
1251
1251
|
props: {
|
|
1252
1252
|
disabled: { type: Boolean, required: true }
|
|
@@ -1359,7 +1359,7 @@ var script$C = /* @__PURE__ */ defineComponent({
|
|
|
1359
1359
|
}
|
|
1360
1360
|
});
|
|
1361
1361
|
|
|
1362
|
-
script$
|
|
1362
|
+
script$E.__file = "src/shared/components/OcrBusinessLicense.vue";
|
|
1363
1363
|
|
|
1364
1364
|
var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
|
|
1365
1365
|
HttpMethod2["get"] = "GET";
|
|
@@ -1744,11 +1744,11 @@ function isWechat() {
|
|
|
1744
1744
|
return ua.includes("micromessenger");
|
|
1745
1745
|
}
|
|
1746
1746
|
|
|
1747
|
-
const _hoisted_1$
|
|
1748
|
-
const _hoisted_2$
|
|
1749
|
-
const _hoisted_3$
|
|
1750
|
-
const _hoisted_4$
|
|
1751
|
-
var script$
|
|
1747
|
+
const _hoisted_1$A = { class: "view recharge-view" };
|
|
1748
|
+
const _hoisted_2$p = { class: "flex-grow" };
|
|
1749
|
+
const _hoisted_3$j = { class: "amount-footer" };
|
|
1750
|
+
const _hoisted_4$f = { class: "agreement" };
|
|
1751
|
+
var script$D = /* @__PURE__ */ defineComponent({
|
|
1752
1752
|
__name: "RechargeView",
|
|
1753
1753
|
props: {
|
|
1754
1754
|
app: { type: String, required: true },
|
|
@@ -1840,16 +1840,16 @@ var script$B = /* @__PURE__ */ defineComponent({
|
|
|
1840
1840
|
return (_ctx, _cache) => {
|
|
1841
1841
|
const _component_nut_checkbox = Checkbox;
|
|
1842
1842
|
const _component_nut_button = Button;
|
|
1843
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1844
|
-
createElementVNode("view", _hoisted_2$
|
|
1845
|
-
createVNode(script$
|
|
1843
|
+
return openBlock(), createElementBlock("view", _hoisted_1$A, [
|
|
1844
|
+
createElementVNode("view", _hoisted_2$p, [
|
|
1845
|
+
createVNode(script$L, {
|
|
1846
1846
|
items: amounts.value,
|
|
1847
1847
|
selected: state.selected,
|
|
1848
1848
|
onChange: onAmountSelect
|
|
1849
1849
|
}, null, 8, ["items", "selected"])
|
|
1850
1850
|
]),
|
|
1851
|
-
createElementVNode("view", _hoisted_3$
|
|
1852
|
-
createElementVNode("view", _hoisted_4$
|
|
1851
|
+
createElementVNode("view", _hoisted_3$j, [
|
|
1852
|
+
createElementVNode("view", _hoisted_4$f, [
|
|
1853
1853
|
createVNode(_component_nut_checkbox, {
|
|
1854
1854
|
modelValue: state.agreed,
|
|
1855
1855
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => state.agreed = $event)
|
|
@@ -1861,8 +1861,8 @@ var script$B = /* @__PURE__ */ defineComponent({
|
|
|
1861
1861
|
onClick: onAgreementLinkClick
|
|
1862
1862
|
}, "\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B")
|
|
1863
1863
|
]),
|
|
1864
|
-
_: 1
|
|
1865
|
-
|
|
1864
|
+
_: 1,
|
|
1865
|
+
__: [1]
|
|
1866
1866
|
}, 8, ["modelValue"])
|
|
1867
1867
|
]),
|
|
1868
1868
|
createVNode(_component_nut_button, {
|
|
@@ -1875,8 +1875,8 @@ var script$B = /* @__PURE__ */ defineComponent({
|
|
|
1875
1875
|
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
1876
1876
|
createTextVNode("\u7ACB\u5373\u5145\u503C")
|
|
1877
1877
|
])),
|
|
1878
|
-
_: 1
|
|
1879
|
-
|
|
1878
|
+
_: 1,
|
|
1879
|
+
__: [2]
|
|
1880
1880
|
}, 8, ["loading"])
|
|
1881
1881
|
])
|
|
1882
1882
|
]);
|
|
@@ -1884,31 +1884,31 @@ var script$B = /* @__PURE__ */ defineComponent({
|
|
|
1884
1884
|
}
|
|
1885
1885
|
});
|
|
1886
1886
|
|
|
1887
|
-
script$
|
|
1887
|
+
script$D.__file = "src/payment/components/RechargeView.vue";
|
|
1888
1888
|
|
|
1889
|
-
const _hoisted_1$
|
|
1889
|
+
const _hoisted_1$z = { class: "agreement-doc" };
|
|
1890
1890
|
function render$2(_ctx, _cache) {
|
|
1891
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
1891
|
+
return openBlock(), createElementBlock("view", _hoisted_1$z, _cache[0] || (_cache[0] = [
|
|
1892
1892
|
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)
|
|
1893
1893
|
]));
|
|
1894
1894
|
}
|
|
1895
1895
|
|
|
1896
|
-
/* unplugin-vue-components disabled */const script$
|
|
1896
|
+
/* unplugin-vue-components disabled */const script$C = {};
|
|
1897
1897
|
|
|
1898
|
-
script$
|
|
1899
|
-
script$
|
|
1898
|
+
script$C.render = render$2;
|
|
1899
|
+
script$C.__file = "src/payment/components/UserAgreement.vue";
|
|
1900
1900
|
|
|
1901
|
-
const _hoisted_1$
|
|
1902
|
-
const _hoisted_2$
|
|
1903
|
-
const _hoisted_3$
|
|
1901
|
+
const _hoisted_1$y = { class: "recharge-result" };
|
|
1902
|
+
const _hoisted_2$o = { class: "content" };
|
|
1903
|
+
const _hoisted_3$i = {
|
|
1904
1904
|
key: 0,
|
|
1905
1905
|
class: "caption"
|
|
1906
1906
|
};
|
|
1907
|
-
const _hoisted_4$
|
|
1907
|
+
const _hoisted_4$e = {
|
|
1908
1908
|
key: 1,
|
|
1909
1909
|
class: "caption"
|
|
1910
1910
|
};
|
|
1911
|
-
var script$
|
|
1911
|
+
var script$B = /* @__PURE__ */ defineComponent({
|
|
1912
1912
|
__name: "RechargeResult",
|
|
1913
1913
|
props: {
|
|
1914
1914
|
type: { type: String, required: true, default: "recharge" },
|
|
@@ -1926,14 +1926,14 @@ var script$z = /* @__PURE__ */ defineComponent({
|
|
|
1926
1926
|
}
|
|
1927
1927
|
return (_ctx, _cache) => {
|
|
1928
1928
|
const _component_nut_button = Button;
|
|
1929
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
1930
|
-
createElementVNode("div", _hoisted_2$
|
|
1929
|
+
return openBlock(), createElementBlock("div", _hoisted_1$y, [
|
|
1930
|
+
createElementVNode("div", _hoisted_2$o, [
|
|
1931
1931
|
_cache[1] || (_cache[1] = createElementVNode(
|
|
1932
1932
|
"div",
|
|
1933
1933
|
{ class: "figure" },
|
|
1934
1934
|
null,
|
|
1935
1935
|
-1
|
|
1936
|
-
/*
|
|
1936
|
+
/* CACHED */
|
|
1937
1937
|
)),
|
|
1938
1938
|
createElementVNode(
|
|
1939
1939
|
"h2",
|
|
@@ -1942,9 +1942,9 @@ var script$z = /* @__PURE__ */ defineComponent({
|
|
|
1942
1942
|
1
|
|
1943
1943
|
/* TEXT */
|
|
1944
1944
|
),
|
|
1945
|
-
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
1945
|
+
_ctx.payMethod == "bean" ? (openBlock(), createElementBlock("div", _hoisted_3$i, "\u6743\u76CA\u5DF2\u5230\u8D26")) : (openBlock(), createElementBlock(
|
|
1946
1946
|
"div",
|
|
1947
|
-
_hoisted_4$
|
|
1947
|
+
_hoisted_4$e,
|
|
1948
1948
|
toDisplayString(views[_ctx.type][1]) + "\u5C06\u57281\u5206\u949F\u4E4B\u5185\u5230\u8D26",
|
|
1949
1949
|
1
|
|
1950
1950
|
/* TEXT */
|
|
@@ -1957,8 +1957,8 @@ var script$z = /* @__PURE__ */ defineComponent({
|
|
|
1957
1957
|
default: withCtx(() => _cache[0] || (_cache[0] = [
|
|
1958
1958
|
createTextVNode("\u8FD4\u56DE")
|
|
1959
1959
|
])),
|
|
1960
|
-
_: 1
|
|
1961
|
-
|
|
1960
|
+
_: 1,
|
|
1961
|
+
__: [0]
|
|
1962
1962
|
})
|
|
1963
1963
|
])
|
|
1964
1964
|
]);
|
|
@@ -1966,12 +1966,12 @@ var script$z = /* @__PURE__ */ defineComponent({
|
|
|
1966
1966
|
}
|
|
1967
1967
|
});
|
|
1968
1968
|
|
|
1969
|
-
script$
|
|
1969
|
+
script$B.__file = "src/payment/components/RechargeResult.vue";
|
|
1970
1970
|
|
|
1971
|
-
const _hoisted_1$
|
|
1972
|
-
const _hoisted_2$
|
|
1973
|
-
const _hoisted_3$
|
|
1974
|
-
var script$
|
|
1971
|
+
const _hoisted_1$x = { class: "tag" };
|
|
1972
|
+
const _hoisted_2$n = { class: "token-line number" };
|
|
1973
|
+
const _hoisted_3$h = { class: "number" };
|
|
1974
|
+
var script$A = /* @__PURE__ */ defineComponent({
|
|
1975
1975
|
__name: "RightsPicker",
|
|
1976
1976
|
props: {
|
|
1977
1977
|
items: { type: Array, required: true, default: () => [] },
|
|
@@ -2009,14 +2009,14 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
2009
2009
|
default: withCtx(() => [
|
|
2010
2010
|
createElementVNode(
|
|
2011
2011
|
"div",
|
|
2012
|
-
_hoisted_1$
|
|
2012
|
+
_hoisted_1$x,
|
|
2013
2013
|
toDisplayString(amount.paymentDesc),
|
|
2014
2014
|
1
|
|
2015
2015
|
/* TEXT */
|
|
2016
2016
|
),
|
|
2017
2017
|
createElementVNode(
|
|
2018
2018
|
"h4",
|
|
2019
|
-
_hoisted_2$
|
|
2019
|
+
_hoisted_2$n,
|
|
2020
2020
|
toDisplayString(amount.priceRightNum) + "\u7B14",
|
|
2021
2021
|
1
|
|
2022
2022
|
/* TEXT */
|
|
@@ -2025,7 +2025,7 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
2025
2025
|
_cache[0] || (_cache[0] = createTextVNode("\xA5")),
|
|
2026
2026
|
createElementVNode(
|
|
2027
2027
|
"span",
|
|
2028
|
-
_hoisted_3$
|
|
2028
|
+
_hoisted_3$h,
|
|
2029
2029
|
toDisplayString(amount.paymentAmount),
|
|
2030
2030
|
1
|
|
2031
2031
|
/* TEXT */
|
|
@@ -2047,7 +2047,7 @@ var script$y = /* @__PURE__ */ defineComponent({
|
|
|
2047
2047
|
}
|
|
2048
2048
|
});
|
|
2049
2049
|
|
|
2050
|
-
script$
|
|
2050
|
+
script$A.__file = "src/payment/components/RightsPicker.vue";
|
|
2051
2051
|
|
|
2052
2052
|
function useAmount() {
|
|
2053
2053
|
function limitDecimal(value, precision = 1) {
|
|
@@ -2075,22 +2075,22 @@ function useAmount() {
|
|
|
2075
2075
|
};
|
|
2076
2076
|
}
|
|
2077
2077
|
|
|
2078
|
-
const _hoisted_1$
|
|
2079
|
-
const _hoisted_2$
|
|
2080
|
-
const _hoisted_3$
|
|
2078
|
+
const _hoisted_1$w = { class: "view recharge-view2" };
|
|
2079
|
+
const _hoisted_2$m = { class: "flex-grow" };
|
|
2080
|
+
const _hoisted_3$g = {
|
|
2081
2081
|
key: 0,
|
|
2082
2082
|
class: "bean-buy"
|
|
2083
2083
|
};
|
|
2084
|
-
const _hoisted_4$
|
|
2085
|
-
const _hoisted_5$
|
|
2084
|
+
const _hoisted_4$d = { class: "left" };
|
|
2085
|
+
const _hoisted_5$c = {
|
|
2086
2086
|
key: 0,
|
|
2087
2087
|
class: "amount"
|
|
2088
2088
|
};
|
|
2089
|
-
const _hoisted_6$
|
|
2089
|
+
const _hoisted_6$6 = {
|
|
2090
2090
|
key: 1,
|
|
2091
2091
|
class: "amount"
|
|
2092
2092
|
};
|
|
2093
|
-
const _hoisted_7$
|
|
2093
|
+
const _hoisted_7$6 = { class: "amount" };
|
|
2094
2094
|
const _hoisted_8$5 = ["src"];
|
|
2095
2095
|
const _hoisted_9$4 = { class: "amount-footer" };
|
|
2096
2096
|
const _hoisted_10$3 = {
|
|
@@ -2103,7 +2103,7 @@ const _hoisted_13$2 = { class: "amount" };
|
|
|
2103
2103
|
const _hoisted_14$2 = { class: "item" };
|
|
2104
2104
|
const _hoisted_15$2 = { class: "item" };
|
|
2105
2105
|
const _hoisted_16$2 = { class: "item" };
|
|
2106
|
-
var script$
|
|
2106
|
+
var script$z = /* @__PURE__ */ defineComponent({
|
|
2107
2107
|
__name: "TradeView",
|
|
2108
2108
|
props: {
|
|
2109
2109
|
headerApp: { type: String, required: true },
|
|
@@ -2225,31 +2225,31 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2225
2225
|
const _component_nut_checkbox = Checkbox;
|
|
2226
2226
|
const _component_nut_button = Button;
|
|
2227
2227
|
const _component_nut_dialog = Dialog;
|
|
2228
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
2229
|
-
createElementVNode("view", _hoisted_2$
|
|
2230
|
-
createVNode(script$
|
|
2228
|
+
return openBlock(), createElementBlock("view", _hoisted_1$w, [
|
|
2229
|
+
createElementVNode("view", _hoisted_2$m, [
|
|
2230
|
+
createVNode(script$A, {
|
|
2231
2231
|
items: amounts.value,
|
|
2232
2232
|
selected: state.selected,
|
|
2233
2233
|
onChange: onAmountSelect
|
|
2234
2234
|
}, null, 8, ["items", "selected"]),
|
|
2235
|
-
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
2236
|
-
createElementVNode("div", _hoisted_4$
|
|
2235
|
+
amounts.value[state.selected] ? (openBlock(), createElementBlock("div", _hoisted_3$g, [
|
|
2236
|
+
createElementVNode("div", _hoisted_4$d, [
|
|
2237
2237
|
_cache[4] || (_cache[4] = createElementVNode(
|
|
2238
2238
|
"div",
|
|
2239
2239
|
{ class: "title" },
|
|
2240
2240
|
"\u4F7F\u7528\u4E91\u8C46\u652F\u4ED8",
|
|
2241
2241
|
-1
|
|
2242
|
-
/*
|
|
2242
|
+
/* CACHED */
|
|
2243
2243
|
)),
|
|
2244
2244
|
!selectBean.value ? (openBlock(), createElementBlock(
|
|
2245
2245
|
"div",
|
|
2246
|
-
_hoisted_5$
|
|
2246
|
+
_hoisted_5$c,
|
|
2247
2247
|
"\u4F59\u989D " + toDisplayString(unref(formatAmount)(balance.value || 0)),
|
|
2248
2248
|
1
|
|
2249
2249
|
/* TEXT */
|
|
2250
2250
|
)) : (openBlock(), createElementBlock(
|
|
2251
2251
|
"div",
|
|
2252
|
-
_hoisted_6$
|
|
2252
|
+
_hoisted_6$6,
|
|
2253
2253
|
"\u6263\u51CF\u540E\u4F59\u989D " + toDisplayString(unref(formatAmount)(balance.value - amounts.value[state.selected].paymentAmount)),
|
|
2254
2254
|
1
|
|
2255
2255
|
/* TEXT */
|
|
@@ -2262,7 +2262,7 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2262
2262
|
}, [
|
|
2263
2263
|
createElementVNode(
|
|
2264
2264
|
"div",
|
|
2265
|
-
_hoisted_7$
|
|
2265
|
+
_hoisted_7$6,
|
|
2266
2266
|
"-" + toDisplayString(unref(formatAmount)(amounts.value[state.selected].paymentAmount || 0)),
|
|
2267
2267
|
1
|
|
2268
2268
|
/* TEXT */
|
|
@@ -2288,8 +2288,8 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2288
2288
|
onClick: onAgreementLinkClick
|
|
2289
2289
|
}, "\u300A\u5927\u9053\u4E91\u5E73\u53F0\u4E91\u8C46\u5145\u503C\u670D\u52A1\u534F\u8BAE\u300B")
|
|
2290
2290
|
]),
|
|
2291
|
-
_: 1
|
|
2292
|
-
|
|
2291
|
+
_: 1,
|
|
2292
|
+
__: [5]
|
|
2293
2293
|
}, 8, ["modelValue"])
|
|
2294
2294
|
])) : createCommentVNode("v-if", true),
|
|
2295
2295
|
createElementVNode("div", _hoisted_11$3, [
|
|
@@ -2301,7 +2301,7 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2301
2301
|
null,
|
|
2302
2302
|
"\uFFE5",
|
|
2303
2303
|
-1
|
|
2304
|
-
/*
|
|
2304
|
+
/* CACHED */
|
|
2305
2305
|
)),
|
|
2306
2306
|
createTextVNode(
|
|
2307
2307
|
toDisplayString(unref(formatAmount)(currentAmount.value)),
|
|
@@ -2320,8 +2320,8 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2320
2320
|
default: withCtx(() => _cache[8] || (_cache[8] = [
|
|
2321
2321
|
createTextVNode("\u8D2D\u4E70")
|
|
2322
2322
|
])),
|
|
2323
|
-
_: 1
|
|
2324
|
-
|
|
2323
|
+
_: 1,
|
|
2324
|
+
__: [8]
|
|
2325
2325
|
}, 8, ["loading"])
|
|
2326
2326
|
])
|
|
2327
2327
|
]),
|
|
@@ -2372,22 +2372,22 @@ var script$x = /* @__PURE__ */ defineComponent({
|
|
|
2372
2372
|
}
|
|
2373
2373
|
});
|
|
2374
2374
|
|
|
2375
|
-
script$
|
|
2375
|
+
script$z.__file = "src/payment/components/TradeView.vue";
|
|
2376
2376
|
|
|
2377
2377
|
const components = {
|
|
2378
|
-
AmountPicker: script$
|
|
2379
|
-
RechargeView: script$
|
|
2380
|
-
UserAgreement: script$
|
|
2381
|
-
RechargeResult: script$
|
|
2382
|
-
TradeView: script$
|
|
2378
|
+
AmountPicker: script$L,
|
|
2379
|
+
RechargeView: script$D,
|
|
2380
|
+
UserAgreement: script$C,
|
|
2381
|
+
RechargeResult: script$B,
|
|
2382
|
+
TradeView: script$z
|
|
2383
2383
|
};
|
|
2384
2384
|
|
|
2385
|
-
const _hoisted_1$
|
|
2386
|
-
const _hoisted_2$
|
|
2387
|
-
const _hoisted_3$
|
|
2388
|
-
const _hoisted_4$
|
|
2389
|
-
const _hoisted_5$
|
|
2390
|
-
var script$
|
|
2385
|
+
const _hoisted_1$v = { class: "account-card" };
|
|
2386
|
+
const _hoisted_2$l = { class: "card" };
|
|
2387
|
+
const _hoisted_3$f = { class: "card-row" };
|
|
2388
|
+
const _hoisted_4$c = { class: "card-row-left" };
|
|
2389
|
+
const _hoisted_5$b = { class: "bean-nums number" };
|
|
2390
|
+
var script$y = /* @__PURE__ */ defineComponent({
|
|
2391
2391
|
__name: "BalanceCard",
|
|
2392
2392
|
props: {
|
|
2393
2393
|
app: { type: String, required: true, default: "" }
|
|
@@ -2428,10 +2428,10 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
2428
2428
|
reload: loadBalance
|
|
2429
2429
|
});
|
|
2430
2430
|
return (_ctx, _cache) => {
|
|
2431
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2432
|
-
createElementVNode("div", _hoisted_2$
|
|
2433
|
-
createElementVNode("div", _hoisted_3$
|
|
2434
|
-
createElementVNode("div", _hoisted_4$
|
|
2431
|
+
return openBlock(), createElementBlock("div", _hoisted_1$v, [
|
|
2432
|
+
createElementVNode("div", _hoisted_2$l, [
|
|
2433
|
+
createElementVNode("div", _hoisted_3$f, [
|
|
2434
|
+
createElementVNode("div", _hoisted_4$c, [
|
|
2435
2435
|
_cache[0] || (_cache[0] = createElementVNode(
|
|
2436
2436
|
"div",
|
|
2437
2437
|
{ class: "bean-box" },
|
|
@@ -2445,11 +2445,11 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
2445
2445
|
createElementVNode("span", { class: "baan-name" }, "\u4E91\u8C46")
|
|
2446
2446
|
],
|
|
2447
2447
|
-1
|
|
2448
|
-
/*
|
|
2448
|
+
/* CACHED */
|
|
2449
2449
|
)),
|
|
2450
2450
|
createElementVNode(
|
|
2451
2451
|
"div",
|
|
2452
|
-
_hoisted_5$
|
|
2452
|
+
_hoisted_5$b,
|
|
2453
2453
|
toDisplayString(unref(formatAmount)(balance.value.total || 0)),
|
|
2454
2454
|
1
|
|
2455
2455
|
/* TEXT */
|
|
@@ -2465,7 +2465,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
2465
2465
|
{ class: "account-info-name" },
|
|
2466
2466
|
"\u8D26\u6237\u660E\u7EC6",
|
|
2467
2467
|
-1
|
|
2468
|
-
/*
|
|
2468
|
+
/* CACHED */
|
|
2469
2469
|
),
|
|
2470
2470
|
createElementVNode(
|
|
2471
2471
|
"div",
|
|
@@ -2477,7 +2477,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
2477
2477
|
})
|
|
2478
2478
|
],
|
|
2479
2479
|
-1
|
|
2480
|
-
/*
|
|
2480
|
+
/* CACHED */
|
|
2481
2481
|
)
|
|
2482
2482
|
]))
|
|
2483
2483
|
])
|
|
@@ -2489,7 +2489,7 @@ var script$w = /* @__PURE__ */ defineComponent({
|
|
|
2489
2489
|
}
|
|
2490
2490
|
});
|
|
2491
2491
|
|
|
2492
|
-
script$
|
|
2492
|
+
script$y.__file = "src/balance/components/BalanceCard.vue";
|
|
2493
2493
|
|
|
2494
2494
|
const consumptionTypes = [
|
|
2495
2495
|
"\u5168\u90E8",
|
|
@@ -2506,12 +2506,12 @@ const consumptionTypes = [
|
|
|
2506
2506
|
const consumptionPositions = ["\u5168\u90E8", "\u4E91\u8C46", "\u6743\u76CA"];
|
|
2507
2507
|
const consumptionDirections = ["\u5168\u90E8", "\u6536\u5165", "\u652F\u51FA"];
|
|
2508
2508
|
|
|
2509
|
-
const _hoisted_1$
|
|
2510
|
-
const _hoisted_2$
|
|
2511
|
-
const _hoisted_3$
|
|
2512
|
-
const _hoisted_4$
|
|
2513
|
-
const _hoisted_5$
|
|
2514
|
-
var script$
|
|
2509
|
+
const _hoisted_1$u = { class: "consumption-filter" };
|
|
2510
|
+
const _hoisted_2$k = { class: "consumption-filter-content" };
|
|
2511
|
+
const _hoisted_3$e = { class: "title" };
|
|
2512
|
+
const _hoisted_4$b = { class: "info" };
|
|
2513
|
+
const _hoisted_5$a = ["onClick"];
|
|
2514
|
+
var script$x = /* @__PURE__ */ defineComponent({
|
|
2515
2515
|
__name: "ConsumptionFilter",
|
|
2516
2516
|
props: {
|
|
2517
2517
|
modelValue: { type: Array, required: true, default: () => ["\u5168\u90E8", "\u5168\u90E8", "\u5168\u90E8", ""] }
|
|
@@ -2563,15 +2563,15 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2563
2563
|
emit("complete", result);
|
|
2564
2564
|
};
|
|
2565
2565
|
return (_ctx, _cache) => {
|
|
2566
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2566
|
+
return openBlock(), createElementBlock("div", _hoisted_1$u, [
|
|
2567
2567
|
_cache[0] || (_cache[0] = createElementVNode(
|
|
2568
2568
|
"div",
|
|
2569
2569
|
{ class: "consumption-filter-title" },
|
|
2570
2570
|
" \u9009\u62E9\u7B5B\u9009\u9879 ",
|
|
2571
2571
|
-1
|
|
2572
|
-
/*
|
|
2572
|
+
/* CACHED */
|
|
2573
2573
|
)),
|
|
2574
|
-
createElementVNode("div", _hoisted_2$
|
|
2574
|
+
createElementVNode("div", _hoisted_2$k, [
|
|
2575
2575
|
(openBlock(true), createElementBlock(
|
|
2576
2576
|
Fragment,
|
|
2577
2577
|
null,
|
|
@@ -2582,12 +2582,12 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2582
2582
|
[
|
|
2583
2583
|
createElementVNode(
|
|
2584
2584
|
"div",
|
|
2585
|
-
_hoisted_3$
|
|
2585
|
+
_hoisted_3$e,
|
|
2586
2586
|
toDisplayString(item.title),
|
|
2587
2587
|
1
|
|
2588
2588
|
/* TEXT */
|
|
2589
2589
|
),
|
|
2590
|
-
createElementVNode("div", _hoisted_4$
|
|
2590
|
+
createElementVNode("div", _hoisted_4$b, [
|
|
2591
2591
|
(openBlock(true), createElementBlock(
|
|
2592
2592
|
Fragment,
|
|
2593
2593
|
null,
|
|
@@ -2596,7 +2596,7 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2596
2596
|
onClick: () => onFilterSectionClick(index, it.code),
|
|
2597
2597
|
class: normalizeClass([getItemClass(index, it.code), "info-item"]),
|
|
2598
2598
|
key: i
|
|
2599
|
-
}, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$
|
|
2599
|
+
}, toDisplayString(typeof it === "string" ? it : it.name), 11, _hoisted_5$a);
|
|
2600
2600
|
}),
|
|
2601
2601
|
128
|
|
2602
2602
|
/* KEYED_FRAGMENT */
|
|
@@ -2626,19 +2626,19 @@ var script$v = /* @__PURE__ */ defineComponent({
|
|
|
2626
2626
|
{ class: "consumption-filter-bottom" },
|
|
2627
2627
|
null,
|
|
2628
2628
|
-1
|
|
2629
|
-
/*
|
|
2629
|
+
/* CACHED */
|
|
2630
2630
|
))
|
|
2631
2631
|
]);
|
|
2632
2632
|
};
|
|
2633
2633
|
}
|
|
2634
2634
|
});
|
|
2635
2635
|
|
|
2636
|
-
script$
|
|
2636
|
+
script$x.__file = "src/balance/components/ConsumptionFilter.vue";
|
|
2637
2637
|
|
|
2638
|
-
const _hoisted_1$
|
|
2639
|
-
const _hoisted_2$
|
|
2640
|
-
const _hoisted_3$
|
|
2641
|
-
var script$
|
|
2638
|
+
const _hoisted_1$t = { class: "appkit-date-filter" };
|
|
2639
|
+
const _hoisted_2$j = { class: "content" };
|
|
2640
|
+
const _hoisted_3$d = { class: "time" };
|
|
2641
|
+
var script$w = /* @__PURE__ */ defineComponent({
|
|
2642
2642
|
__name: "DateFilter",
|
|
2643
2643
|
props: {
|
|
2644
2644
|
from: { type: String, required: true },
|
|
@@ -2648,6 +2648,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2648
2648
|
setup(__props, { emit: __emit }) {
|
|
2649
2649
|
const props = __props;
|
|
2650
2650
|
const emit = __emit, state = usePopup();
|
|
2651
|
+
const result = reactive({ ...props });
|
|
2651
2652
|
watch(
|
|
2652
2653
|
() => `${props.from}${props.to}`,
|
|
2653
2654
|
() => {
|
|
@@ -2655,7 +2656,6 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2655
2656
|
result.to = props.to;
|
|
2656
2657
|
}
|
|
2657
2658
|
);
|
|
2658
|
-
const result = reactive({ ...props });
|
|
2659
2659
|
const focused = ref("from");
|
|
2660
2660
|
const focusedDate = ref(props.from);
|
|
2661
2661
|
const minDate = ref();
|
|
@@ -2685,11 +2685,15 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2685
2685
|
result.to = time;
|
|
2686
2686
|
}
|
|
2687
2687
|
datePickerOpen.value = false;
|
|
2688
|
-
state
|
|
2688
|
+
if (state) {
|
|
2689
|
+
state.couldClose = true;
|
|
2690
|
+
}
|
|
2689
2691
|
}
|
|
2690
2692
|
function onDatePickerCancel() {
|
|
2691
2693
|
datePickerOpen.value = false;
|
|
2692
|
-
state
|
|
2694
|
+
if (state) {
|
|
2695
|
+
state.couldClose = true;
|
|
2696
|
+
}
|
|
2693
2697
|
}
|
|
2694
2698
|
function switchDateInput(shift) {
|
|
2695
2699
|
if (shift === "from") {
|
|
@@ -2702,28 +2706,30 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2702
2706
|
focusedDate.value = new Date(result[shift]);
|
|
2703
2707
|
focused.value = shift;
|
|
2704
2708
|
datePickerOpen.value = true;
|
|
2705
|
-
state
|
|
2709
|
+
if (state) {
|
|
2710
|
+
state.couldClose = false;
|
|
2711
|
+
}
|
|
2706
2712
|
}
|
|
2707
2713
|
return (_ctx, _cache) => {
|
|
2708
2714
|
const _component_nut_date_picker = DatePicker;
|
|
2709
2715
|
const _component_nut_popup = Popup;
|
|
2710
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2716
|
+
return openBlock(), createElementBlock("div", _hoisted_1$t, [
|
|
2711
2717
|
_cache[6] || (_cache[6] = createElementVNode(
|
|
2712
2718
|
"div",
|
|
2713
2719
|
{ class: "date-filter-header" },
|
|
2714
2720
|
"\u65E5\u671F\u9009\u62E9",
|
|
2715
2721
|
-1
|
|
2716
|
-
/*
|
|
2722
|
+
/* CACHED */
|
|
2717
2723
|
)),
|
|
2718
|
-
createElementVNode("div", _hoisted_2$
|
|
2724
|
+
createElementVNode("div", _hoisted_2$j, [
|
|
2719
2725
|
_cache[5] || (_cache[5] = createElementVNode(
|
|
2720
2726
|
"div",
|
|
2721
2727
|
{ class: "title" },
|
|
2722
2728
|
"\u81EA\u5B9A\u4E49",
|
|
2723
2729
|
-1
|
|
2724
|
-
/*
|
|
2730
|
+
/* CACHED */
|
|
2725
2731
|
)),
|
|
2726
|
-
createElementVNode("div", _hoisted_3$
|
|
2732
|
+
createElementVNode("div", _hoisted_3$d, [
|
|
2727
2733
|
createElementVNode(
|
|
2728
2734
|
"div",
|
|
2729
2735
|
{
|
|
@@ -2739,7 +2745,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2739
2745
|
{ class: "line" },
|
|
2740
2746
|
"-",
|
|
2741
2747
|
-1
|
|
2742
|
-
/*
|
|
2748
|
+
/* CACHED */
|
|
2743
2749
|
)),
|
|
2744
2750
|
createElementVNode(
|
|
2745
2751
|
"div",
|
|
@@ -2768,7 +2774,7 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2768
2774
|
{ class: "bottom" },
|
|
2769
2775
|
null,
|
|
2770
2776
|
-1
|
|
2771
|
-
/*
|
|
2777
|
+
/* CACHED */
|
|
2772
2778
|
)),
|
|
2773
2779
|
createVNode(_component_nut_popup, {
|
|
2774
2780
|
visible: datePickerOpen.value,
|
|
@@ -2797,22 +2803,22 @@ var script$u = /* @__PURE__ */ defineComponent({
|
|
|
2797
2803
|
}
|
|
2798
2804
|
});
|
|
2799
2805
|
|
|
2800
|
-
script$
|
|
2806
|
+
script$w.__file = "src/balance/components/DateFilter.vue";
|
|
2801
2807
|
|
|
2802
|
-
const _hoisted_1$
|
|
2803
|
-
var script$
|
|
2808
|
+
const _hoisted_1$s = { class: "consumption-rules" };
|
|
2809
|
+
var script$v = /* @__PURE__ */ defineComponent({
|
|
2804
2810
|
__name: "ConsumptionRules",
|
|
2805
2811
|
emits: ["complete"],
|
|
2806
2812
|
setup(__props, { emit: __emit }) {
|
|
2807
2813
|
const emit = __emit;
|
|
2808
2814
|
return (_ctx, _cache) => {
|
|
2809
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2815
|
+
return openBlock(), createElementBlock("div", _hoisted_1$s, [
|
|
2810
2816
|
_cache[1] || (_cache[1] = createElementVNode(
|
|
2811
2817
|
"div",
|
|
2812
2818
|
{ class: "title" },
|
|
2813
2819
|
"\u89C4\u5219\u8BF4\u660E",
|
|
2814
2820
|
-1
|
|
2815
|
-
/*
|
|
2821
|
+
/* CACHED */
|
|
2816
2822
|
)),
|
|
2817
2823
|
_cache[2] || (_cache[2] = createElementVNode(
|
|
2818
2824
|
"div",
|
|
@@ -2827,7 +2833,7 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2827
2833
|
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 ")
|
|
2828
2834
|
],
|
|
2829
2835
|
-1
|
|
2830
|
-
/*
|
|
2836
|
+
/* CACHED */
|
|
2831
2837
|
)),
|
|
2832
2838
|
createElementVNode("div", {
|
|
2833
2839
|
class: "know",
|
|
@@ -2838,11 +2844,11 @@ var script$t = /* @__PURE__ */ defineComponent({
|
|
|
2838
2844
|
}
|
|
2839
2845
|
});
|
|
2840
2846
|
|
|
2841
|
-
script$
|
|
2847
|
+
script$v.__file = "src/balance/components/ConsumptionRules.vue";
|
|
2842
2848
|
|
|
2843
|
-
const _hoisted_1$
|
|
2849
|
+
const _hoisted_1$r = { class: "empty-view" };
|
|
2844
2850
|
function render$1(_ctx, _cache) {
|
|
2845
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
2851
|
+
return openBlock(), createElementBlock("div", _hoisted_1$r, _cache[0] || (_cache[0] = [
|
|
2846
2852
|
createElementVNode(
|
|
2847
2853
|
"img",
|
|
2848
2854
|
{
|
|
@@ -2851,28 +2857,28 @@ function render$1(_ctx, _cache) {
|
|
|
2851
2857
|
},
|
|
2852
2858
|
null,
|
|
2853
2859
|
-1
|
|
2854
|
-
/*
|
|
2860
|
+
/* CACHED */
|
|
2855
2861
|
),
|
|
2856
2862
|
createElementVNode(
|
|
2857
2863
|
"div",
|
|
2858
2864
|
{ class: "empty-view-text" },
|
|
2859
2865
|
"\u6682\u65E0\u6570\u636E",
|
|
2860
2866
|
-1
|
|
2861
|
-
/*
|
|
2867
|
+
/* CACHED */
|
|
2862
2868
|
)
|
|
2863
2869
|
]));
|
|
2864
2870
|
}
|
|
2865
2871
|
|
|
2866
|
-
/* unplugin-vue-components disabled */const script$
|
|
2872
|
+
/* unplugin-vue-components disabled */const script$u = {};
|
|
2867
2873
|
|
|
2868
|
-
script$
|
|
2869
|
-
script$
|
|
2874
|
+
script$u.render = render$1;
|
|
2875
|
+
script$u.__file = "src/shared/components/EmptyView.vue";
|
|
2870
2876
|
|
|
2871
|
-
const _hoisted_1$
|
|
2877
|
+
const _hoisted_1$q = {
|
|
2872
2878
|
key: 0,
|
|
2873
2879
|
class: "tip"
|
|
2874
2880
|
};
|
|
2875
|
-
var script$
|
|
2881
|
+
var script$t = /* @__PURE__ */ defineComponent({
|
|
2876
2882
|
__name: "Tip",
|
|
2877
2883
|
setup(__props) {
|
|
2878
2884
|
const show = ref(false);
|
|
@@ -2884,7 +2890,7 @@ var script$r = /* @__PURE__ */ defineComponent({
|
|
|
2884
2890
|
}
|
|
2885
2891
|
});
|
|
2886
2892
|
return (_ctx, _cache) => {
|
|
2887
|
-
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
2893
|
+
return show.value ? (openBlock(), createElementBlock("div", _hoisted_1$q, _cache[0] || (_cache[0] = [
|
|
2888
2894
|
createElementVNode(
|
|
2889
2895
|
"img",
|
|
2890
2896
|
{
|
|
@@ -2893,29 +2899,29 @@ var script$r = /* @__PURE__ */ defineComponent({
|
|
|
2893
2899
|
},
|
|
2894
2900
|
null,
|
|
2895
2901
|
-1
|
|
2896
|
-
/*
|
|
2902
|
+
/* CACHED */
|
|
2897
2903
|
),
|
|
2898
2904
|
createElementVNode(
|
|
2899
2905
|
"div",
|
|
2900
2906
|
{ class: "tip-content" },
|
|
2901
2907
|
"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",
|
|
2902
2908
|
-1
|
|
2903
|
-
/*
|
|
2909
|
+
/* CACHED */
|
|
2904
2910
|
)
|
|
2905
2911
|
]))) : createCommentVNode("v-if", true);
|
|
2906
2912
|
};
|
|
2907
2913
|
}
|
|
2908
2914
|
});
|
|
2909
2915
|
|
|
2910
|
-
script$
|
|
2916
|
+
script$t.__file = "src/balance/components/Tip.vue";
|
|
2911
2917
|
|
|
2912
|
-
const _hoisted_1$
|
|
2913
|
-
const _hoisted_2$
|
|
2914
|
-
const _hoisted_3$
|
|
2915
|
-
const _hoisted_4$
|
|
2916
|
-
const _hoisted_5$
|
|
2917
|
-
const _hoisted_6$
|
|
2918
|
-
const _hoisted_7$
|
|
2918
|
+
const _hoisted_1$p = { class: "account-view" };
|
|
2919
|
+
const _hoisted_2$i = { class: "scroll-content" };
|
|
2920
|
+
const _hoisted_3$c = { class: "balance" };
|
|
2921
|
+
const _hoisted_4$a = { class: "bean-box spa-between" };
|
|
2922
|
+
const _hoisted_5$9 = { class: "bean-counts spa-between" };
|
|
2923
|
+
const _hoisted_6$5 = { class: "counts number" };
|
|
2924
|
+
const _hoisted_7$5 = {
|
|
2919
2925
|
key: 0,
|
|
2920
2926
|
class: "rights-card"
|
|
2921
2927
|
};
|
|
@@ -2966,7 +2972,7 @@ const _hoisted_36 = {
|
|
|
2966
2972
|
key: 0,
|
|
2967
2973
|
class: "box-not-text"
|
|
2968
2974
|
};
|
|
2969
|
-
var script$
|
|
2975
|
+
var script$s = /* @__PURE__ */ defineComponent({
|
|
2970
2976
|
__name: "AccountView",
|
|
2971
2977
|
props: {
|
|
2972
2978
|
app: { type: String, required: true, default: "" }
|
|
@@ -3129,6 +3135,8 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3129
3135
|
});
|
|
3130
3136
|
function onDateReset() {
|
|
3131
3137
|
resetDateRange();
|
|
3138
|
+
datePickerOpen.value = false;
|
|
3139
|
+
restartSearch();
|
|
3132
3140
|
}
|
|
3133
3141
|
function resetDateRange() {
|
|
3134
3142
|
filtering.dateTo = dayjs().format("YYYY-MM-DD");
|
|
@@ -3148,9 +3156,9 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3148
3156
|
Fragment,
|
|
3149
3157
|
null,
|
|
3150
3158
|
[
|
|
3151
|
-
createElementVNode("div", _hoisted_1$
|
|
3152
|
-
createElementVNode("div", _hoisted_2$
|
|
3153
|
-
createVNode(unref(script$
|
|
3159
|
+
createElementVNode("div", _hoisted_1$p, [
|
|
3160
|
+
createElementVNode("div", _hoisted_2$i, [
|
|
3161
|
+
createVNode(unref(script$K), {
|
|
3154
3162
|
title: unref(Taro).getEnv() !== "WEB" ? "\u6211\u7684\u8D26\u6237" : "",
|
|
3155
3163
|
class: normalizeClass({ "with-background": scrolled.value > 0 }),
|
|
3156
3164
|
onClose: onPageHeaderClose
|
|
@@ -3165,12 +3173,12 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3165
3173
|
{ class: "label" },
|
|
3166
3174
|
"\u6536\u652F\u660E\u7EC6",
|
|
3167
3175
|
-1
|
|
3168
|
-
/*
|
|
3176
|
+
/* CACHED */
|
|
3169
3177
|
)
|
|
3170
3178
|
]))
|
|
3171
3179
|
]),
|
|
3172
|
-
createElementVNode("div", _hoisted_3$
|
|
3173
|
-
createElementVNode("div", _hoisted_4$
|
|
3180
|
+
createElementVNode("div", _hoisted_3$c, [
|
|
3181
|
+
createElementVNode("div", _hoisted_4$a, [
|
|
3174
3182
|
_cache[8] || (_cache[8] = createElementVNode(
|
|
3175
3183
|
"div",
|
|
3176
3184
|
{ class: "bean-img" },
|
|
@@ -3182,17 +3190,17 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3182
3190
|
createElementVNode("div", { class: "bean-tag tag" }, "\u4E91\u8C46")
|
|
3183
3191
|
],
|
|
3184
3192
|
-1
|
|
3185
|
-
/*
|
|
3193
|
+
/* CACHED */
|
|
3186
3194
|
)),
|
|
3187
3195
|
createElementVNode("div", {
|
|
3188
3196
|
class: "rule",
|
|
3189
3197
|
onClick: _cache[0] || (_cache[0] = ($event) => rulesPopupOpen.value = true)
|
|
3190
3198
|
}, "\u89C4\u5219\u8BF4\u660E")
|
|
3191
3199
|
]),
|
|
3192
|
-
createElementVNode("div", _hoisted_5$
|
|
3200
|
+
createElementVNode("div", _hoisted_5$9, [
|
|
3193
3201
|
createElementVNode(
|
|
3194
3202
|
"div",
|
|
3195
|
-
_hoisted_6$
|
|
3203
|
+
_hoisted_6$5,
|
|
3196
3204
|
toDisplayString(unref(formatAmount)(balance.value.total || 0)),
|
|
3197
3205
|
1
|
|
3198
3206
|
/* TEXT */
|
|
@@ -3203,14 +3211,14 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3203
3211
|
}, "\u4E91\u8C46\u5145\u503C")
|
|
3204
3212
|
])
|
|
3205
3213
|
]),
|
|
3206
|
-
createVNode(script$
|
|
3207
|
-
balance.value.privileges?.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$
|
|
3214
|
+
createVNode(script$t),
|
|
3215
|
+
balance.value.privileges?.corporateStar ? (openBlock(), createElementBlock("div", _hoisted_7$5, [
|
|
3208
3216
|
_cache[10] || (_cache[10] = createElementVNode(
|
|
3209
3217
|
"div",
|
|
3210
3218
|
{ class: "title" },
|
|
3211
3219
|
"\u4F01\u660E\u661F\u6743\u76CA",
|
|
3212
3220
|
-1
|
|
3213
|
-
/*
|
|
3221
|
+
/* CACHED */
|
|
3214
3222
|
)),
|
|
3215
3223
|
createElementVNode("div", _hoisted_8$4, [
|
|
3216
3224
|
(openBlock(true), createElementBlock(
|
|
@@ -3257,7 +3265,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3257
3265
|
},
|
|
3258
3266
|
null,
|
|
3259
3267
|
-1
|
|
3260
|
-
/*
|
|
3268
|
+
/* CACHED */
|
|
3261
3269
|
))
|
|
3262
3270
|
])) : createCommentVNode("v-if", true)
|
|
3263
3271
|
])
|
|
@@ -3274,7 +3282,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3274
3282
|
{ class: "title" },
|
|
3275
3283
|
"AI\u5BA1\u6279\u6743\u76CA",
|
|
3276
3284
|
-1
|
|
3277
|
-
/*
|
|
3285
|
+
/* CACHED */
|
|
3278
3286
|
)),
|
|
3279
3287
|
createElementVNode("div", _hoisted_14$1, [
|
|
3280
3288
|
(openBlock(true), createElementBlock(
|
|
@@ -3312,7 +3320,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3312
3320
|
},
|
|
3313
3321
|
null,
|
|
3314
3322
|
-1
|
|
3315
|
-
/*
|
|
3323
|
+
/* CACHED */
|
|
3316
3324
|
))
|
|
3317
3325
|
])) : createCommentVNode("v-if", true)
|
|
3318
3326
|
])
|
|
@@ -3329,7 +3337,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3329
3337
|
{ class: "title" },
|
|
3330
3338
|
"\u7535\u5B50\u7B7E\u7EA6\u6743\u76CA",
|
|
3331
3339
|
-1
|
|
3332
|
-
/*
|
|
3340
|
+
/* CACHED */
|
|
3333
3341
|
)),
|
|
3334
3342
|
createElementVNode("div", _hoisted_20$1, [
|
|
3335
3343
|
(openBlock(true), createElementBlock(
|
|
@@ -3370,7 +3378,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3370
3378
|
"close-on-click-overlay": false
|
|
3371
3379
|
}, {
|
|
3372
3380
|
default: withCtx(() => [
|
|
3373
|
-
createVNode(script$
|
|
3381
|
+
createVNode(script$v, {
|
|
3374
3382
|
onComplete: _cache[1] || (_cache[1] = ($event) => rulesPopupOpen.value = false)
|
|
3375
3383
|
})
|
|
3376
3384
|
]),
|
|
@@ -3386,7 +3394,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3386
3394
|
"onUpdate:visible": _cache[3] || (_cache[3] = ($event) => datePickerOpen.value = $event)
|
|
3387
3395
|
}, {
|
|
3388
3396
|
default: withCtx(() => [
|
|
3389
|
-
datePickerOpen.value ? (openBlock(), createBlock(script$
|
|
3397
|
+
datePickerOpen.value ? (openBlock(), createBlock(script$w, {
|
|
3390
3398
|
key: 0,
|
|
3391
3399
|
from: filtering.dateFrom,
|
|
3392
3400
|
to: filtering.dateTo,
|
|
@@ -3406,7 +3414,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3406
3414
|
"onUpdate:visible": _cache[4] || (_cache[4] = ($event) => filterOpen.value = $event)
|
|
3407
3415
|
}, {
|
|
3408
3416
|
default: withCtx(() => [
|
|
3409
|
-
createVNode(script$
|
|
3417
|
+
createVNode(script$x, {
|
|
3410
3418
|
modelValue: [
|
|
3411
3419
|
filtering.\u8D26\u6237\u7C7B\u578B,
|
|
3412
3420
|
filtering.\u6536\u5165\u8FD8\u662F\u652F\u51FA,
|
|
@@ -3419,7 +3427,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3419
3427
|
_: 1
|
|
3420
3428
|
/* STABLE */
|
|
3421
3429
|
}, 8, ["visible"]),
|
|
3422
|
-
createVNode(unref(script$
|
|
3430
|
+
createVNode(unref(script$J), {
|
|
3423
3431
|
modelValue: secondBalanceOpen.value,
|
|
3424
3432
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => secondBalanceOpen.value = $event),
|
|
3425
3433
|
title: "\u6536\u652F\u660E\u7EC6"
|
|
@@ -3438,7 +3446,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3438
3446
|
{ class: "title" },
|
|
3439
3447
|
"\u6536\u652F\u660E\u7EC6",
|
|
3440
3448
|
-1
|
|
3441
|
-
/*
|
|
3449
|
+
/* CACHED */
|
|
3442
3450
|
)),
|
|
3443
3451
|
withDirectives(createElementVNode(
|
|
3444
3452
|
"div",
|
|
@@ -3463,7 +3471,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3463
3471
|
},
|
|
3464
3472
|
null,
|
|
3465
3473
|
-1
|
|
3466
|
-
/*
|
|
3474
|
+
/* CACHED */
|
|
3467
3475
|
))
|
|
3468
3476
|
],
|
|
3469
3477
|
512
|
|
@@ -3481,7 +3489,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3481
3489
|
{ class: "text" },
|
|
3482
3490
|
"\u7B5B\u9009",
|
|
3483
3491
|
-1
|
|
3484
|
-
/*
|
|
3492
|
+
/* CACHED */
|
|
3485
3493
|
),
|
|
3486
3494
|
createElementVNode(
|
|
3487
3495
|
"img",
|
|
@@ -3491,7 +3499,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3491
3499
|
},
|
|
3492
3500
|
null,
|
|
3493
3501
|
-1
|
|
3494
|
-
/*
|
|
3502
|
+
/* CACHED */
|
|
3495
3503
|
)
|
|
3496
3504
|
]))
|
|
3497
3505
|
],
|
|
@@ -3583,7 +3591,7 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3583
3591
|
/* KEYED_FRAGMENT */
|
|
3584
3592
|
)),
|
|
3585
3593
|
reachedLastPage.value ? (openBlock(), createElementBlock("div", _hoisted_36, "\u6CA1\u6709\u66F4\u591A\u4E86")) : createCommentVNode("v-if", true)
|
|
3586
|
-
])) : (openBlock(), createBlock(script$
|
|
3594
|
+
])) : (openBlock(), createBlock(script$u, { key: 1 }))
|
|
3587
3595
|
]),
|
|
3588
3596
|
_: 1
|
|
3589
3597
|
/* STABLE */
|
|
@@ -3602,14 +3610,14 @@ var script$q = /* @__PURE__ */ defineComponent({
|
|
|
3602
3610
|
}
|
|
3603
3611
|
});
|
|
3604
3612
|
|
|
3605
|
-
script$
|
|
3613
|
+
script$s.__file = "src/balance/components/AccountView.vue";
|
|
3606
3614
|
|
|
3607
|
-
const _hoisted_1$
|
|
3608
|
-
const _hoisted_2$
|
|
3609
|
-
const _hoisted_3$
|
|
3610
|
-
const _hoisted_4$
|
|
3611
|
-
const _hoisted_5$
|
|
3612
|
-
var script$
|
|
3615
|
+
const _hoisted_1$o = { class: "balance-reminder" };
|
|
3616
|
+
const _hoisted_2$h = { class: "body" };
|
|
3617
|
+
const _hoisted_3$b = { class: "footer" };
|
|
3618
|
+
const _hoisted_4$9 = { class: "col" };
|
|
3619
|
+
const _hoisted_5$8 = { class: "col" };
|
|
3620
|
+
var script$r = /* @__PURE__ */ defineComponent({
|
|
3613
3621
|
__name: "BalanceReminder",
|
|
3614
3622
|
props: {
|
|
3615
3623
|
modelValue: { type: Boolean, required: true, default: () => false },
|
|
@@ -3630,14 +3638,14 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3630
3638
|
"close-on-click-overlay": false
|
|
3631
3639
|
}, {
|
|
3632
3640
|
default: withCtx(() => [
|
|
3633
|
-
createElementVNode("div", _hoisted_1$
|
|
3634
|
-
createElementVNode("div", _hoisted_2$
|
|
3641
|
+
createElementVNode("div", _hoisted_1$o, [
|
|
3642
|
+
createElementVNode("div", _hoisted_2$h, [
|
|
3635
3643
|
_cache[2] || (_cache[2] = createElementVNode(
|
|
3636
3644
|
"h2",
|
|
3637
3645
|
null,
|
|
3638
3646
|
"\u6E29\u99A8\u63D0\u793A",
|
|
3639
3647
|
-1
|
|
3640
|
-
/*
|
|
3648
|
+
/* CACHED */
|
|
3641
3649
|
)),
|
|
3642
3650
|
createElementVNode(
|
|
3643
3651
|
"p",
|
|
@@ -3647,8 +3655,8 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3647
3655
|
/* TEXT */
|
|
3648
3656
|
)
|
|
3649
3657
|
]),
|
|
3650
|
-
createElementVNode("div", _hoisted_3$
|
|
3651
|
-
createElementVNode("div", _hoisted_4$
|
|
3658
|
+
createElementVNode("div", _hoisted_3$b, [
|
|
3659
|
+
createElementVNode("div", _hoisted_4$9, [
|
|
3652
3660
|
createVNode(_component_nut_button, {
|
|
3653
3661
|
class: "cancel-button",
|
|
3654
3662
|
onClick: _cache[0] || (_cache[0] = ($event) => emit("update:modelValue", false)),
|
|
@@ -3657,11 +3665,11 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3657
3665
|
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
3658
3666
|
createTextVNode("\u53D6\u6D88")
|
|
3659
3667
|
])),
|
|
3660
|
-
_: 1
|
|
3661
|
-
|
|
3668
|
+
_: 1,
|
|
3669
|
+
__: [3]
|
|
3662
3670
|
})
|
|
3663
3671
|
]),
|
|
3664
|
-
createElementVNode("div", _hoisted_5$
|
|
3672
|
+
createElementVNode("div", _hoisted_5$8, [
|
|
3665
3673
|
createVNode(_component_nut_button, {
|
|
3666
3674
|
block: "",
|
|
3667
3675
|
class: "recharge-button",
|
|
@@ -3688,10 +3696,10 @@ var script$p = /* @__PURE__ */ defineComponent({
|
|
|
3688
3696
|
}
|
|
3689
3697
|
});
|
|
3690
3698
|
|
|
3691
|
-
script$
|
|
3699
|
+
script$r.__file = "src/balance/components/BalanceReminder.vue";
|
|
3692
3700
|
|
|
3693
|
-
const _hoisted_1$
|
|
3694
|
-
var script$
|
|
3701
|
+
const _hoisted_1$n = { class: "text" };
|
|
3702
|
+
var script$q = /* @__PURE__ */ defineComponent({
|
|
3695
3703
|
__name: "DateRange",
|
|
3696
3704
|
props: {
|
|
3697
3705
|
"modelValue": {
|
|
@@ -3704,72 +3712,99 @@ var script$o = /* @__PURE__ */ defineComponent({
|
|
|
3704
3712
|
},
|
|
3705
3713
|
"modelModifiers": {}
|
|
3706
3714
|
},
|
|
3707
|
-
emits: ["update:modelValue"],
|
|
3708
|
-
setup(__props) {
|
|
3709
|
-
|
|
3715
|
+
emits: /* @__PURE__ */ mergeModels(["complete", "reset"], ["update:modelValue"]),
|
|
3716
|
+
setup(__props, { emit: __emit }) {
|
|
3717
|
+
useNutshell();
|
|
3710
3718
|
const model = useModel(__props, "modelValue");
|
|
3711
|
-
const
|
|
3712
|
-
|
|
3713
|
-
|
|
3714
|
-
|
|
3715
|
-
|
|
3716
|
-
|
|
3717
|
-
|
|
3718
|
-
|
|
3719
|
-
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
// 不允许点击 overlay 关闭弹窗
|
|
3723
|
-
mask: true,
|
|
3724
|
-
onComplete(result) {
|
|
3725
|
-
model.value = {
|
|
3726
|
-
from: result.from,
|
|
3727
|
-
to: result.to
|
|
3728
|
-
};
|
|
3729
|
-
}
|
|
3730
|
-
});
|
|
3719
|
+
const datePickerOpen = ref(false);
|
|
3720
|
+
function openDateRangePicker() {
|
|
3721
|
+
datePickerOpen.value = true;
|
|
3722
|
+
}
|
|
3723
|
+
const onDateFilterComplete = (value) => {
|
|
3724
|
+
model.value = {
|
|
3725
|
+
from: value.from,
|
|
3726
|
+
to: value.to
|
|
3727
|
+
};
|
|
3728
|
+
datePickerOpen.value = false;
|
|
3729
|
+
emit("complete", model.value);
|
|
3731
3730
|
};
|
|
3731
|
+
function onDateReset() {
|
|
3732
|
+
model.value = {
|
|
3733
|
+
from: dayjs().add(-1, "M").format("YYYY-MM-DD"),
|
|
3734
|
+
to: dayjs().format("YYYY-MM-DD")
|
|
3735
|
+
};
|
|
3736
|
+
datePickerOpen.value = false;
|
|
3737
|
+
}
|
|
3738
|
+
const emit = __emit;
|
|
3732
3739
|
const dateRangeDisplay = computed(() => {
|
|
3733
3740
|
let startTime = (model.value.from || "").replace(/-/g, ".").substring(2);
|
|
3734
3741
|
let endTime = (model.value.to || "").replace(/-/g, ".").substring(2);
|
|
3735
3742
|
return startTime + "-" + endTime;
|
|
3736
3743
|
});
|
|
3737
3744
|
return (_ctx, _cache) => {
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
"div",
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3745
|
+
const _component_nut_popup = Popup;
|
|
3746
|
+
return openBlock(), createElementBlock(
|
|
3747
|
+
Fragment,
|
|
3748
|
+
null,
|
|
3749
|
+
[
|
|
3750
|
+
createElementVNode("div", {
|
|
3751
|
+
class: "date-range",
|
|
3752
|
+
onClick: openDateRangePicker
|
|
3753
|
+
}, [
|
|
3754
|
+
createElementVNode(
|
|
3755
|
+
"div",
|
|
3756
|
+
_hoisted_1$n,
|
|
3757
|
+
toDisplayString(dateRangeDisplay.value),
|
|
3758
|
+
1
|
|
3759
|
+
/* TEXT */
|
|
3760
|
+
),
|
|
3761
|
+
_cache[1] || (_cache[1] = createElementVNode(
|
|
3762
|
+
"img",
|
|
3763
|
+
{
|
|
3764
|
+
style: { "margin-top": "-2px" },
|
|
3765
|
+
class: "time-icon",
|
|
3766
|
+
src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
|
|
3767
|
+
},
|
|
3768
|
+
null,
|
|
3769
|
+
-1
|
|
3770
|
+
/* CACHED */
|
|
3771
|
+
))
|
|
3772
|
+
]),
|
|
3773
|
+
createVNode(_component_nut_popup, {
|
|
3774
|
+
position: "bottom",
|
|
3775
|
+
style: { height: "40%" },
|
|
3776
|
+
round: "",
|
|
3777
|
+
"close-on-click-overlay": true,
|
|
3778
|
+
visible: datePickerOpen.value,
|
|
3779
|
+
"onUpdate:visible": _cache[0] || (_cache[0] = ($event) => datePickerOpen.value = $event)
|
|
3780
|
+
}, {
|
|
3781
|
+
default: withCtx(() => [
|
|
3782
|
+
createVNode(script$w, {
|
|
3783
|
+
from: model.value.from,
|
|
3784
|
+
to: model.value.to,
|
|
3785
|
+
onReset: onDateReset,
|
|
3786
|
+
onComplete: onDateFilterComplete
|
|
3787
|
+
}, null, 8, ["from", "to"])
|
|
3788
|
+
]),
|
|
3789
|
+
_: 1
|
|
3790
|
+
/* STABLE */
|
|
3791
|
+
}, 8, ["visible"])
|
|
3792
|
+
],
|
|
3793
|
+
64
|
|
3794
|
+
/* STABLE_FRAGMENT */
|
|
3795
|
+
);
|
|
3761
3796
|
};
|
|
3762
3797
|
}
|
|
3763
3798
|
});
|
|
3764
3799
|
|
|
3765
|
-
script$
|
|
3800
|
+
script$q.__file = "src/balance/components/DateRange.vue";
|
|
3766
3801
|
|
|
3767
|
-
const _hoisted_1$
|
|
3768
|
-
const _hoisted_2$
|
|
3769
|
-
const _hoisted_3$
|
|
3770
|
-
const _hoisted_4$
|
|
3771
|
-
const _hoisted_5$
|
|
3772
|
-
var script$
|
|
3802
|
+
const _hoisted_1$m = { class: "list-filter-picker" };
|
|
3803
|
+
const _hoisted_2$g = { class: "list-filter-picker-content" };
|
|
3804
|
+
const _hoisted_3$a = { class: "title" };
|
|
3805
|
+
const _hoisted_4$8 = { class: "info" };
|
|
3806
|
+
const _hoisted_5$7 = ["onClick"];
|
|
3807
|
+
var script$p = /* @__PURE__ */ defineComponent({
|
|
3773
3808
|
__name: "ListFilterPicker",
|
|
3774
3809
|
props: {
|
|
3775
3810
|
modelValue: { type: Object, required: true }
|
|
@@ -3819,15 +3854,15 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3819
3854
|
emit("complete", result);
|
|
3820
3855
|
};
|
|
3821
3856
|
return (_ctx, _cache) => {
|
|
3822
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
3857
|
+
return openBlock(), createElementBlock("div", _hoisted_1$m, [
|
|
3823
3858
|
_cache[0] || (_cache[0] = createElementVNode(
|
|
3824
3859
|
"div",
|
|
3825
3860
|
{ class: "list-filter-picker-title" },
|
|
3826
3861
|
" \u9009\u62E9\u7B5B\u9009\u9879 ",
|
|
3827
3862
|
-1
|
|
3828
|
-
/*
|
|
3863
|
+
/* CACHED */
|
|
3829
3864
|
)),
|
|
3830
|
-
createElementVNode("div", _hoisted_2$
|
|
3865
|
+
createElementVNode("div", _hoisted_2$g, [
|
|
3831
3866
|
(openBlock(true), createElementBlock(
|
|
3832
3867
|
Fragment,
|
|
3833
3868
|
null,
|
|
@@ -3838,12 +3873,12 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3838
3873
|
[
|
|
3839
3874
|
createElementVNode(
|
|
3840
3875
|
"div",
|
|
3841
|
-
_hoisted_3$
|
|
3876
|
+
_hoisted_3$a,
|
|
3842
3877
|
toDisplayString(item.label),
|
|
3843
3878
|
1
|
|
3844
3879
|
/* TEXT */
|
|
3845
3880
|
),
|
|
3846
|
-
createElementVNode("div", _hoisted_4$
|
|
3881
|
+
createElementVNode("div", _hoisted_4$8, [
|
|
3847
3882
|
(openBlock(true), createElementBlock(
|
|
3848
3883
|
Fragment,
|
|
3849
3884
|
null,
|
|
@@ -3852,7 +3887,7 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3852
3887
|
onClick: () => onFilterSectionClick(item.name, it.value),
|
|
3853
3888
|
class: normalizeClass([getItemClass(item.name, it.value), "info-item"]),
|
|
3854
3889
|
key: i
|
|
3855
|
-
}, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$
|
|
3890
|
+
}, toDisplayString(typeof it === "string" ? it : it.label), 11, _hoisted_5$7);
|
|
3856
3891
|
}),
|
|
3857
3892
|
128
|
|
3858
3893
|
/* KEYED_FRAGMENT */
|
|
@@ -3882,16 +3917,16 @@ var script$n = /* @__PURE__ */ defineComponent({
|
|
|
3882
3917
|
{ class: "list-filter-picker-bottom" },
|
|
3883
3918
|
null,
|
|
3884
3919
|
-1
|
|
3885
|
-
/*
|
|
3920
|
+
/* CACHED */
|
|
3886
3921
|
))
|
|
3887
3922
|
]);
|
|
3888
3923
|
};
|
|
3889
3924
|
}
|
|
3890
3925
|
});
|
|
3891
3926
|
|
|
3892
|
-
script$
|
|
3927
|
+
script$p.__file = "src/balance/components/ListFilterPicker.vue";
|
|
3893
3928
|
|
|
3894
|
-
var script$
|
|
3929
|
+
var script$o = /* @__PURE__ */ defineComponent({
|
|
3895
3930
|
__name: "ListFilter",
|
|
3896
3931
|
props: {
|
|
3897
3932
|
"modelValue": {
|
|
@@ -3910,7 +3945,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3910
3945
|
const emit = __emit;
|
|
3911
3946
|
const openPicker = () => {
|
|
3912
3947
|
$n.sheet({
|
|
3913
|
-
component: script$
|
|
3948
|
+
component: script$p,
|
|
3914
3949
|
class: "ns-sheet-reset list-filter-sheet",
|
|
3915
3950
|
props: {
|
|
3916
3951
|
modelValue: model,
|
|
@@ -3932,7 +3967,7 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3932
3967
|
{ class: "text" },
|
|
3933
3968
|
"\u7B5B\u9009",
|
|
3934
3969
|
-1
|
|
3935
|
-
/*
|
|
3970
|
+
/* CACHED */
|
|
3936
3971
|
),
|
|
3937
3972
|
createElementVNode(
|
|
3938
3973
|
"img",
|
|
@@ -3942,28 +3977,28 @@ var script$m = /* @__PURE__ */ defineComponent({
|
|
|
3942
3977
|
},
|
|
3943
3978
|
null,
|
|
3944
3979
|
-1
|
|
3945
|
-
/*
|
|
3980
|
+
/* CACHED */
|
|
3946
3981
|
)
|
|
3947
3982
|
]));
|
|
3948
3983
|
};
|
|
3949
3984
|
}
|
|
3950
3985
|
});
|
|
3951
3986
|
|
|
3952
|
-
script$
|
|
3987
|
+
script$o.__file = "src/balance/components/ListFilter.vue";
|
|
3953
3988
|
|
|
3954
|
-
const _hoisted_1$
|
|
3989
|
+
const _hoisted_1$l = {
|
|
3955
3990
|
key: 0,
|
|
3956
3991
|
class: "promoter-card-tab"
|
|
3957
3992
|
};
|
|
3958
|
-
const _hoisted_2$
|
|
3959
|
-
const _hoisted_3$
|
|
3960
|
-
const _hoisted_4$
|
|
3961
|
-
const _hoisted_5$
|
|
3993
|
+
const _hoisted_2$f = { class: "promoter-card-hd-num number" };
|
|
3994
|
+
const _hoisted_3$9 = ["src"];
|
|
3995
|
+
const _hoisted_4$7 = { class: "promoter-card-ft" };
|
|
3996
|
+
const _hoisted_5$6 = {
|
|
3962
3997
|
key: 0,
|
|
3963
3998
|
class: "promoter-card-ft-item"
|
|
3964
3999
|
};
|
|
3965
|
-
const _hoisted_6$
|
|
3966
|
-
const _hoisted_7$
|
|
4000
|
+
const _hoisted_6$4 = { class: "promoter-card-ft-num number" };
|
|
4001
|
+
const _hoisted_7$4 = { class: "promoter-card-ft-info" };
|
|
3967
4002
|
const _hoisted_8$3 = ["src"];
|
|
3968
4003
|
const _hoisted_9$2 = {
|
|
3969
4004
|
key: 1,
|
|
@@ -3975,7 +4010,7 @@ const _hoisted_10$1 = {
|
|
|
3975
4010
|
};
|
|
3976
4011
|
const _hoisted_11$1 = { class: "promoter-card-ft-info" };
|
|
3977
4012
|
const _hoisted_12$1 = ["src"];
|
|
3978
|
-
var script$
|
|
4013
|
+
var script$n = /* @__PURE__ */ defineComponent({
|
|
3979
4014
|
__name: "PromoterCard",
|
|
3980
4015
|
props: {
|
|
3981
4016
|
useCase: { type: String, required: true, default: "" },
|
|
@@ -4070,7 +4105,7 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4070
4105
|
class: normalizeClass(["promoter-card", { inAccount: inAccount.value }])
|
|
4071
4106
|
},
|
|
4072
4107
|
[
|
|
4073
|
-
_ctx.useCase === "company" && _ctx.isAdmin ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
4108
|
+
_ctx.useCase === "company" && _ctx.isAdmin ? (openBlock(), createElementBlock("div", _hoisted_1$l, [
|
|
4074
4109
|
createElementVNode("div", null, [
|
|
4075
4110
|
createVNode(unref(NsButtonGroup), {
|
|
4076
4111
|
size: "sm",
|
|
@@ -4095,7 +4130,7 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4095
4130
|
}, [
|
|
4096
4131
|
createElementVNode(
|
|
4097
4132
|
"div",
|
|
4098
|
-
_hoisted_2$
|
|
4133
|
+
_hoisted_2$f,
|
|
4099
4134
|
toDisplayString(unref(formatAmount)(promoter.value.balance || 0)),
|
|
4100
4135
|
1
|
|
4101
4136
|
/* TEXT */
|
|
@@ -4105,17 +4140,17 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4105
4140
|
{ class: "promoter-card-hd-info" },
|
|
4106
4141
|
"\u53EF\u63D0\u73B0\u4F59\u989D(\u5143)",
|
|
4107
4142
|
-1
|
|
4108
|
-
/*
|
|
4143
|
+
/* CACHED */
|
|
4109
4144
|
)),
|
|
4110
4145
|
createElementVNode("img", {
|
|
4111
4146
|
class: "arrow-img",
|
|
4112
4147
|
style: { "margin-left": "8px" },
|
|
4113
4148
|
src: arrowImg.value,
|
|
4114
4149
|
alt: ""
|
|
4115
|
-
}, null, 8, _hoisted_3$
|
|
4150
|
+
}, null, 8, _hoisted_3$9)
|
|
4116
4151
|
])) : createCommentVNode("v-if", true),
|
|
4117
|
-
createElementVNode("div", _hoisted_4$
|
|
4118
|
-
_ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", _hoisted_5$
|
|
4152
|
+
createElementVNode("div", _hoisted_4$7, [
|
|
4153
|
+
_ctx.applyRecord.accessCheckStatus === "Y" ? (openBlock(), createElementBlock("div", _hoisted_5$6, [
|
|
4119
4154
|
_ctx.\u663E\u793A\u4E0B\u7EA7\u5206\u9500\u5546 ? (openBlock(), createElementBlock(
|
|
4120
4155
|
Fragment,
|
|
4121
4156
|
{ key: 0 },
|
|
@@ -4125,11 +4160,11 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4125
4160
|
{ class: "promoter-card-ft-info" },
|
|
4126
4161
|
"\u4E0B\u7EA7\u5206\u9500\u5546\u6570\u91CF",
|
|
4127
4162
|
-1
|
|
4128
|
-
/*
|
|
4163
|
+
/* CACHED */
|
|
4129
4164
|
)),
|
|
4130
4165
|
createElementVNode(
|
|
4131
4166
|
"div",
|
|
4132
|
-
_hoisted_6$
|
|
4167
|
+
_hoisted_6$4,
|
|
4133
4168
|
toDisplayString(unref(formatAmount)(promoter.value.subDistributorNum || 0)),
|
|
4134
4169
|
1
|
|
4135
4170
|
/* TEXT */
|
|
@@ -4141,7 +4176,7 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4141
4176
|
Fragment,
|
|
4142
4177
|
{ key: 1 },
|
|
4143
4178
|
[
|
|
4144
|
-
createElementVNode("div", _hoisted_7$
|
|
4179
|
+
createElementVNode("div", _hoisted_7$4, [
|
|
4145
4180
|
_cache[8] || (_cache[8] = createTextVNode("\u4EA7\u54C1\u9500\u552E\u6536\u76CA(\u5143) ")),
|
|
4146
4181
|
createVNode(unref(IconFont), {
|
|
4147
4182
|
class: "icon",
|
|
@@ -4204,9 +4239,9 @@ var script$l = /* @__PURE__ */ defineComponent({
|
|
|
4204
4239
|
}
|
|
4205
4240
|
});
|
|
4206
4241
|
|
|
4207
|
-
script$
|
|
4242
|
+
script$n.__file = "src/balance/components/PromoterCard.vue";
|
|
4208
4243
|
|
|
4209
|
-
var script$
|
|
4244
|
+
var script$m = /* @__PURE__ */ defineComponent({
|
|
4210
4245
|
__name: "index",
|
|
4211
4246
|
props: {
|
|
4212
4247
|
name: { type: String, required: true },
|
|
@@ -4234,10 +4269,10 @@ var script$k = /* @__PURE__ */ defineComponent({
|
|
|
4234
4269
|
}
|
|
4235
4270
|
});
|
|
4236
4271
|
|
|
4237
|
-
script$
|
|
4272
|
+
script$m.__file = "src/components/dd-icon/index.vue";
|
|
4238
4273
|
|
|
4239
|
-
const _hoisted_1$
|
|
4240
|
-
var script$
|
|
4274
|
+
const _hoisted_1$k = { class: "dd-area" };
|
|
4275
|
+
var script$l = /* @__PURE__ */ defineComponent({
|
|
4241
4276
|
__name: "index",
|
|
4242
4277
|
props: {
|
|
4243
4278
|
value: { type: String, required: false, default: "" },
|
|
@@ -4396,7 +4431,7 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
4396
4431
|
disabled: props.disabled
|
|
4397
4432
|
}, {
|
|
4398
4433
|
default: withCtx(() => [
|
|
4399
|
-
createElementVNode("div", _hoisted_1$
|
|
4434
|
+
createElementVNode("div", _hoisted_1$k, [
|
|
4400
4435
|
createElementVNode(
|
|
4401
4436
|
"div",
|
|
4402
4437
|
{
|
|
@@ -4407,7 +4442,7 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
4407
4442
|
/* TEXT, CLASS */
|
|
4408
4443
|
),
|
|
4409
4444
|
renderSlot(_ctx.$slots, "icon", {}, () => [
|
|
4410
|
-
props.rightIcon ? (openBlock(), createBlock(script$
|
|
4445
|
+
props.rightIcon ? (openBlock(), createBlock(script$m, {
|
|
4411
4446
|
key: 0,
|
|
4412
4447
|
name: "icon-arrow",
|
|
4413
4448
|
size: "11px",
|
|
@@ -4424,11 +4459,11 @@ var script$j = /* @__PURE__ */ defineComponent({
|
|
|
4424
4459
|
}
|
|
4425
4460
|
});
|
|
4426
4461
|
|
|
4427
|
-
script$
|
|
4462
|
+
script$l.__file = "src/components/dd-area/index.vue";
|
|
4428
4463
|
|
|
4429
|
-
const _hoisted_1$
|
|
4430
|
-
const _hoisted_2$
|
|
4431
|
-
var script$
|
|
4464
|
+
const _hoisted_1$j = { class: "dd-selector" };
|
|
4465
|
+
const _hoisted_2$e = { class: "dd-selector-value" };
|
|
4466
|
+
var script$k = /* @__PURE__ */ defineComponent({
|
|
4432
4467
|
__name: "index",
|
|
4433
4468
|
props: {
|
|
4434
4469
|
value: { type: String, required: false, default: "" },
|
|
@@ -4488,8 +4523,8 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
4488
4523
|
}, {
|
|
4489
4524
|
default: withCtx(() => [
|
|
4490
4525
|
renderSlot(_ctx.$slots, "content", {}, () => [
|
|
4491
|
-
createElementVNode("div", _hoisted_1$
|
|
4492
|
-
createElementVNode("div", _hoisted_2$
|
|
4526
|
+
createElementVNode("div", _hoisted_1$j, [
|
|
4527
|
+
createElementVNode("div", _hoisted_2$e, [
|
|
4493
4528
|
createElementVNode(
|
|
4494
4529
|
"div",
|
|
4495
4530
|
{
|
|
@@ -4506,7 +4541,7 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
4506
4541
|
])
|
|
4507
4542
|
]),
|
|
4508
4543
|
renderSlot(_ctx.$slots, "icon", {}, () => [
|
|
4509
|
-
props.rightIcon ? (openBlock(), createBlock(script$
|
|
4544
|
+
props.rightIcon ? (openBlock(), createBlock(script$m, {
|
|
4510
4545
|
key: 0,
|
|
4511
4546
|
name: "icon-arrow",
|
|
4512
4547
|
size: "11px",
|
|
@@ -4524,14 +4559,14 @@ var script$i = /* @__PURE__ */ defineComponent({
|
|
|
4524
4559
|
}
|
|
4525
4560
|
});
|
|
4526
4561
|
|
|
4527
|
-
script$
|
|
4562
|
+
script$k.__file = "src/components/dd-selector/index.vue";
|
|
4528
4563
|
|
|
4529
|
-
const _hoisted_1$
|
|
4530
|
-
const _hoisted_2$
|
|
4531
|
-
const _hoisted_3$
|
|
4532
|
-
const _hoisted_4$
|
|
4533
|
-
const _hoisted_5$
|
|
4534
|
-
var script$
|
|
4564
|
+
const _hoisted_1$i = { class: "self-registration" };
|
|
4565
|
+
const _hoisted_2$d = { class: "self-registration-body" };
|
|
4566
|
+
const _hoisted_3$8 = ["src"];
|
|
4567
|
+
const _hoisted_4$6 = { class: "self-registration__input" };
|
|
4568
|
+
const _hoisted_5$5 = { class: "self-registration-bottom" };
|
|
4569
|
+
var script$j = /* @__PURE__ */ defineComponent({
|
|
4535
4570
|
__name: "SelfRegistration",
|
|
4536
4571
|
props: {
|
|
4537
4572
|
banner: { type: String, required: false, default: "https://cdn.ddjf.com/static/images/wx-yunservice/ai-form-bg2.png" }
|
|
@@ -4633,13 +4668,13 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4633
4668
|
const _component_nut_form_item = FormItem;
|
|
4634
4669
|
const _component_nut_form = Form;
|
|
4635
4670
|
const _component_nut_button = Button;
|
|
4636
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
4637
|
-
createElementVNode("div", _hoisted_2$
|
|
4671
|
+
return openBlock(), createElementBlock("div", _hoisted_1$i, [
|
|
4672
|
+
createElementVNode("div", _hoisted_2$d, [
|
|
4638
4673
|
createElementVNode("img", {
|
|
4639
4674
|
src: _ctx.banner,
|
|
4640
4675
|
class: "self-registration-banner",
|
|
4641
4676
|
alt: ""
|
|
4642
|
-
}, null, 8, _hoisted_3$
|
|
4677
|
+
}, null, 8, _hoisted_3$8),
|
|
4643
4678
|
createVNode(_component_nut_form, null, {
|
|
4644
4679
|
default: withCtx(() => [
|
|
4645
4680
|
createVNode(_component_nut_form_item, {
|
|
@@ -4658,15 +4693,15 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4658
4693
|
default: withCtx(() => _cache[7] || (_cache[7] = [
|
|
4659
4694
|
createTextVNode("\u4E2A\u4EBA\u4F7F\u7528")
|
|
4660
4695
|
])),
|
|
4661
|
-
_: 1
|
|
4662
|
-
|
|
4696
|
+
_: 1,
|
|
4697
|
+
__: [7]
|
|
4663
4698
|
}),
|
|
4664
4699
|
createVNode(_component_nut_radio, { label: "company" }, {
|
|
4665
4700
|
default: withCtx(() => _cache[8] || (_cache[8] = [
|
|
4666
4701
|
createTextVNode("\u516C\u53F8\u4F7F\u7528")
|
|
4667
4702
|
])),
|
|
4668
|
-
_: 1
|
|
4669
|
-
|
|
4703
|
+
_: 1,
|
|
4704
|
+
__: [8]
|
|
4670
4705
|
})
|
|
4671
4706
|
]),
|
|
4672
4707
|
_: 1
|
|
@@ -4681,7 +4716,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4681
4716
|
required: ""
|
|
4682
4717
|
}, {
|
|
4683
4718
|
default: withCtx(() => [
|
|
4684
|
-
createElementVNode("div", _hoisted_4$
|
|
4719
|
+
createElementVNode("div", _hoisted_4$6, [
|
|
4685
4720
|
withDirectives(createElementVNode(
|
|
4686
4721
|
"input",
|
|
4687
4722
|
{
|
|
@@ -4697,7 +4732,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4697
4732
|
), [
|
|
4698
4733
|
[vModelText, formState.name]
|
|
4699
4734
|
]),
|
|
4700
|
-
createVNode(script$
|
|
4735
|
+
createVNode(script$F, { onComplete: onOCRInfo }, {
|
|
4701
4736
|
icon: withCtx(() => _cache[9] || (_cache[9] = [
|
|
4702
4737
|
createElementVNode(
|
|
4703
4738
|
"img",
|
|
@@ -4707,7 +4742,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4707
4742
|
},
|
|
4708
4743
|
null,
|
|
4709
4744
|
-1
|
|
4710
|
-
/*
|
|
4745
|
+
/* CACHED */
|
|
4711
4746
|
)
|
|
4712
4747
|
])),
|
|
4713
4748
|
_: 1
|
|
@@ -4751,7 +4786,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4751
4786
|
required: ""
|
|
4752
4787
|
}, {
|
|
4753
4788
|
default: withCtx(() => [
|
|
4754
|
-
createVNode(script$
|
|
4789
|
+
createVNode(script$k, {
|
|
4755
4790
|
value: formState.position,
|
|
4756
4791
|
"onUpdate:value": _cache[3] || (_cache[3] = ($event) => formState.position = $event),
|
|
4757
4792
|
options: positionOptions
|
|
@@ -4813,7 +4848,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4813
4848
|
required: ""
|
|
4814
4849
|
}, {
|
|
4815
4850
|
default: withCtx(() => [
|
|
4816
|
-
createVNode(script$
|
|
4851
|
+
createVNode(script$l, {
|
|
4817
4852
|
value: formState.areaCode,
|
|
4818
4853
|
"onUpdate:value": _cache[6] || (_cache[6] = ($event) => formState.areaCode = $event),
|
|
4819
4854
|
type: "city",
|
|
@@ -4832,7 +4867,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4832
4867
|
/* STABLE */
|
|
4833
4868
|
})
|
|
4834
4869
|
]),
|
|
4835
|
-
createElementVNode("div", _hoisted_5$
|
|
4870
|
+
createElementVNode("div", _hoisted_5$5, [
|
|
4836
4871
|
createVNode(_component_nut_button, {
|
|
4837
4872
|
block: "",
|
|
4838
4873
|
type: "primary",
|
|
@@ -4842,8 +4877,8 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4842
4877
|
default: withCtx(() => _cache[10] || (_cache[10] = [
|
|
4843
4878
|
createTextVNode("\u7ACB\u5373\u4F53\u9A8C")
|
|
4844
4879
|
])),
|
|
4845
|
-
_: 1
|
|
4846
|
-
|
|
4880
|
+
_: 1,
|
|
4881
|
+
__: [10]
|
|
4847
4882
|
})
|
|
4848
4883
|
])
|
|
4849
4884
|
]);
|
|
@@ -4851,7 +4886,7 @@ var script$h = /* @__PURE__ */ defineComponent({
|
|
|
4851
4886
|
}
|
|
4852
4887
|
});
|
|
4853
4888
|
|
|
4854
|
-
script$
|
|
4889
|
+
script$j.__file = "src/register/components/SelfRegistration.vue";
|
|
4855
4890
|
|
|
4856
4891
|
const endpointsList$1 = {};
|
|
4857
4892
|
Object.fromEntries(
|
|
@@ -4948,9 +4983,9 @@ function useHttp$1() {
|
|
|
4948
4983
|
return $http;
|
|
4949
4984
|
}
|
|
4950
4985
|
|
|
4951
|
-
const _hoisted_1$
|
|
4952
|
-
const _hoisted_2$
|
|
4953
|
-
var script$
|
|
4986
|
+
const _hoisted_1$h = { class: "notice-popup-bd" };
|
|
4987
|
+
const _hoisted_2$c = { style: { "white-space": "pre-wrap" } };
|
|
4988
|
+
var script$i = /* @__PURE__ */ defineComponent({
|
|
4954
4989
|
__name: "NoticePopup",
|
|
4955
4990
|
props: {
|
|
4956
4991
|
message: { type: null, required: true, default: {} }
|
|
@@ -5002,12 +5037,12 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
5002
5037
|
createTextVNode("\u7CFB\u7EDF\u516C\u544A ")
|
|
5003
5038
|
],
|
|
5004
5039
|
-1
|
|
5005
|
-
/*
|
|
5040
|
+
/* CACHED */
|
|
5006
5041
|
)),
|
|
5007
|
-
createElementVNode("div", _hoisted_1$
|
|
5042
|
+
createElementVNode("div", _hoisted_1$h, [
|
|
5008
5043
|
createElementVNode(
|
|
5009
5044
|
"div",
|
|
5010
|
-
_hoisted_2$
|
|
5045
|
+
_hoisted_2$c,
|
|
5011
5046
|
toDisplayString(_ctx.message.context.replace("\u3010\u7CFB\u7EDF\u516C\u544A\u3011 ", "")),
|
|
5012
5047
|
1
|
|
5013
5048
|
/* TEXT */
|
|
@@ -5025,14 +5060,14 @@ var script$g = /* @__PURE__ */ defineComponent({
|
|
|
5025
5060
|
}, "\u6211\u77E5\u9053\u4E86")
|
|
5026
5061
|
])
|
|
5027
5062
|
]),
|
|
5028
|
-
_: 1
|
|
5029
|
-
|
|
5063
|
+
_: 1,
|
|
5064
|
+
__: [1]
|
|
5030
5065
|
}, 8, ["visible"]);
|
|
5031
5066
|
};
|
|
5032
5067
|
}
|
|
5033
5068
|
});
|
|
5034
5069
|
|
|
5035
|
-
script$
|
|
5070
|
+
script$i.__file = "src/notice/components/NoticePopup.vue";
|
|
5036
5071
|
|
|
5037
5072
|
function useNotice() {
|
|
5038
5073
|
async function noticeClick(item, cb) {
|
|
@@ -5060,9 +5095,9 @@ function useNotice() {
|
|
|
5060
5095
|
};
|
|
5061
5096
|
}
|
|
5062
5097
|
|
|
5063
|
-
const _hoisted_1$
|
|
5064
|
-
const _hoisted_2$
|
|
5065
|
-
var script$
|
|
5098
|
+
const _hoisted_1$g = { class: "notice-banner-text" };
|
|
5099
|
+
const _hoisted_2$b = ["onClick"];
|
|
5100
|
+
var script$h = /* @__PURE__ */ defineComponent({
|
|
5066
5101
|
__name: "NoticeBanner",
|
|
5067
5102
|
props: {
|
|
5068
5103
|
app: { type: String, required: true, default: "" },
|
|
@@ -5072,7 +5107,7 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5072
5107
|
emits: ["detail", "close", "view", "popup"],
|
|
5073
5108
|
setup(__props, { emit: __emit }) {
|
|
5074
5109
|
const props = __props;
|
|
5075
|
-
const { noticeClick } = useNotice();
|
|
5110
|
+
const { toReadFun, noticeClick } = useNotice();
|
|
5076
5111
|
const bannerMessages = ref([]);
|
|
5077
5112
|
const popMessages = ref([]);
|
|
5078
5113
|
const activeKey = ref(0);
|
|
@@ -5186,7 +5221,7 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5186
5221
|
Fragment,
|
|
5187
5222
|
null,
|
|
5188
5223
|
renderList(bannerMessages.value, (item, key) => {
|
|
5189
|
-
return openBlock(), createBlock(script$
|
|
5224
|
+
return openBlock(), createBlock(script$H, {
|
|
5190
5225
|
class: normalizeClass({ show: key === activeKey.value }),
|
|
5191
5226
|
key,
|
|
5192
5227
|
showClose: item.noticeType === 0,
|
|
@@ -5202,11 +5237,11 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5202
5237
|
},
|
|
5203
5238
|
null,
|
|
5204
5239
|
-1
|
|
5205
|
-
/*
|
|
5240
|
+
/* CACHED */
|
|
5206
5241
|
)),
|
|
5207
5242
|
createElementVNode(
|
|
5208
5243
|
"div",
|
|
5209
|
-
_hoisted_1$
|
|
5244
|
+
_hoisted_1$g,
|
|
5210
5245
|
toDisplayString(item.context),
|
|
5211
5246
|
1
|
|
5212
5247
|
/* TEXT */
|
|
@@ -5214,10 +5249,10 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5214
5249
|
createElementVNode("div", {
|
|
5215
5250
|
class: "notice-banner-btn",
|
|
5216
5251
|
onClick: ($event) => onDetail(item)
|
|
5217
|
-
}, "\u8BE6\u60C5", 8, _hoisted_2$
|
|
5252
|
+
}, "\u8BE6\u60C5", 8, _hoisted_2$b)
|
|
5218
5253
|
]),
|
|
5219
|
-
_: 2
|
|
5220
|
-
|
|
5254
|
+
_: 2,
|
|
5255
|
+
__: [1]
|
|
5221
5256
|
}, 1032, ["class", "showClose", "onClose"]);
|
|
5222
5257
|
}),
|
|
5223
5258
|
128
|
|
@@ -5232,7 +5267,7 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5232
5267
|
Fragment,
|
|
5233
5268
|
null,
|
|
5234
5269
|
renderList(popMessages.value, (item, key) => {
|
|
5235
|
-
return openBlock(), createBlock(script$
|
|
5270
|
+
return openBlock(), createBlock(script$i, {
|
|
5236
5271
|
key,
|
|
5237
5272
|
message: item,
|
|
5238
5273
|
onClose: ($event) => popMessages.value.splice(key, 1),
|
|
@@ -5250,14 +5285,14 @@ var script$f = /* @__PURE__ */ defineComponent({
|
|
|
5250
5285
|
}
|
|
5251
5286
|
});
|
|
5252
5287
|
|
|
5253
|
-
script$
|
|
5288
|
+
script$h.__file = "src/notice/components/NoticeBanner.vue";
|
|
5254
5289
|
|
|
5255
|
-
const _hoisted_1$
|
|
5256
|
-
const _hoisted_2$
|
|
5290
|
+
const _hoisted_1$f = { class: "notice-entry" };
|
|
5291
|
+
const _hoisted_2$a = {
|
|
5257
5292
|
key: 0,
|
|
5258
5293
|
class: "notice-entry-icon"
|
|
5259
5294
|
};
|
|
5260
|
-
var script$
|
|
5295
|
+
var script$g = /* @__PURE__ */ defineComponent({
|
|
5261
5296
|
__name: "NoticeEntry",
|
|
5262
5297
|
props: {
|
|
5263
5298
|
app: { type: String, required: true, default: "" },
|
|
@@ -5293,7 +5328,7 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
5293
5328
|
});
|
|
5294
5329
|
}
|
|
5295
5330
|
return (_ctx, _cache) => {
|
|
5296
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5331
|
+
return openBlock(), createElementBlock("div", _hoisted_1$f, [
|
|
5297
5332
|
_cache[0] || (_cache[0] = createElementVNode(
|
|
5298
5333
|
"img",
|
|
5299
5334
|
{
|
|
@@ -5303,27 +5338,27 @@ var script$e = /* @__PURE__ */ defineComponent({
|
|
|
5303
5338
|
},
|
|
5304
5339
|
null,
|
|
5305
5340
|
-1
|
|
5306
|
-
/*
|
|
5341
|
+
/* CACHED */
|
|
5307
5342
|
)),
|
|
5308
5343
|
_cache[1] || (_cache[1] = createElementVNode(
|
|
5309
5344
|
"span",
|
|
5310
5345
|
null,
|
|
5311
5346
|
"\u901A\u77E5",
|
|
5312
5347
|
-1
|
|
5313
|
-
/*
|
|
5348
|
+
/* CACHED */
|
|
5314
5349
|
)),
|
|
5315
|
-
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$
|
|
5350
|
+
noticeShow.value ? (openBlock(), createElementBlock("div", _hoisted_2$a)) : createCommentVNode("v-if", true)
|
|
5316
5351
|
]);
|
|
5317
5352
|
};
|
|
5318
5353
|
}
|
|
5319
5354
|
});
|
|
5320
5355
|
|
|
5321
|
-
script$
|
|
5356
|
+
script$g.__file = "src/notice/components/NoticeEntry.vue";
|
|
5322
5357
|
|
|
5323
|
-
const _hoisted_1$
|
|
5324
|
-
const _hoisted_2$
|
|
5325
|
-
const _hoisted_3$
|
|
5326
|
-
var script$
|
|
5358
|
+
const _hoisted_1$e = { class: "dd-search__form" };
|
|
5359
|
+
const _hoisted_2$9 = { class: "dd-search__control" };
|
|
5360
|
+
const _hoisted_3$7 = ["disabled", "placeholder", "focus"];
|
|
5361
|
+
var script$f = /* @__PURE__ */ defineComponent({
|
|
5327
5362
|
__name: "index",
|
|
5328
5363
|
props: {
|
|
5329
5364
|
disabled: { type: Boolean, required: false, default: false },
|
|
@@ -5376,7 +5411,7 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
5376
5411
|
}])
|
|
5377
5412
|
},
|
|
5378
5413
|
[
|
|
5379
|
-
createElementVNode("div", _hoisted_1$
|
|
5414
|
+
createElementVNode("div", _hoisted_1$e, [
|
|
5380
5415
|
_cache[2] || (_cache[2] = createElementVNode(
|
|
5381
5416
|
"div",
|
|
5382
5417
|
{ class: "dd-search__prefix" },
|
|
@@ -5387,9 +5422,9 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
5387
5422
|
})
|
|
5388
5423
|
],
|
|
5389
5424
|
-1
|
|
5390
|
-
/*
|
|
5425
|
+
/* CACHED */
|
|
5391
5426
|
)),
|
|
5392
|
-
createElementVNode("div", _hoisted_2$
|
|
5427
|
+
createElementVNode("div", _hoisted_2$9, [
|
|
5393
5428
|
withDirectives(createElementVNode("input", {
|
|
5394
5429
|
class: "dd-search__input",
|
|
5395
5430
|
type: "text",
|
|
@@ -5403,7 +5438,7 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
5403
5438
|
onConfirm,
|
|
5404
5439
|
onFocus: onFoucs,
|
|
5405
5440
|
onBlur
|
|
5406
|
-
}, null, 40, _hoisted_3$
|
|
5441
|
+
}, null, 40, _hoisted_3$7), [
|
|
5407
5442
|
[vModelText, key.value]
|
|
5408
5443
|
])
|
|
5409
5444
|
]),
|
|
@@ -5422,7 +5457,7 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
5422
5457
|
},
|
|
5423
5458
|
null,
|
|
5424
5459
|
-1
|
|
5425
|
-
/*
|
|
5460
|
+
/* CACHED */
|
|
5426
5461
|
)
|
|
5427
5462
|
]),
|
|
5428
5463
|
544
|
|
@@ -5444,7 +5479,7 @@ var script$d = /* @__PURE__ */ defineComponent({
|
|
|
5444
5479
|
}
|
|
5445
5480
|
});
|
|
5446
5481
|
|
|
5447
|
-
script$
|
|
5482
|
+
script$f.__file = "src/components/dd-search/index.vue";
|
|
5448
5483
|
|
|
5449
5484
|
function useCommonList(api, query, loading = true, method = "GET") {
|
|
5450
5485
|
const isLast = ref(false);
|
|
@@ -5505,19 +5540,19 @@ function useCommonList(api, query, loading = true, method = "GET") {
|
|
|
5505
5540
|
};
|
|
5506
5541
|
}
|
|
5507
5542
|
|
|
5508
|
-
const _hoisted_1$
|
|
5509
|
-
const _hoisted_2$
|
|
5510
|
-
const _hoisted_3$
|
|
5543
|
+
const _hoisted_1$d = { class: "notice-list" };
|
|
5544
|
+
const _hoisted_2$8 = { style: { "flex": "1", "overflow": "hidden" } };
|
|
5545
|
+
const _hoisted_3$6 = {
|
|
5511
5546
|
key: 0,
|
|
5512
5547
|
class: "wrapper"
|
|
5513
5548
|
};
|
|
5514
|
-
const _hoisted_4$
|
|
5515
|
-
const _hoisted_5$
|
|
5516
|
-
const _hoisted_6$
|
|
5549
|
+
const _hoisted_4$5 = ["onClick"];
|
|
5550
|
+
const _hoisted_5$4 = { class: "time" };
|
|
5551
|
+
const _hoisted_6$3 = {
|
|
5517
5552
|
key: 0,
|
|
5518
5553
|
class: "notice-list-label"
|
|
5519
5554
|
};
|
|
5520
|
-
const _hoisted_7$
|
|
5555
|
+
const _hoisted_7$3 = ["onClick"];
|
|
5521
5556
|
const _hoisted_8$2 = {
|
|
5522
5557
|
key: 0,
|
|
5523
5558
|
class: "cue-text",
|
|
@@ -5527,7 +5562,7 @@ const _hoisted_9$1 = {
|
|
|
5527
5562
|
key: 1,
|
|
5528
5563
|
class: "no-data"
|
|
5529
5564
|
};
|
|
5530
|
-
var script$
|
|
5565
|
+
var script$e = /* @__PURE__ */ defineComponent({
|
|
5531
5566
|
__name: "NoticeList",
|
|
5532
5567
|
props: {
|
|
5533
5568
|
app: { type: String, required: true, default: "" },
|
|
@@ -5604,16 +5639,16 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5604
5639
|
const emits = __emit;
|
|
5605
5640
|
return (_ctx, _cache) => {
|
|
5606
5641
|
const _component_rich_text = resolveComponent("rich-text");
|
|
5607
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5608
|
-
createVNode(script$
|
|
5642
|
+
return openBlock(), createElementBlock("div", _hoisted_1$d, [
|
|
5643
|
+
createVNode(script$f, {
|
|
5609
5644
|
bordered: false,
|
|
5610
5645
|
focus: false,
|
|
5611
5646
|
value: query.value.title,
|
|
5612
5647
|
placeholder: "\u8BF7\u8F93\u5165\u5173\u952E\u5B57\u641C\u7D22",
|
|
5613
5648
|
onSearch
|
|
5614
5649
|
}, null, 8, ["value"]),
|
|
5615
|
-
createElementVNode("div", _hoisted_2$
|
|
5616
|
-
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$
|
|
5650
|
+
createElementVNode("div", _hoisted_2$8, [
|
|
5651
|
+
unref(list).length ? (openBlock(), createElementBlock("div", _hoisted_3$6, [
|
|
5617
5652
|
createVNode(unref(ScrollView), {
|
|
5618
5653
|
class: "content",
|
|
5619
5654
|
"scroll-y": true,
|
|
@@ -5639,12 +5674,12 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5639
5674
|
{ class: "point" },
|
|
5640
5675
|
null,
|
|
5641
5676
|
-1
|
|
5642
|
-
/*
|
|
5677
|
+
/* CACHED */
|
|
5643
5678
|
)),
|
|
5644
5679
|
createElementVNode("div", null, [
|
|
5645
5680
|
createElementVNode(
|
|
5646
5681
|
"div",
|
|
5647
|
-
_hoisted_5$
|
|
5682
|
+
_hoisted_5$4,
|
|
5648
5683
|
toDisplayString(formatMinutes(item.receiveTime)),
|
|
5649
5684
|
1
|
|
5650
5685
|
/* TEXT */
|
|
@@ -5664,7 +5699,7 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5664
5699
|
),
|
|
5665
5700
|
_ctx.showApp && appMap[item.appCode] ? (openBlock(), createElementBlock(
|
|
5666
5701
|
"div",
|
|
5667
|
-
_hoisted_6$
|
|
5702
|
+
_hoisted_6$3,
|
|
5668
5703
|
toDisplayString(appMap[item.appCode]),
|
|
5669
5704
|
1
|
|
5670
5705
|
/* TEXT */
|
|
@@ -5687,13 +5722,13 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5687
5722
|
key: 0,
|
|
5688
5723
|
class: "notice-list-file",
|
|
5689
5724
|
onClick: ($event) => onNoticeView(item.link)
|
|
5690
|
-
}, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$
|
|
5725
|
+
}, " \u67E5\u770B\u9644\u4EF6 ", 8, _hoisted_7$3)) : createCommentVNode("v-if", true)
|
|
5691
5726
|
],
|
|
5692
5727
|
2
|
|
5693
5728
|
/* CLASS */
|
|
5694
5729
|
)
|
|
5695
5730
|
])
|
|
5696
|
-
], 10, _hoisted_4$
|
|
5731
|
+
], 10, _hoisted_4$5);
|
|
5697
5732
|
}),
|
|
5698
5733
|
128
|
|
5699
5734
|
/* KEYED_FRAGMENT */
|
|
@@ -5715,14 +5750,14 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5715
5750
|
})
|
|
5716
5751
|
],
|
|
5717
5752
|
-1
|
|
5718
|
-
/*
|
|
5753
|
+
/* CACHED */
|
|
5719
5754
|
),
|
|
5720
5755
|
createElementVNode(
|
|
5721
5756
|
"div",
|
|
5722
5757
|
{ class: "text" },
|
|
5723
5758
|
"\u6682\u65E0\u8BB0\u5F55",
|
|
5724
5759
|
-1
|
|
5725
|
-
/*
|
|
5760
|
+
/* CACHED */
|
|
5726
5761
|
)
|
|
5727
5762
|
])))
|
|
5728
5763
|
])
|
|
@@ -5731,13 +5766,13 @@ var script$c = /* @__PURE__ */ defineComponent({
|
|
|
5731
5766
|
}
|
|
5732
5767
|
});
|
|
5733
5768
|
|
|
5734
|
-
script$
|
|
5769
|
+
script$e.__file = "src/notice/components/NoticeList.vue";
|
|
5735
5770
|
|
|
5736
|
-
const _hoisted_1$
|
|
5737
|
-
const _hoisted_2$
|
|
5738
|
-
const _hoisted_3$
|
|
5739
|
-
const _hoisted_4$
|
|
5740
|
-
var script$
|
|
5771
|
+
const _hoisted_1$c = { class: "user-entry" };
|
|
5772
|
+
const _hoisted_2$7 = { class: "user-entry-head" };
|
|
5773
|
+
const _hoisted_3$5 = ["src"];
|
|
5774
|
+
const _hoisted_4$4 = { class: "user-entry-bd" };
|
|
5775
|
+
var script$d = /* @__PURE__ */ defineComponent({
|
|
5741
5776
|
__name: "UserEntry",
|
|
5742
5777
|
props: {
|
|
5743
5778
|
avatar: { type: String, required: false, default: "" },
|
|
@@ -5759,8 +5794,8 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5759
5794
|
}
|
|
5760
5795
|
const emits = __emit;
|
|
5761
5796
|
return (_ctx, _cache) => {
|
|
5762
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5763
|
-
createElementVNode("div", _hoisted_2$
|
|
5797
|
+
return openBlock(), createElementBlock("div", _hoisted_1$c, [
|
|
5798
|
+
createElementVNode("div", _hoisted_2$7, [
|
|
5764
5799
|
_ctx.avatar ? (openBlock(), createElementBlock("img", {
|
|
5765
5800
|
key: 0,
|
|
5766
5801
|
class: "user-entry-head-img",
|
|
@@ -5768,7 +5803,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5768
5803
|
mode: "aspectFit",
|
|
5769
5804
|
src: _ctx.avatar,
|
|
5770
5805
|
alt: ""
|
|
5771
|
-
}, null, 8, _hoisted_3$
|
|
5806
|
+
}, null, 8, _hoisted_3$5)) : (openBlock(), createElementBlock("img", {
|
|
5772
5807
|
key: 1,
|
|
5773
5808
|
class: "user-entry-head-img",
|
|
5774
5809
|
mode: "aspectFit",
|
|
@@ -5777,7 +5812,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5777
5812
|
alt: ""
|
|
5778
5813
|
}))
|
|
5779
5814
|
]),
|
|
5780
|
-
createElementVNode("div", _hoisted_4$
|
|
5815
|
+
createElementVNode("div", _hoisted_4$4, [
|
|
5781
5816
|
!_ctx.mobile ? (openBlock(), createElementBlock("div", {
|
|
5782
5817
|
key: 0,
|
|
5783
5818
|
class: "user-entry-bd-bigtxt",
|
|
@@ -5794,7 +5829,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5794
5829
|
})
|
|
5795
5830
|
],
|
|
5796
5831
|
-1
|
|
5797
|
-
/*
|
|
5832
|
+
/* CACHED */
|
|
5798
5833
|
)
|
|
5799
5834
|
]))) : (openBlock(), createElementBlock(
|
|
5800
5835
|
Fragment,
|
|
@@ -5819,7 +5854,7 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5819
5854
|
})
|
|
5820
5855
|
],
|
|
5821
5856
|
-1
|
|
5822
|
-
/*
|
|
5857
|
+
/* CACHED */
|
|
5823
5858
|
))
|
|
5824
5859
|
]),
|
|
5825
5860
|
createElementVNode(
|
|
@@ -5842,10 +5877,10 @@ var script$b = /* @__PURE__ */ defineComponent({
|
|
|
5842
5877
|
}
|
|
5843
5878
|
});
|
|
5844
5879
|
|
|
5845
|
-
script$
|
|
5880
|
+
script$d.__file = "src/user/components/UserEntry.vue";
|
|
5846
5881
|
|
|
5847
|
-
const _hoisted_1$
|
|
5848
|
-
var script$
|
|
5882
|
+
const _hoisted_1$b = { class: "dd-skeleton" };
|
|
5883
|
+
var script$c = /* @__PURE__ */ defineComponent({
|
|
5849
5884
|
__name: "index",
|
|
5850
5885
|
props: {
|
|
5851
5886
|
row: { type: Number, required: false, default: 3 },
|
|
@@ -5855,7 +5890,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5855
5890
|
setup(__props) {
|
|
5856
5891
|
return (_ctx, _cache) => {
|
|
5857
5892
|
const _component_nut_skeleton = Skeleton;
|
|
5858
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
5893
|
+
return openBlock(), createElementBlock("div", _hoisted_1$b, [
|
|
5859
5894
|
(openBlock(true), createElementBlock(
|
|
5860
5895
|
Fragment,
|
|
5861
5896
|
null,
|
|
@@ -5888,7 +5923,7 @@ var script$a = /* @__PURE__ */ defineComponent({
|
|
|
5888
5923
|
}
|
|
5889
5924
|
});
|
|
5890
5925
|
|
|
5891
|
-
script$
|
|
5926
|
+
script$c.__file = "src/components/dd-skeleton/index.vue";
|
|
5892
5927
|
|
|
5893
5928
|
const endpointsList = {};
|
|
5894
5929
|
Object.fromEntries(
|
|
@@ -5989,25 +6024,25 @@ function useHttp() {
|
|
|
5989
6024
|
return $http;
|
|
5990
6025
|
}
|
|
5991
6026
|
|
|
5992
|
-
const _hoisted_1$
|
|
6027
|
+
const _hoisted_1$a = {
|
|
5993
6028
|
key: 1,
|
|
5994
6029
|
class: "user-info-wrap"
|
|
5995
6030
|
};
|
|
5996
|
-
const _hoisted_2$
|
|
5997
|
-
const _hoisted_3$
|
|
5998
|
-
const _hoisted_4$
|
|
6031
|
+
const _hoisted_2$6 = { class: "user-info-head" };
|
|
6032
|
+
const _hoisted_3$4 = ["src"];
|
|
6033
|
+
const _hoisted_4$3 = {
|
|
5999
6034
|
key: 1,
|
|
6000
6035
|
class: "user-info-head-img",
|
|
6001
6036
|
mode: "aspectFit",
|
|
6002
6037
|
src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
|
|
6003
6038
|
alt: ""
|
|
6004
6039
|
};
|
|
6005
|
-
const _hoisted_5$
|
|
6006
|
-
const _hoisted_6$
|
|
6040
|
+
const _hoisted_5$3 = { key: 0 };
|
|
6041
|
+
const _hoisted_6$2 = {
|
|
6007
6042
|
key: 1,
|
|
6008
6043
|
style: { "color": "#e8523f" }
|
|
6009
6044
|
};
|
|
6010
|
-
const _hoisted_7$
|
|
6045
|
+
const _hoisted_7$2 = {
|
|
6011
6046
|
key: 2,
|
|
6012
6047
|
style: { "color": "#017fff" }
|
|
6013
6048
|
};
|
|
@@ -6051,7 +6086,7 @@ const _hoisted_26 = {
|
|
|
6051
6086
|
src: "https://cdn.ddjf.com/static/images/wx-yunservice/account-head.png",
|
|
6052
6087
|
alt: ""
|
|
6053
6088
|
};
|
|
6054
|
-
var script$
|
|
6089
|
+
var script$b = /* @__PURE__ */ defineComponent({
|
|
6055
6090
|
__name: "UserInfo",
|
|
6056
6091
|
props: {
|
|
6057
6092
|
miniType: { type: String, required: false, default: "05" },
|
|
@@ -6269,18 +6304,18 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6269
6304
|
class: "user-info"
|
|
6270
6305
|
}, {
|
|
6271
6306
|
default: withCtx(() => [
|
|
6272
|
-
firstLoading.value ? (openBlock(), createBlock(script$
|
|
6307
|
+
firstLoading.value ? (openBlock(), createBlock(script$c, {
|
|
6273
6308
|
key: 0,
|
|
6274
6309
|
row: 3
|
|
6275
|
-
})) : (openBlock(), createElementBlock("div", _hoisted_1$
|
|
6310
|
+
})) : (openBlock(), createElementBlock("div", _hoisted_1$a, [
|
|
6276
6311
|
_cache[9] || (_cache[9] = createElementVNode(
|
|
6277
6312
|
"div",
|
|
6278
6313
|
{ class: "user-info-tit" },
|
|
6279
6314
|
"\u8D26\u53F7\u4FE1\u606F",
|
|
6280
6315
|
-1
|
|
6281
|
-
/*
|
|
6316
|
+
/* CACHED */
|
|
6282
6317
|
)),
|
|
6283
|
-
createElementVNode("div", _hoisted_2$
|
|
6318
|
+
createElementVNode("div", _hoisted_2$6, [
|
|
6284
6319
|
createElementVNode("div", {
|
|
6285
6320
|
class: "user-info-head-avatar",
|
|
6286
6321
|
onClick: _cache[0] || (_cache[0] = ($event) => avatarVisible.value = true)
|
|
@@ -6291,7 +6326,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6291
6326
|
mode: "aspectFit",
|
|
6292
6327
|
src: userInfo.value.avatar,
|
|
6293
6328
|
alt: ""
|
|
6294
|
-
}, null, 8, _hoisted_3$
|
|
6329
|
+
}, null, 8, _hoisted_3$4)) : (openBlock(), createElementBlock("img", _hoisted_4$3)),
|
|
6295
6330
|
_cache[6] || (_cache[6] = createElementVNode(
|
|
6296
6331
|
"div",
|
|
6297
6332
|
{ class: "user-info-head-upload" },
|
|
@@ -6304,7 +6339,7 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6304
6339
|
})
|
|
6305
6340
|
],
|
|
6306
6341
|
-1
|
|
6307
|
-
/*
|
|
6342
|
+
/* CACHED */
|
|
6308
6343
|
))
|
|
6309
6344
|
]),
|
|
6310
6345
|
createVNode(_component_nut_cell, {
|
|
@@ -6330,9 +6365,9 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6330
6365
|
onClick: toAuth
|
|
6331
6366
|
}, {
|
|
6332
6367
|
desc: withCtx(() => [
|
|
6333
|
-
userInfo.value?.verifyResult === 1 ? (openBlock(), createElementBlock("span", _hoisted_5$
|
|
6334
|
-
userInfo.value?.verifyResult === 0 ? (openBlock(), createElementBlock("span", _hoisted_6$
|
|
6335
|
-
userInfo.value?.verifyResult != 0 && userInfo.value?.verifyResult != 1 ? (openBlock(), createElementBlock("span", _hoisted_7$
|
|
6368
|
+
userInfo.value?.verifyResult === 1 ? (openBlock(), createElementBlock("span", _hoisted_5$3, "\u5DF2\u8BA4\u8BC1")) : createCommentVNode("v-if", true),
|
|
6369
|
+
userInfo.value?.verifyResult === 0 ? (openBlock(), createElementBlock("span", _hoisted_6$2, "\u5DF2\u5931\u6548\uFF0C\u91CD\u65B0\u8BA4\u8BC1")) : createCommentVNode("v-if", true),
|
|
6370
|
+
userInfo.value?.verifyResult != 0 && userInfo.value?.verifyResult != 1 ? (openBlock(), createElementBlock("span", _hoisted_7$2, "\u672A\u8BA4\u8BC1\uFF0C\u53BB\u8BA4\u8BC1")) : createCommentVNode("v-if", true)
|
|
6336
6371
|
]),
|
|
6337
6372
|
_: 1
|
|
6338
6373
|
/* STABLE */
|
|
@@ -6482,8 +6517,8 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6482
6517
|
default: withCtx(() => _cache[8] || (_cache[8] = [
|
|
6483
6518
|
createTextVNode("\u9000\u51FA\u767B\u5F55")
|
|
6484
6519
|
])),
|
|
6485
|
-
_: 1
|
|
6486
|
-
|
|
6520
|
+
_: 1,
|
|
6521
|
+
__: [8]
|
|
6487
6522
|
})
|
|
6488
6523
|
])
|
|
6489
6524
|
]))
|
|
@@ -6509,8 +6544,8 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6509
6544
|
default: withCtx(() => _cache[10] || (_cache[10] = [
|
|
6510
6545
|
createTextVNode(" \u53D6\u6D88 ")
|
|
6511
6546
|
])),
|
|
6512
|
-
_: 1
|
|
6513
|
-
|
|
6547
|
+
_: 1,
|
|
6548
|
+
__: [10]
|
|
6514
6549
|
}),
|
|
6515
6550
|
createVNode(_component_nut_button, {
|
|
6516
6551
|
class: "change-username-popup-ok",
|
|
@@ -6520,8 +6555,8 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6520
6555
|
default: withCtx(() => _cache[11] || (_cache[11] = [
|
|
6521
6556
|
createTextVNode(" \u786E\u5B9A ")
|
|
6522
6557
|
])),
|
|
6523
|
-
_: 1
|
|
6524
|
-
|
|
6558
|
+
_: 1,
|
|
6559
|
+
__: [11]
|
|
6525
6560
|
})
|
|
6526
6561
|
]),
|
|
6527
6562
|
default: withCtx(() => [
|
|
@@ -6553,8 +6588,8 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6553
6588
|
default: withCtx(() => _cache[12] || (_cache[12] = [
|
|
6554
6589
|
createTextVNode(" \u53D6\u6D88 ")
|
|
6555
6590
|
])),
|
|
6556
|
-
_: 1
|
|
6557
|
-
|
|
6591
|
+
_: 1,
|
|
6592
|
+
__: [12]
|
|
6558
6593
|
}),
|
|
6559
6594
|
createVNode(_component_nut_button, {
|
|
6560
6595
|
class: "change-username-popup-ok",
|
|
@@ -6564,8 +6599,8 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6564
6599
|
default: withCtx(() => _cache[13] || (_cache[13] = [
|
|
6565
6600
|
createTextVNode(" \u786E\u5B9A ")
|
|
6566
6601
|
])),
|
|
6567
|
-
_: 1
|
|
6568
|
-
|
|
6602
|
+
_: 1,
|
|
6603
|
+
__: [13]
|
|
6569
6604
|
})
|
|
6570
6605
|
]),
|
|
6571
6606
|
default: withCtx(() => [
|
|
@@ -6622,22 +6657,22 @@ var script$9 = /* @__PURE__ */ defineComponent({
|
|
|
6622
6657
|
}
|
|
6623
6658
|
});
|
|
6624
6659
|
|
|
6625
|
-
script$
|
|
6660
|
+
script$b.__file = "src/user/components/UserInfo.vue";
|
|
6626
6661
|
|
|
6627
|
-
const _hoisted_1$
|
|
6628
|
-
const _hoisted_2$
|
|
6629
|
-
const _hoisted_3$
|
|
6630
|
-
const _hoisted_4$
|
|
6662
|
+
const _hoisted_1$9 = { class: "user-binding" };
|
|
6663
|
+
const _hoisted_2$5 = { class: "user-binding-layout" };
|
|
6664
|
+
const _hoisted_3$3 = ["src"];
|
|
6665
|
+
const _hoisted_4$2 = {
|
|
6631
6666
|
key: 0,
|
|
6632
6667
|
class: "user-binding-layout user-binding-inputlayout",
|
|
6633
6668
|
style: { "flex": "1" }
|
|
6634
6669
|
};
|
|
6635
|
-
const _hoisted_5$
|
|
6670
|
+
const _hoisted_5$2 = {
|
|
6636
6671
|
key: 1,
|
|
6637
6672
|
class: "user-binding-layout user-binding-inputlayout",
|
|
6638
6673
|
style: { "flex": "1" }
|
|
6639
6674
|
};
|
|
6640
|
-
var script$
|
|
6675
|
+
var script$a = /* @__PURE__ */ defineComponent({
|
|
6641
6676
|
__name: "UserBinding",
|
|
6642
6677
|
emits: ["success"],
|
|
6643
6678
|
setup(__props, { emit: __emit }) {
|
|
@@ -6719,12 +6754,12 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
6719
6754
|
const _component_nut_form_item = FormItem;
|
|
6720
6755
|
const _component_nut_button = Button;
|
|
6721
6756
|
const _component_nut_form = Form;
|
|
6722
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6723
|
-
createElementVNode("div", _hoisted_2$
|
|
6757
|
+
return openBlock(), createElementBlock("div", _hoisted_1$9, [
|
|
6758
|
+
createElementVNode("div", _hoisted_2$5, [
|
|
6724
6759
|
createElementVNode("img", {
|
|
6725
6760
|
class: "user-binding-img",
|
|
6726
6761
|
src: `https://cdn.ddjf.com/static/images/customer-center/user-${current.value === 1 ? "binding" : "auth"}.png`
|
|
6727
|
-
}, null, 8, _hoisted_3$
|
|
6762
|
+
}, null, 8, _hoisted_3$3),
|
|
6728
6763
|
createVNode(_component_nut_steps, {
|
|
6729
6764
|
current: current.value,
|
|
6730
6765
|
class: "user-binding-steps"
|
|
@@ -6734,22 +6769,22 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
6734
6769
|
default: withCtx(() => _cache[4] || (_cache[4] = [
|
|
6735
6770
|
createTextVNode("1")
|
|
6736
6771
|
])),
|
|
6737
|
-
_: 1
|
|
6738
|
-
|
|
6772
|
+
_: 1,
|
|
6773
|
+
__: [4]
|
|
6739
6774
|
}),
|
|
6740
6775
|
createVNode(_component_nut_step, { title: "\u6362\u7ED1\u624B\u673A" }, {
|
|
6741
6776
|
default: withCtx(() => _cache[5] || (_cache[5] = [
|
|
6742
6777
|
createTextVNode("2")
|
|
6743
6778
|
])),
|
|
6744
|
-
_: 1
|
|
6745
|
-
|
|
6779
|
+
_: 1,
|
|
6780
|
+
__: [5]
|
|
6746
6781
|
})
|
|
6747
6782
|
]),
|
|
6748
6783
|
_: 1
|
|
6749
6784
|
/* STABLE */
|
|
6750
6785
|
}, 8, ["current"])
|
|
6751
6786
|
]),
|
|
6752
|
-
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
6787
|
+
current.value === 1 ? (openBlock(), createElementBlock("div", _hoisted_4$2, [
|
|
6753
6788
|
createVNode(_component_nut_form, null, {
|
|
6754
6789
|
default: withCtx(() => [
|
|
6755
6790
|
createVNode(_component_nut_form_item, {
|
|
@@ -6820,10 +6855,10 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
6820
6855
|
default: withCtx(() => _cache[6] || (_cache[6] = [
|
|
6821
6856
|
createTextVNode("\u63D0\u4EA4")
|
|
6822
6857
|
])),
|
|
6823
|
-
_: 1
|
|
6824
|
-
|
|
6858
|
+
_: 1,
|
|
6859
|
+
__: [6]
|
|
6825
6860
|
}, 8, ["disabled"])
|
|
6826
|
-
])) : (openBlock(), createElementBlock("div", _hoisted_5$
|
|
6861
|
+
])) : (openBlock(), createElementBlock("div", _hoisted_5$2, [
|
|
6827
6862
|
createVNode(_component_nut_form, null, {
|
|
6828
6863
|
default: withCtx(() => [
|
|
6829
6864
|
createVNode(_component_nut_form_item, {
|
|
@@ -6893,8 +6928,8 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
6893
6928
|
default: withCtx(() => _cache[7] || (_cache[7] = [
|
|
6894
6929
|
createTextVNode("\u63D0\u4EA4")
|
|
6895
6930
|
])),
|
|
6896
|
-
_: 1
|
|
6897
|
-
|
|
6931
|
+
_: 1,
|
|
6932
|
+
__: [7]
|
|
6898
6933
|
}, 8, ["disabled"])
|
|
6899
6934
|
]))
|
|
6900
6935
|
]);
|
|
@@ -6902,11 +6937,11 @@ var script$8 = /* @__PURE__ */ defineComponent({
|
|
|
6902
6937
|
}
|
|
6903
6938
|
});
|
|
6904
6939
|
|
|
6905
|
-
script$
|
|
6940
|
+
script$a.__file = "src/user/components/UserBinding.vue";
|
|
6906
6941
|
|
|
6907
|
-
const _hoisted_1$
|
|
6908
|
-
const _hoisted_2$
|
|
6909
|
-
var script$
|
|
6942
|
+
const _hoisted_1$8 = { class: "user-binding-success" };
|
|
6943
|
+
const _hoisted_2$4 = { class: "user-binding-success-info" };
|
|
6944
|
+
var script$9 = /* @__PURE__ */ defineComponent({
|
|
6910
6945
|
__name: "UserBindingSuccess",
|
|
6911
6946
|
emits: ["binding"],
|
|
6912
6947
|
setup(__props, { emit: __emit }) {
|
|
@@ -6924,7 +6959,7 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6924
6959
|
const emits = __emit;
|
|
6925
6960
|
return (_ctx, _cache) => {
|
|
6926
6961
|
const _component_nut_button = Button;
|
|
6927
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
6962
|
+
return openBlock(), createElementBlock("div", _hoisted_1$8, [
|
|
6928
6963
|
_cache[2] || (_cache[2] = createElementVNode(
|
|
6929
6964
|
"img",
|
|
6930
6965
|
{
|
|
@@ -6934,11 +6969,11 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6934
6969
|
},
|
|
6935
6970
|
null,
|
|
6936
6971
|
-1
|
|
6937
|
-
/*
|
|
6972
|
+
/* CACHED */
|
|
6938
6973
|
)),
|
|
6939
6974
|
createElementVNode(
|
|
6940
6975
|
"div",
|
|
6941
|
-
_hoisted_2$
|
|
6976
|
+
_hoisted_2$4,
|
|
6942
6977
|
toDisplayString(showEncode.value ? unref(encodePhone)(unref(params).mobile || "") : unref(params).mobile),
|
|
6943
6978
|
1
|
|
6944
6979
|
/* TEXT */
|
|
@@ -6961,15 +6996,15 @@ var script$7 = /* @__PURE__ */ defineComponent({
|
|
|
6961
6996
|
default: withCtx(() => _cache[1] || (_cache[1] = [
|
|
6962
6997
|
createTextVNode("\u6362\u7ED1\u624B\u673A\u53F7\u7801")
|
|
6963
6998
|
])),
|
|
6964
|
-
_: 1
|
|
6965
|
-
|
|
6999
|
+
_: 1,
|
|
7000
|
+
__: [1]
|
|
6966
7001
|
})
|
|
6967
7002
|
]);
|
|
6968
7003
|
};
|
|
6969
7004
|
}
|
|
6970
7005
|
});
|
|
6971
7006
|
|
|
6972
|
-
script$
|
|
7007
|
+
script$9.__file = "src/user/components/UserBindingSuccess.vue";
|
|
6973
7008
|
|
|
6974
7009
|
function ratio(width = 2, height = 1) {
|
|
6975
7010
|
return width / height;
|
|
@@ -7091,7 +7126,7 @@ function sleep(time = 200) {
|
|
|
7091
7126
|
}
|
|
7092
7127
|
|
|
7093
7128
|
var startOffsetX = 0, startOffsetY = 0, startTouchsDistance = 0, startChangeLeft = 0, startChangeTop = 0, startChangeWidth = 0, startChangeHeight = 0, initScale = 1, startTouches = [], timer = null;
|
|
7094
|
-
var script$
|
|
7129
|
+
var script$8 = {
|
|
7095
7130
|
name: "bt-cropper",
|
|
7096
7131
|
props: {
|
|
7097
7132
|
// 图片路径,支持网络路径和本地路径
|
|
@@ -7578,11 +7613,11 @@ var script$6 = {
|
|
|
7578
7613
|
}
|
|
7579
7614
|
};
|
|
7580
7615
|
|
|
7581
|
-
const _hoisted_1$
|
|
7582
|
-
const _hoisted_2$
|
|
7583
|
-
const _hoisted_3$
|
|
7616
|
+
const _hoisted_1$7 = { class: "bt-container" };
|
|
7617
|
+
const _hoisted_2$3 = ["src"];
|
|
7618
|
+
const _hoisted_3$2 = { class: "slot" };
|
|
7584
7619
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
7585
|
-
return openBlock(), createElementBlock("view", _hoisted_1$
|
|
7620
|
+
return openBlock(), createElementBlock("view", _hoisted_1$7, [
|
|
7586
7621
|
createElementVNode("view", {
|
|
7587
7622
|
class: "iconfont icon-replay",
|
|
7588
7623
|
onClick: _cache[0] || (_cache[0] = withModifiers((...args) => $options.resetImage && $options.resetImage(...args), ["stop"]))
|
|
@@ -7602,7 +7637,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7602
7637
|
onTouchmove: _cache[1] || (_cache[1] = withModifiers((...args) => $options.onImageMove && $options.onImageMove(...args), ["stop", "prevent"])),
|
|
7603
7638
|
style: normalizeStyle([$options.imageStyle]),
|
|
7604
7639
|
class: "image"
|
|
7605
|
-
}, null, 44, _hoisted_2$
|
|
7640
|
+
}, null, 44, _hoisted_2$3),
|
|
7606
7641
|
$props.imageSrc && $data.imageInfo ? (openBlock(), createElementBlock(
|
|
7607
7642
|
"view",
|
|
7608
7643
|
{
|
|
@@ -7626,28 +7661,28 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7626
7661
|
{ class: "line row row1" },
|
|
7627
7662
|
null,
|
|
7628
7663
|
-1
|
|
7629
|
-
/*
|
|
7664
|
+
/* CACHED */
|
|
7630
7665
|
)),
|
|
7631
7666
|
_cache[13] || (_cache[13] = createElementVNode(
|
|
7632
7667
|
"view",
|
|
7633
7668
|
{ class: "line row row2" },
|
|
7634
7669
|
null,
|
|
7635
7670
|
-1
|
|
7636
|
-
/*
|
|
7671
|
+
/* CACHED */
|
|
7637
7672
|
)),
|
|
7638
7673
|
_cache[14] || (_cache[14] = createElementVNode(
|
|
7639
7674
|
"view",
|
|
7640
7675
|
{ class: "line col col1" },
|
|
7641
7676
|
null,
|
|
7642
7677
|
-1
|
|
7643
|
-
/*
|
|
7678
|
+
/* CACHED */
|
|
7644
7679
|
)),
|
|
7645
7680
|
_cache[15] || (_cache[15] = createElementVNode(
|
|
7646
7681
|
"view",
|
|
7647
7682
|
{ class: "line col col2" },
|
|
7648
7683
|
null,
|
|
7649
7684
|
-1
|
|
7650
|
-
/*
|
|
7685
|
+
/* CACHED */
|
|
7651
7686
|
))
|
|
7652
7687
|
],
|
|
7653
7688
|
64
|
|
@@ -7757,7 +7792,7 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7757
7792
|
32
|
|
7758
7793
|
/* NEED_HYDRATION */
|
|
7759
7794
|
),
|
|
7760
|
-
createElementVNode("view", _hoisted_3$
|
|
7795
|
+
createElementVNode("view", _hoisted_3$2, [
|
|
7761
7796
|
renderSlot(_ctx.$slots, "default")
|
|
7762
7797
|
]),
|
|
7763
7798
|
$options.isWeapp ? (openBlock(), createElementBlock(
|
|
@@ -7793,11 +7828,11 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7793
7828
|
]);
|
|
7794
7829
|
}
|
|
7795
7830
|
|
|
7796
|
-
script$
|
|
7797
|
-
script$
|
|
7831
|
+
script$8.render = render;
|
|
7832
|
+
script$8.__file = "src/components/bt-cropper/index.vue";
|
|
7798
7833
|
|
|
7799
|
-
const _hoisted_1$
|
|
7800
|
-
var script$
|
|
7834
|
+
const _hoisted_1$6 = { class: "user-head-crop" };
|
|
7835
|
+
var script$7 = /* @__PURE__ */ defineComponent({
|
|
7801
7836
|
__name: "UserHeadCrop",
|
|
7802
7837
|
setup(__props) {
|
|
7803
7838
|
const { params } = useRouter();
|
|
@@ -7821,8 +7856,8 @@ var script$5 = /* @__PURE__ */ defineComponent({
|
|
|
7821
7856
|
}
|
|
7822
7857
|
}
|
|
7823
7858
|
return (_ctx, _cache) => {
|
|
7824
|
-
return openBlock(), createElementBlock("div", _hoisted_1$
|
|
7825
|
-
createVNode(script$
|
|
7859
|
+
return openBlock(), createElementBlock("div", _hoisted_1$6, [
|
|
7860
|
+
createVNode(script$8, {
|
|
7826
7861
|
ref_key: "cropperRef",
|
|
7827
7862
|
ref: cropperRef,
|
|
7828
7863
|
imageSrc: unref(params).src,
|
|
@@ -7848,23 +7883,23 @@ var script$5 = /* @__PURE__ */ defineComponent({
|
|
|
7848
7883
|
}
|
|
7849
7884
|
});
|
|
7850
7885
|
|
|
7851
|
-
script$
|
|
7886
|
+
script$7.__file = "src/user/components/UserHeadCrop.vue";
|
|
7852
7887
|
|
|
7853
|
-
const _hoisted_1$
|
|
7888
|
+
const _hoisted_1$5 = {
|
|
7854
7889
|
key: 0,
|
|
7855
7890
|
class: "user-feedback-wrap"
|
|
7856
7891
|
};
|
|
7857
|
-
const _hoisted_2$
|
|
7858
|
-
const _hoisted_3 = { class: "user-feedback-handle" };
|
|
7859
|
-
const _hoisted_4 = ["src"];
|
|
7860
|
-
const _hoisted_5 = ["src"];
|
|
7861
|
-
const _hoisted_6 = ["onClick"];
|
|
7862
|
-
const _hoisted_7 = { class: "user-feedback-footer" };
|
|
7892
|
+
const _hoisted_2$2 = { class: "user-feedback-body" };
|
|
7893
|
+
const _hoisted_3$1 = { class: "user-feedback-handle" };
|
|
7894
|
+
const _hoisted_4$1 = ["src"];
|
|
7895
|
+
const _hoisted_5$1 = ["src"];
|
|
7896
|
+
const _hoisted_6$1 = ["onClick"];
|
|
7897
|
+
const _hoisted_7$1 = { class: "user-feedback-footer" };
|
|
7863
7898
|
const _hoisted_8 = {
|
|
7864
7899
|
key: 1,
|
|
7865
7900
|
class: "user-feedback-wrap"
|
|
7866
7901
|
};
|
|
7867
|
-
var script$
|
|
7902
|
+
var script$6 = /* @__PURE__ */ defineComponent({
|
|
7868
7903
|
__name: "UserFeedback",
|
|
7869
7904
|
props: {
|
|
7870
7905
|
app: { type: String, required: false, default: "" },
|
|
@@ -8040,7 +8075,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8040
8075
|
class: normalizeClass(["user-feedback", { isSuccess: isSuccess.value }])
|
|
8041
8076
|
},
|
|
8042
8077
|
[
|
|
8043
|
-
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$
|
|
8078
|
+
!isSuccess.value ? (openBlock(), createElementBlock("div", _hoisted_1$5, [
|
|
8044
8079
|
_cache[4] || (_cache[4] = createElementVNode(
|
|
8045
8080
|
"img",
|
|
8046
8081
|
{
|
|
@@ -8049,23 +8084,23 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8049
8084
|
},
|
|
8050
8085
|
null,
|
|
8051
8086
|
-1
|
|
8052
|
-
/*
|
|
8087
|
+
/* CACHED */
|
|
8053
8088
|
)),
|
|
8054
8089
|
_cache[5] || (_cache[5] = createElementVNode(
|
|
8055
8090
|
"div",
|
|
8056
8091
|
{ class: "user-feedback-tit" },
|
|
8057
8092
|
"\u8865\u5145\u63CF\u8FF0",
|
|
8058
8093
|
-1
|
|
8059
|
-
/*
|
|
8094
|
+
/* CACHED */
|
|
8060
8095
|
)),
|
|
8061
|
-
createElementVNode("div", _hoisted_2$
|
|
8096
|
+
createElementVNode("div", _hoisted_2$2, [
|
|
8062
8097
|
createVNode(_component_editor, {
|
|
8063
8098
|
id: "myEditor",
|
|
8064
8099
|
"show-img-resize": true,
|
|
8065
8100
|
class: "user-feedback-editor",
|
|
8066
8101
|
placeholder: "\u8BF7\u8F93\u5165\u8865\u5145\u63CF\u8FF0"
|
|
8067
8102
|
}),
|
|
8068
|
-
createElementVNode("div", _hoisted_3, [
|
|
8103
|
+
createElementVNode("div", _hoisted_3$1, [
|
|
8069
8104
|
(openBlock(true), createElementBlock(
|
|
8070
8105
|
Fragment,
|
|
8071
8106
|
null,
|
|
@@ -8083,11 +8118,11 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8083
8118
|
class: "user-feedback-handle-item-img",
|
|
8084
8119
|
mode: "aspectFit",
|
|
8085
8120
|
src: item.url
|
|
8086
|
-
}, null, 8, _hoisted_4)) : (openBlock(), createElementBlock("video", {
|
|
8121
|
+
}, null, 8, _hoisted_4$1)) : (openBlock(), createElementBlock("video", {
|
|
8087
8122
|
key: 1,
|
|
8088
8123
|
class: "user-feedback-handle-item-img",
|
|
8089
8124
|
src: item.url
|
|
8090
|
-
}, null, 8, _hoisted_5)),
|
|
8125
|
+
}, null, 8, _hoisted_5$1)),
|
|
8091
8126
|
createElementVNode("div", {
|
|
8092
8127
|
class: "user-feedback-handle-item-close",
|
|
8093
8128
|
onClick: ($event) => onDelete(key)
|
|
@@ -8100,9 +8135,9 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8100
8135
|
},
|
|
8101
8136
|
null,
|
|
8102
8137
|
-1
|
|
8103
|
-
/*
|
|
8138
|
+
/* CACHED */
|
|
8104
8139
|
)
|
|
8105
|
-
])], 8, _hoisted_6)
|
|
8140
|
+
])], 8, _hoisted_6$1)
|
|
8106
8141
|
],
|
|
8107
8142
|
64
|
|
8108
8143
|
/* STABLE_FRAGMENT */
|
|
@@ -8117,7 +8152,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8117
8152
|
},
|
|
8118
8153
|
null,
|
|
8119
8154
|
-1
|
|
8120
|
-
/*
|
|
8155
|
+
/* CACHED */
|
|
8121
8156
|
))
|
|
8122
8157
|
]);
|
|
8123
8158
|
}),
|
|
@@ -8130,7 +8165,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8130
8165
|
}, "+")
|
|
8131
8166
|
])
|
|
8132
8167
|
]),
|
|
8133
|
-
createElementVNode("div", _hoisted_7, [
|
|
8168
|
+
createElementVNode("div", _hoisted_7$1, [
|
|
8134
8169
|
createVNode(_component_nut_button, {
|
|
8135
8170
|
class: "user-feedback-footer-btn",
|
|
8136
8171
|
plain: "",
|
|
@@ -8140,8 +8175,8 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8140
8175
|
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
8141
8176
|
createTextVNode("\u6700\u5C0F\u5316")
|
|
8142
8177
|
])),
|
|
8143
|
-
_: 1
|
|
8144
|
-
|
|
8178
|
+
_: 1,
|
|
8179
|
+
__: [2]
|
|
8145
8180
|
}),
|
|
8146
8181
|
createVNode(_component_nut_button, {
|
|
8147
8182
|
class: "user-feedback-footer-btn",
|
|
@@ -8151,8 +8186,8 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8151
8186
|
default: withCtx(() => _cache[3] || (_cache[3] = [
|
|
8152
8187
|
createTextVNode("\u53CD\u9988")
|
|
8153
8188
|
])),
|
|
8154
|
-
_: 1
|
|
8155
|
-
|
|
8189
|
+
_: 1,
|
|
8190
|
+
__: [3]
|
|
8156
8191
|
})
|
|
8157
8192
|
])
|
|
8158
8193
|
])) : (openBlock(), createElementBlock("div", _hoisted_8, _cache[6] || (_cache[6] = [
|
|
@@ -8165,14 +8200,14 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8165
8200
|
},
|
|
8166
8201
|
null,
|
|
8167
8202
|
-1
|
|
8168
|
-
/*
|
|
8203
|
+
/* CACHED */
|
|
8169
8204
|
),
|
|
8170
8205
|
createElementVNode(
|
|
8171
8206
|
"div",
|
|
8172
8207
|
{ class: "user-feedback-success-info" },
|
|
8173
8208
|
"\u63D0\u4EA4\u6210\u529F",
|
|
8174
8209
|
-1
|
|
8175
|
-
/*
|
|
8210
|
+
/* CACHED */
|
|
8176
8211
|
)
|
|
8177
8212
|
])))
|
|
8178
8213
|
],
|
|
@@ -8183,7 +8218,7 @@ var script$4 = /* @__PURE__ */ defineComponent({
|
|
|
8183
8218
|
}
|
|
8184
8219
|
});
|
|
8185
8220
|
|
|
8186
|
-
script$
|
|
8221
|
+
script$6.__file = "src/user/components/UserFeedback.vue";
|
|
8187
8222
|
|
|
8188
8223
|
function useDragBox() {
|
|
8189
8224
|
const dragData = reactive({
|
|
@@ -8268,7 +8303,7 @@ function useDragBox() {
|
|
|
8268
8303
|
};
|
|
8269
8304
|
}
|
|
8270
8305
|
|
|
8271
|
-
var script$
|
|
8306
|
+
var script$5 = /* @__PURE__ */ defineComponent({
|
|
8272
8307
|
__name: "UserFeedbackEntry",
|
|
8273
8308
|
props: {
|
|
8274
8309
|
hasStorage: { type: Boolean, required: false, default: false },
|
|
@@ -8365,14 +8400,14 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
8365
8400
|
},
|
|
8366
8401
|
null,
|
|
8367
8402
|
-1
|
|
8368
|
-
/*
|
|
8403
|
+
/* CACHED */
|
|
8369
8404
|
),
|
|
8370
8405
|
createElementVNode(
|
|
8371
8406
|
"div",
|
|
8372
8407
|
null,
|
|
8373
8408
|
"\u53CD\u9988",
|
|
8374
8409
|
-1
|
|
8375
|
-
/*
|
|
8410
|
+
/* CACHED */
|
|
8376
8411
|
)
|
|
8377
8412
|
]),
|
|
8378
8413
|
36
|
|
@@ -8407,7 +8442,7 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
8407
8442
|
},
|
|
8408
8443
|
null,
|
|
8409
8444
|
-1
|
|
8410
|
-
/*
|
|
8445
|
+
/* CACHED */
|
|
8411
8446
|
)
|
|
8412
8447
|
]))
|
|
8413
8448
|
],
|
|
@@ -8418,10 +8453,10 @@ var script$3 = /* @__PURE__ */ defineComponent({
|
|
|
8418
8453
|
}
|
|
8419
8454
|
});
|
|
8420
8455
|
|
|
8421
|
-
script$
|
|
8456
|
+
script$5.__file = "src/user/components/UserFeedbackEntry.vue";
|
|
8422
8457
|
|
|
8423
|
-
const _hoisted_1$
|
|
8424
|
-
var script$
|
|
8458
|
+
const _hoisted_1$4 = { class: "login-setting-text" };
|
|
8459
|
+
var script$4 = /* @__PURE__ */ defineComponent({
|
|
8425
8460
|
__name: "LoginSetting",
|
|
8426
8461
|
props: {
|
|
8427
8462
|
app: { type: String, required: true, default: "" },
|
|
@@ -8489,11 +8524,11 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
8489
8524
|
},
|
|
8490
8525
|
null,
|
|
8491
8526
|
-1
|
|
8492
|
-
/*
|
|
8527
|
+
/* CACHED */
|
|
8493
8528
|
)),
|
|
8494
8529
|
createElementVNode(
|
|
8495
8530
|
"div",
|
|
8496
|
-
_hoisted_1$
|
|
8531
|
+
_hoisted_1$4,
|
|
8497
8532
|
toDisplayString(loginRuleTip.value),
|
|
8498
8533
|
1
|
|
8499
8534
|
/* TEXT */
|
|
@@ -8506,10 +8541,10 @@ var script$2 = /* @__PURE__ */ defineComponent({
|
|
|
8506
8541
|
}
|
|
8507
8542
|
});
|
|
8508
8543
|
|
|
8509
|
-
script$
|
|
8544
|
+
script$4.__file = "src/user/components/LoginSetting.vue";
|
|
8510
8545
|
|
|
8511
|
-
const _hoisted_1$
|
|
8512
|
-
var script$
|
|
8546
|
+
const _hoisted_1$3 = { class: "user-resource-empty-text" };
|
|
8547
|
+
var script$3 = /* @__PURE__ */ defineComponent({
|
|
8513
8548
|
__name: "UserResourceEmpty",
|
|
8514
8549
|
props: {
|
|
8515
8550
|
appInfo: { type: null, required: true, default: {} },
|
|
@@ -8547,11 +8582,11 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
8547
8582
|
},
|
|
8548
8583
|
null,
|
|
8549
8584
|
-1
|
|
8550
|
-
/*
|
|
8585
|
+
/* CACHED */
|
|
8551
8586
|
)),
|
|
8552
8587
|
createElementVNode(
|
|
8553
8588
|
"div",
|
|
8554
|
-
_hoisted_1$
|
|
8589
|
+
_hoisted_1$3,
|
|
8555
8590
|
" \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 ",
|
|
8556
8591
|
1
|
|
8557
8592
|
/* TEXT */
|
|
@@ -8564,14 +8599,14 @@ var script$1 = /* @__PURE__ */ defineComponent({
|
|
|
8564
8599
|
}
|
|
8565
8600
|
});
|
|
8566
8601
|
|
|
8567
|
-
script$
|
|
8602
|
+
script$3.__file = "src/user/components/UserResourceEmpty.vue";
|
|
8568
8603
|
|
|
8569
|
-
const _hoisted_1 = { class: "user-auth-footer" };
|
|
8570
|
-
const _hoisted_2 = {
|
|
8604
|
+
const _hoisted_1$2 = { class: "user-auth-footer" };
|
|
8605
|
+
const _hoisted_2$1 = {
|
|
8571
8606
|
key: 0,
|
|
8572
8607
|
class: "checkbox-row"
|
|
8573
8608
|
};
|
|
8574
|
-
var script = /* @__PURE__ */ defineComponent({
|
|
8609
|
+
var script$2 = /* @__PURE__ */ defineComponent({
|
|
8575
8610
|
__name: "UserAuth",
|
|
8576
8611
|
props: {
|
|
8577
8612
|
userId: { type: String, required: true, default: "" },
|
|
@@ -8679,7 +8714,7 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8679
8714
|
rules: ["required"]
|
|
8680
8715
|
}, {
|
|
8681
8716
|
append: withCtx(() => [
|
|
8682
|
-
!\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createBlock(unref(script$
|
|
8717
|
+
!\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createBlock(unref(script$F), {
|
|
8683
8718
|
key: 0,
|
|
8684
8719
|
onComplete: onOcrComplete
|
|
8685
8720
|
})) : createCommentVNode("v-if", true)
|
|
@@ -8728,8 +8763,8 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8728
8763
|
_: 1
|
|
8729
8764
|
/* STABLE */
|
|
8730
8765
|
}),
|
|
8731
|
-
createElementVNode("div", _hoisted_1, [
|
|
8732
|
-
!\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createElementBlock("div", _hoisted_2, [
|
|
8766
|
+
createElementVNode("div", _hoisted_1$2, [
|
|
8767
|
+
!\u5DF2\u8BA4\u8BC1.value ? (openBlock(), createElementBlock("div", _hoisted_2$1, [
|
|
8733
8768
|
createVNode(unref(NsCheckbox), {
|
|
8734
8769
|
style: { "font-size": "11px" },
|
|
8735
8770
|
modelValue: unref(formData).\u540C\u610F,
|
|
@@ -8738,8 +8773,8 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8738
8773
|
default: withCtx(() => _cache[5] || (_cache[5] = [
|
|
8739
8774
|
createTextVNode("\u6211\u5DF2\u9605\u8BFB\u5E76\u540C\u610F")
|
|
8740
8775
|
])),
|
|
8741
|
-
_: 1
|
|
8742
|
-
|
|
8776
|
+
_: 1,
|
|
8777
|
+
__: [5]
|
|
8743
8778
|
}, 8, ["modelValue"]),
|
|
8744
8779
|
createElementVNode("span", {
|
|
8745
8780
|
onClick: showAgreement,
|
|
@@ -8756,8 +8791,8 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8756
8791
|
default: withCtx(() => _cache[6] || (_cache[6] = [
|
|
8757
8792
|
createTextVNode("\u7ACB\u5373\u8BA4\u8BC1")
|
|
8758
8793
|
])),
|
|
8759
|
-
_: 1
|
|
8760
|
-
|
|
8794
|
+
_: 1,
|
|
8795
|
+
__: [6]
|
|
8761
8796
|
})) : (openBlock(), createBlock(unref(NsButton), {
|
|
8762
8797
|
key: 2,
|
|
8763
8798
|
class: "btn",
|
|
@@ -8768,8 +8803,8 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8768
8803
|
default: withCtx(() => _cache[7] || (_cache[7] = [
|
|
8769
8804
|
createTextVNode("\u8FD4\u56DE")
|
|
8770
8805
|
])),
|
|
8771
|
-
_: 1
|
|
8772
|
-
|
|
8806
|
+
_: 1,
|
|
8807
|
+
__: [7]
|
|
8773
8808
|
}))
|
|
8774
8809
|
])
|
|
8775
8810
|
]),
|
|
@@ -8784,7 +8819,428 @@ var script = /* @__PURE__ */ defineComponent({
|
|
|
8784
8819
|
}
|
|
8785
8820
|
});
|
|
8786
8821
|
|
|
8787
|
-
script.__file = "src/user/components/UserAuth.vue";
|
|
8822
|
+
script$2.__file = "src/user/components/UserAuth.vue";
|
|
8823
|
+
|
|
8824
|
+
const _hoisted_1$1 = { class: "poster-paste" };
|
|
8825
|
+
var script$1 = /* @__PURE__ */ defineComponent({
|
|
8826
|
+
__name: "poster-paste",
|
|
8827
|
+
props: {
|
|
8828
|
+
poster: { type: null, required: true },
|
|
8829
|
+
logo: { type: String, required: true },
|
|
8830
|
+
nick: { type: String, required: true },
|
|
8831
|
+
zoom: { type: Number, required: true }
|
|
8832
|
+
},
|
|
8833
|
+
setup(__props) {
|
|
8834
|
+
const props = __props;
|
|
8835
|
+
const t = (s) => Math.round(s * (props.zoom || 1));
|
|
8836
|
+
const tx = (s) => 100 * Math.round(s * (props.zoom || 1)) / 221;
|
|
8837
|
+
const ty = (s) => 100 * Math.round(s * (props.zoom || 1)) / 480;
|
|
8838
|
+
return (_ctx, _cache) => {
|
|
8839
|
+
return openBlock(), createElementBlock("div", _hoisted_1$1, [
|
|
8840
|
+
createElementVNode(
|
|
8841
|
+
"div",
|
|
8842
|
+
{
|
|
8843
|
+
class: normalizeClass(["picture"]),
|
|
8844
|
+
style: normalizeStyle({ backgroundImage: `url(${_ctx.poster.back})` })
|
|
8845
|
+
},
|
|
8846
|
+
null,
|
|
8847
|
+
4
|
|
8848
|
+
/* STYLE */
|
|
8849
|
+
),
|
|
8850
|
+
_ctx.logo ? (openBlock(), createElementBlock(
|
|
8851
|
+
"div",
|
|
8852
|
+
{
|
|
8853
|
+
key: 0,
|
|
8854
|
+
class: "logo",
|
|
8855
|
+
style: normalizeStyle({
|
|
8856
|
+
width: `${tx(25)}%`,
|
|
8857
|
+
height: `${ty(25)}%`,
|
|
8858
|
+
..._ctx.poster.logoX ? { left: `${tx(20)}%` } : {},
|
|
8859
|
+
..._ctx.poster.logoX ? { top: `${ty(25)}%` } : {},
|
|
8860
|
+
backgroundImage: `url(${_ctx.logo})`,
|
|
8861
|
+
backgroundRepeat: "no-repeat"
|
|
8862
|
+
})
|
|
8863
|
+
},
|
|
8864
|
+
null,
|
|
8865
|
+
4
|
|
8866
|
+
/* STYLE */
|
|
8867
|
+
)) : createCommentVNode("v-if", true),
|
|
8868
|
+
_ctx.nick ? (openBlock(), createElementBlock(
|
|
8869
|
+
"div",
|
|
8870
|
+
{
|
|
8871
|
+
key: 1,
|
|
8872
|
+
class: "nick",
|
|
8873
|
+
style: normalizeStyle({
|
|
8874
|
+
..._ctx.poster.nickX ? { left: `${t(_ctx.poster.nickX)}px` } : {},
|
|
8875
|
+
..._ctx.poster.nickY ? { top: `${t(28)}px` } : {},
|
|
8876
|
+
fontSize: `${t(16)}px`,
|
|
8877
|
+
color: "#353535"
|
|
8878
|
+
})
|
|
8879
|
+
},
|
|
8880
|
+
toDisplayString(_ctx.nick),
|
|
8881
|
+
5
|
|
8882
|
+
/* TEXT, STYLE */
|
|
8883
|
+
)) : createCommentVNode("v-if", true),
|
|
8884
|
+
_ctx.poster.qr ? (openBlock(), createElementBlock(
|
|
8885
|
+
"div",
|
|
8886
|
+
{
|
|
8887
|
+
key: 2,
|
|
8888
|
+
class: "qr",
|
|
8889
|
+
style: normalizeStyle({
|
|
8890
|
+
..._ctx.poster.qrW ? { width: `${tx(_ctx.poster.qrW)}%` } : {},
|
|
8891
|
+
..._ctx.poster.qrH ? { height: `${ty(_ctx.poster.qrW)}%` } : {},
|
|
8892
|
+
..._ctx.poster.qrX ? { left: `${tx(_ctx.poster.qrX)}%` } : {},
|
|
8893
|
+
..._ctx.poster.qrY ? { top: `${ty(_ctx.poster.qrY)}%` } : {},
|
|
8894
|
+
backgroundImage: `url(${_ctx.poster.qr})`
|
|
8895
|
+
})
|
|
8896
|
+
},
|
|
8897
|
+
null,
|
|
8898
|
+
4
|
|
8899
|
+
/* STYLE */
|
|
8900
|
+
)) : createCommentVNode("v-if", true)
|
|
8901
|
+
]);
|
|
8902
|
+
};
|
|
8903
|
+
}
|
|
8904
|
+
});
|
|
8905
|
+
|
|
8906
|
+
script$1.__file = "src/scenarios/components/poster-paste.vue";
|
|
8907
|
+
|
|
8908
|
+
function dataURItoBlob(dataURI) {
|
|
8909
|
+
const byteString = atob(dataURI.split(",")[1]);
|
|
8910
|
+
const mimeString = dataURI.split(",")[0].split(":")[1].split(";")[0];
|
|
8911
|
+
const ab = new ArrayBuffer(byteString.length);
|
|
8912
|
+
const ia = new Uint8Array(ab);
|
|
8913
|
+
for (let i = 0; i < byteString.length; i++) {
|
|
8914
|
+
ia[i] = byteString.charCodeAt(i);
|
|
8915
|
+
}
|
|
8916
|
+
return new Blob([ab], { type: mimeString });
|
|
8917
|
+
}
|
|
8918
|
+
function isWeb() {
|
|
8919
|
+
const env = process.env.TARO_ENV || "";
|
|
8920
|
+
return env === "h5" || Taro.getEnv() === "WEB";
|
|
8921
|
+
}
|
|
8922
|
+
|
|
8923
|
+
const _hoisted_1 = { class: "share-dialog column align-stretch" };
|
|
8924
|
+
const _hoisted_2 = { class: "swiper-container" };
|
|
8925
|
+
const _hoisted_3 = {
|
|
8926
|
+
key: 0,
|
|
8927
|
+
class: "poster-display row justify-center"
|
|
8928
|
+
};
|
|
8929
|
+
const _hoisted_4 = { class: "slide" };
|
|
8930
|
+
const _hoisted_5 = {
|
|
8931
|
+
class: "swiper-dots",
|
|
8932
|
+
justify: "center",
|
|
8933
|
+
gap: 8
|
|
8934
|
+
};
|
|
8935
|
+
const _hoisted_6 = {
|
|
8936
|
+
key: 0,
|
|
8937
|
+
class: "text-center",
|
|
8938
|
+
style: { "font-size": "13px", "color": "#666666", "margin": "10px" }
|
|
8939
|
+
};
|
|
8940
|
+
const _hoisted_7 = { class: "bottom" };
|
|
8941
|
+
var script = /* @__PURE__ */ defineComponent({
|
|
8942
|
+
__name: "SharePoster",
|
|
8943
|
+
props: {
|
|
8944
|
+
posters: { type: Array, required: true },
|
|
8945
|
+
text: { type: String, required: false }
|
|
8946
|
+
},
|
|
8947
|
+
emits: ["share"],
|
|
8948
|
+
setup(__props, { expose: __expose, emit: __emit }) {
|
|
8949
|
+
const emit = __emit;
|
|
8950
|
+
const props = __props;
|
|
8951
|
+
const o = {
|
|
8952
|
+
// 图片原始大小
|
|
8953
|
+
w: 375,
|
|
8954
|
+
h: 812
|
|
8955
|
+
}, z = 480, zoom = z / o.h;
|
|
8956
|
+
const config = ref();
|
|
8957
|
+
config.value = {
|
|
8958
|
+
nick: "",
|
|
8959
|
+
logo: "",
|
|
8960
|
+
qr: ""
|
|
8961
|
+
};
|
|
8962
|
+
const current = ref(0);
|
|
8963
|
+
const getCentered = () => {
|
|
8964
|
+
if (props.posters.length === 1) return 0;
|
|
8965
|
+
let centered = current.value + 1;
|
|
8966
|
+
centered = centered === props.posters.length ? 0 : centered;
|
|
8967
|
+
return centered;
|
|
8968
|
+
};
|
|
8969
|
+
const isCenter = (index) => {
|
|
8970
|
+
return getCentered() === index;
|
|
8971
|
+
};
|
|
8972
|
+
const onSwiperChange = ({ detail }) => {
|
|
8973
|
+
current.value = detail.current;
|
|
8974
|
+
};
|
|
8975
|
+
const initCanvas = () => {
|
|
8976
|
+
return new Promise((resolve) => {
|
|
8977
|
+
setTimeout(() => {
|
|
8978
|
+
if (Taro.getEnv() === "WEB") {
|
|
8979
|
+
const canvas = document.getElementById(
|
|
8980
|
+
"poster-canvas"
|
|
8981
|
+
);
|
|
8982
|
+
const context = canvas.getContext("2d");
|
|
8983
|
+
canvas.height = o.h * 2;
|
|
8984
|
+
canvas.width = o.w * 2;
|
|
8985
|
+
resolve({ context, canvas });
|
|
8986
|
+
} else {
|
|
8987
|
+
const pageInstance = Taro.getCurrentInstance()?.page || {};
|
|
8988
|
+
const query = Taro.createSelectorQuery().in(pageInstance);
|
|
8989
|
+
query.select("#poster-canvas").fields({ node: true, size: true, context: true }, (res) => {
|
|
8990
|
+
const canvas = res.node;
|
|
8991
|
+
const context = canvas.getContext("2d");
|
|
8992
|
+
canvas.height = o.h * 2;
|
|
8993
|
+
canvas.width = o.w * 2;
|
|
8994
|
+
canvas.destHeight = o.h * 2;
|
|
8995
|
+
canvas.destWidth = o.w * 2;
|
|
8996
|
+
resolve({ context, canvas });
|
|
8997
|
+
}).exec();
|
|
8998
|
+
}
|
|
8999
|
+
}, 300);
|
|
9000
|
+
});
|
|
9001
|
+
};
|
|
9002
|
+
const drawImage = async (canvas, context, src, x, y, w, h) => {
|
|
9003
|
+
return new Promise((resolve, reject) => {
|
|
9004
|
+
if (!src) {
|
|
9005
|
+
resolve(void 0);
|
|
9006
|
+
return;
|
|
9007
|
+
}
|
|
9008
|
+
const image = !isWeb() ? canvas.createImage() : new Image();
|
|
9009
|
+
image.crossOrigin = "Anonymous";
|
|
9010
|
+
image.src = src;
|
|
9011
|
+
image.onload = function() {
|
|
9012
|
+
context.drawImage(image, x || 0, y || 0, w || o.w, h || o.h);
|
|
9013
|
+
resolve(void 0);
|
|
9014
|
+
};
|
|
9015
|
+
image.onerror = (e) => {
|
|
9016
|
+
resolve(image);
|
|
9017
|
+
};
|
|
9018
|
+
});
|
|
9019
|
+
};
|
|
9020
|
+
const onPosterShare = async () => {
|
|
9021
|
+
!isWeb() && Taro.showLoading({ title: "\u52A0\u8F7D\u4E2D...", mask: true });
|
|
9022
|
+
const { context, canvas } = await initCanvas(), c = getCentered();
|
|
9023
|
+
const p = props.posters[c];
|
|
9024
|
+
await drawImage(canvas, context, p.back, 0, 0, o.w * 2, o.h * 2);
|
|
9025
|
+
if (p.qr) {
|
|
9026
|
+
await drawImage(
|
|
9027
|
+
canvas,
|
|
9028
|
+
context,
|
|
9029
|
+
p.qr,
|
|
9030
|
+
p.qrX * 2,
|
|
9031
|
+
p.qrY * 2,
|
|
9032
|
+
p.qrW * 2,
|
|
9033
|
+
p.qrH * 2
|
|
9034
|
+
);
|
|
9035
|
+
}
|
|
9036
|
+
if (config.value.nick) {
|
|
9037
|
+
context.font = "24px sans-serif";
|
|
9038
|
+
context.fillText(config.value.nick, p.nickX * 2 - 10, p.nickY * 2 + 34);
|
|
9039
|
+
}
|
|
9040
|
+
if (config.value.logo) {
|
|
9041
|
+
await drawImage(
|
|
9042
|
+
canvas,
|
|
9043
|
+
context,
|
|
9044
|
+
config.value.logo,
|
|
9045
|
+
p.logoX * 2,
|
|
9046
|
+
p.logoY * 2,
|
|
9047
|
+
54,
|
|
9048
|
+
54
|
|
9049
|
+
);
|
|
9050
|
+
}
|
|
9051
|
+
context.save();
|
|
9052
|
+
if (isWeb()) {
|
|
9053
|
+
const dataURL = canvas.toDataURL("image/png");
|
|
9054
|
+
const blob = dataURItoBlob(dataURL);
|
|
9055
|
+
const imgUrl = URL.createObjectURL(blob);
|
|
9056
|
+
emit("share", imgUrl);
|
|
9057
|
+
} else {
|
|
9058
|
+
Taro.canvasToTempFilePath({
|
|
9059
|
+
canvas,
|
|
9060
|
+
success: (result) => {
|
|
9061
|
+
Taro.hideLoading();
|
|
9062
|
+
Taro.showShareImageMenu({
|
|
9063
|
+
path: result.tempFilePath
|
|
9064
|
+
});
|
|
9065
|
+
},
|
|
9066
|
+
fail: () => {
|
|
9067
|
+
Taro.showToast({
|
|
9068
|
+
title: "\u6D77\u62A5\u751F\u6210\u5931\u8D25\uFF0C\u8BF7\u91CD\u8BD5",
|
|
9069
|
+
icon: "none"
|
|
9070
|
+
});
|
|
9071
|
+
}
|
|
9072
|
+
});
|
|
9073
|
+
}
|
|
9074
|
+
};
|
|
9075
|
+
watch(
|
|
9076
|
+
() => props.posters,
|
|
9077
|
+
() => {
|
|
9078
|
+
if (props.posters[0]?.nick) {
|
|
9079
|
+
config.value.nick = props.posters[0].nick;
|
|
9080
|
+
}
|
|
9081
|
+
if (props.posters[0]?.logo) {
|
|
9082
|
+
config.value.logo = props.posters[0].logo;
|
|
9083
|
+
}
|
|
9084
|
+
}
|
|
9085
|
+
);
|
|
9086
|
+
const sheetOpen = ref(false);
|
|
9087
|
+
const onCancelClick = () => {
|
|
9088
|
+
sheetOpen.value = false;
|
|
9089
|
+
};
|
|
9090
|
+
function openShareDialog() {
|
|
9091
|
+
sheetOpen.value = !sheetOpen.value;
|
|
9092
|
+
}
|
|
9093
|
+
__expose({
|
|
9094
|
+
openShareDialog
|
|
9095
|
+
});
|
|
9096
|
+
return (_ctx, _cache) => {
|
|
9097
|
+
const _component_nut_button = Button;
|
|
9098
|
+
const _component_nut_popup = Popup;
|
|
9099
|
+
return openBlock(), createBlock(_component_nut_popup, {
|
|
9100
|
+
round: "",
|
|
9101
|
+
visible: sheetOpen.value,
|
|
9102
|
+
"onUpdate:visible": _cache[0] || (_cache[0] = ($event) => sheetOpen.value = $event),
|
|
9103
|
+
position: "bottom"
|
|
9104
|
+
}, {
|
|
9105
|
+
default: withCtx(() => [
|
|
9106
|
+
sheetOpen.value ? (openBlock(), createElementBlock(
|
|
9107
|
+
Fragment,
|
|
9108
|
+
{ key: 0 },
|
|
9109
|
+
[
|
|
9110
|
+
createElementVNode("div", _hoisted_1, [
|
|
9111
|
+
createElementVNode("div", _hoisted_2, [
|
|
9112
|
+
_ctx.posters.length === 1 ? (openBlock(), createElementBlock("div", _hoisted_3, [
|
|
9113
|
+
createVNode(script$1, {
|
|
9114
|
+
poster: _ctx.posters[0],
|
|
9115
|
+
logo: config.value.logo,
|
|
9116
|
+
nick: config.value.nick,
|
|
9117
|
+
zoom
|
|
9118
|
+
}, null, 8, ["poster", "logo", "nick"])
|
|
9119
|
+
])) : createCommentVNode("v-if", true),
|
|
9120
|
+
_ctx.posters.length > 1 ? (openBlock(), createBlock(unref(Swiper), {
|
|
9121
|
+
key: 1,
|
|
9122
|
+
class: "swiper",
|
|
9123
|
+
current: current.value,
|
|
9124
|
+
autoplay: false,
|
|
9125
|
+
"indicator-dots": false,
|
|
9126
|
+
circular: true,
|
|
9127
|
+
"display-multiple-items": "3",
|
|
9128
|
+
onChange: onSwiperChange
|
|
9129
|
+
}, {
|
|
9130
|
+
default: withCtx(() => [
|
|
9131
|
+
(openBlock(true), createElementBlock(
|
|
9132
|
+
Fragment,
|
|
9133
|
+
null,
|
|
9134
|
+
renderList(_ctx.posters, (poster, index) => {
|
|
9135
|
+
return openBlock(), createBlock(unref(SwiperItem), {
|
|
9136
|
+
class: normalizeClass(["swiper-item", { center: isCenter(index) }]),
|
|
9137
|
+
key: `${index}`
|
|
9138
|
+
}, {
|
|
9139
|
+
default: withCtx(() => [
|
|
9140
|
+
createElementVNode("div", _hoisted_4, [
|
|
9141
|
+
createVNode(script$1, {
|
|
9142
|
+
poster,
|
|
9143
|
+
logo: config.value.logo,
|
|
9144
|
+
nick: config.value.nick,
|
|
9145
|
+
zoom
|
|
9146
|
+
}, null, 8, ["poster", "logo", "nick"])
|
|
9147
|
+
])
|
|
9148
|
+
]),
|
|
9149
|
+
_: 2
|
|
9150
|
+
/* DYNAMIC */
|
|
9151
|
+
}, 1032, ["class"]);
|
|
9152
|
+
}),
|
|
9153
|
+
128
|
|
9154
|
+
/* KEYED_FRAGMENT */
|
|
9155
|
+
))
|
|
9156
|
+
]),
|
|
9157
|
+
_: 1
|
|
9158
|
+
/* STABLE */
|
|
9159
|
+
}, 8, ["current"])) : createCommentVNode("v-if", true)
|
|
9160
|
+
]),
|
|
9161
|
+
createElementVNode("div", _hoisted_5, [
|
|
9162
|
+
(openBlock(true), createElementBlock(
|
|
9163
|
+
Fragment,
|
|
9164
|
+
null,
|
|
9165
|
+
renderList(Array(_ctx.posters.length / 2).fill(""), (_, index) => {
|
|
9166
|
+
return openBlock(), createElementBlock(
|
|
9167
|
+
"div",
|
|
9168
|
+
{
|
|
9169
|
+
class: normalizeClass(["dot", {
|
|
9170
|
+
current: current.value === index || current.value - _ctx.posters.length / 2 === index
|
|
9171
|
+
}]),
|
|
9172
|
+
key: index
|
|
9173
|
+
},
|
|
9174
|
+
null,
|
|
9175
|
+
2
|
|
9176
|
+
/* CLASS */
|
|
9177
|
+
);
|
|
9178
|
+
}),
|
|
9179
|
+
128
|
|
9180
|
+
/* KEYED_FRAGMENT */
|
|
9181
|
+
))
|
|
9182
|
+
]),
|
|
9183
|
+
_ctx.text ? (openBlock(), createElementBlock(
|
|
9184
|
+
"div",
|
|
9185
|
+
_hoisted_6,
|
|
9186
|
+
toDisplayString(_ctx.text),
|
|
9187
|
+
1
|
|
9188
|
+
/* TEXT */
|
|
9189
|
+
)) : createCommentVNode("v-if", true),
|
|
9190
|
+
_cache[3] || (_cache[3] = createElementVNode(
|
|
9191
|
+
"div",
|
|
9192
|
+
{ class: "line" },
|
|
9193
|
+
null,
|
|
9194
|
+
-1
|
|
9195
|
+
/* CACHED */
|
|
9196
|
+
)),
|
|
9197
|
+
createElementVNode("div", _hoisted_7, [
|
|
9198
|
+
createVNode(_component_nut_button, {
|
|
9199
|
+
class: "cancel-btn",
|
|
9200
|
+
onClick: onCancelClick
|
|
9201
|
+
}, {
|
|
9202
|
+
default: withCtx(() => _cache[1] || (_cache[1] = [
|
|
9203
|
+
createTextVNode("\u53D6\u6D88")
|
|
9204
|
+
])),
|
|
9205
|
+
_: 1,
|
|
9206
|
+
__: [1]
|
|
9207
|
+
}),
|
|
9208
|
+
createVNode(_component_nut_button, {
|
|
9209
|
+
type: "primary",
|
|
9210
|
+
onClick: onPosterShare
|
|
9211
|
+
}, {
|
|
9212
|
+
default: withCtx(() => _cache[2] || (_cache[2] = [
|
|
9213
|
+
createTextVNode("\u786E\u5B9A")
|
|
9214
|
+
])),
|
|
9215
|
+
_: 1,
|
|
9216
|
+
__: [2]
|
|
9217
|
+
})
|
|
9218
|
+
])
|
|
9219
|
+
]),
|
|
9220
|
+
createElementVNode(
|
|
9221
|
+
"canvas",
|
|
9222
|
+
{
|
|
9223
|
+
type: "2d",
|
|
9224
|
+
id: "poster-canvas",
|
|
9225
|
+
style: normalizeStyle(`height: ${o.h}px;width:${o.w}px;transform:translate3d(-5000px, 0, 0);position: absolute;`)
|
|
9226
|
+
},
|
|
9227
|
+
null,
|
|
9228
|
+
4
|
|
9229
|
+
/* STYLE */
|
|
9230
|
+
)
|
|
9231
|
+
],
|
|
9232
|
+
64
|
|
9233
|
+
/* STABLE_FRAGMENT */
|
|
9234
|
+
)) : createCommentVNode("v-if", true)
|
|
9235
|
+
]),
|
|
9236
|
+
_: 1
|
|
9237
|
+
/* STABLE */
|
|
9238
|
+
}, 8, ["visible"]);
|
|
9239
|
+
};
|
|
9240
|
+
}
|
|
9241
|
+
});
|
|
9242
|
+
|
|
9243
|
+
script.__file = "src/scenarios/components/SharePoster.vue";
|
|
8788
9244
|
|
|
8789
9245
|
const nutComponents = [
|
|
8790
9246
|
// Grid,
|
|
@@ -8841,4 +9297,4 @@ const AppKit = {
|
|
|
8841
9297
|
}
|
|
8842
9298
|
};
|
|
8843
9299
|
|
|
8844
|
-
export { script$
|
|
9300
|
+
export { script$s as AccountView, script$L as AmountPicker, script$J as AppDrawer, script$I as AppVerify, script$y as BalanceCard, script$r as BalanceReminder, script$q as DateRange, script$G as DeviceVersion, script$o as ListFilter, script$4 as LoginSetting, script$h as NoticeBanner, script$g as NoticeEntry, script$e as NoticeList, script$E as OcrBusinessLicense, script$F as OcrIcon, script$K as PageHeader, script$n as PromoterCard, script$B as RechargeResult, script$D as RechargeView, script$j as SelfRegistration, script as SharePoster, script$z as TradeView, script$C as UserAgreement, script$2 as UserAuth, script$a as UserBinding, script$9 as UserBindingSuccess, script$d as UserEntry, script$6 as UserFeedback, script$5 as UserFeedbackEntry, script$7 as UserHeadCrop, script$b as UserInfo, script$3 as UserResourceEmpty, components, createHttp, AppKit as default, defaultCryptoConfig, generateUniqueId, getSdkConfig, jssdkServices, requestPayment$2 as requestPayment, requestWxH5Pay, services$1 as services, useAppKit, useCountdown, useCrypto, useEncode, useLogger, useSafeArea, useTabbar, useUpload, useValidator };
|