@uxda/appkit 4.3.8 → 4.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/.eslintrc.mjs +7 -7
  2. package/COMPONENT_USAGE.md +1523 -1523
  3. package/PROJECT_DOCS.md +142 -142
  4. package/README.md +187 -187
  5. package/babel.config.js +12 -12
  6. package/dist/appkit.css +3 -48
  7. package/dist/index.js +84 -152
  8. package/package.json +82 -79
  9. package/project.config.json +15 -15
  10. package/project.tt.json +13 -13
  11. package/rollup.config.mjs +78 -78
  12. package/src/Appkit.ts +72 -72
  13. package/src/balance/api/endpoints.ts +133 -133
  14. package/src/balance/api/index.ts +118 -118
  15. package/src/balance/components/AccountView.vue +770 -770
  16. package/src/balance/components/BalanceCard.vue +210 -210
  17. package/src/balance/components/BalanceReminder.vue +84 -84
  18. package/src/balance/components/ConsumptionFilter.vue +218 -218
  19. package/src/balance/components/ConsumptionRules.vue +68 -68
  20. package/src/balance/components/DateFilter.vue +259 -259
  21. package/src/balance/components/DateRange.vue +111 -111
  22. package/src/balance/components/ListFilter.vue +62 -62
  23. package/src/balance/components/ListFilterPicker.vue +191 -191
  24. package/src/balance/components/PromoterCard.vue +307 -307
  25. package/src/balance/components/SecondBalance.vue +77 -77
  26. package/src/balance/components/Tip.vue +45 -45
  27. package/src/balance/components/index.ts +8 -8
  28. package/src/balance/types.ts +99 -99
  29. package/src/components/bt-cropper/index.vue +730 -730
  30. package/src/components/bt-cropper/utils/calcCropper.js +42 -42
  31. package/src/components/bt-cropper/utils/calcImagePosition.js +23 -23
  32. package/src/components/bt-cropper/utils/calcImageSize.js +37 -37
  33. package/src/components/bt-cropper/utils/calcPointDistance.js +12 -12
  34. package/src/components/bt-cropper/utils/calcRightAndBottom.js +7 -7
  35. package/src/components/bt-cropper/utils/ratio.js +3 -3
  36. package/src/components/bt-cropper/utils/tools.js +25 -25
  37. package/src/components/dd-area/index.vue +225 -225
  38. package/src/components/dd-icon/doc.md +21 -21
  39. package/src/components/dd-icon/index.vue +23 -23
  40. package/src/components/dd-notice-bar/index.vue +78 -78
  41. package/src/components/dd-search/doc.md +34 -34
  42. package/src/components/dd-search/index.vue +168 -168
  43. package/src/components/dd-selector/index.vue +124 -124
  44. package/src/components/dd-skeleton/doc.md +19 -19
  45. package/src/components/dd-skeleton/index.vue +36 -36
  46. package/src/global.ts +6 -6
  47. package/src/index.ts +101 -101
  48. package/src/main.scss +1 -1
  49. package/src/notice/api/endpoints.ts +54 -54
  50. package/src/notice/api/index.ts +121 -121
  51. package/src/notice/components/NoticeBanner.vue +247 -247
  52. package/src/notice/components/NoticeEntry.vue +99 -99
  53. package/src/notice/components/NoticeList.vue +311 -311
  54. package/src/notice/components/NoticeList2.vue +240 -400
  55. package/src/notice/components/NoticePopup.vue +163 -163
  56. package/src/notice/components/index.ts +6 -6
  57. package/src/notice/components/useCommonList.ts +86 -86
  58. package/src/notice/components/useNotice.ts +35 -35
  59. package/src/notice/index.ts +1 -1
  60. package/src/notice/types.ts +25 -25
  61. package/src/payment/api/config.ts +7 -7
  62. package/src/payment/api/endpoints.ts +96 -96
  63. package/src/payment/api/index.ts +107 -107
  64. package/src/payment/components/AmountPicker.vue +90 -90
  65. package/src/payment/components/RechargeResult.vue +69 -69
  66. package/src/payment/components/RechargeView.vue +195 -191
  67. package/src/payment/components/RightsPicker.vue +105 -105
  68. package/src/payment/components/TradeView.vue +365 -363
  69. package/src/payment/components/UserAgreement.vue +234 -234
  70. package/src/payment/components/index.ts +22 -22
  71. package/src/payment/index.ts +5 -5
  72. package/src/payment/services/index.ts +16 -16
  73. package/src/payment/services/invoke-recharge.ts +25 -25
  74. package/src/payment/services/request-payment.ts +130 -130
  75. package/src/payment/types.ts +33 -33
  76. package/src/register/components/SelfRegistration.vue +233 -233
  77. package/src/register/components/index.ts +2 -2
  78. package/src/scenarios/components/SharePoster.vue +364 -364
  79. package/src/scenarios/components/index.ts +2 -2
  80. package/src/scenarios/components/poster-paste.vue +93 -93
  81. package/src/scenarios/components/share-poster.md +273 -273
  82. package/src/shared/components/AppDrawer.vue +53 -53
  83. package/src/shared/components/AppVerify.vue +128 -128
  84. package/src/shared/components/DeviceVersion.vue +78 -78
  85. package/src/shared/components/EmptyView.vue +33 -33
  86. package/src/shared/components/OcrBusinessLicense.vue +137 -137
  87. package/src/shared/components/OcrIcon.vue +229 -229
  88. package/src/shared/components/PageHeader.vue +84 -84
  89. package/src/shared/components/index.ts +8 -8
  90. package/src/shared/composables/index.ts +9 -9
  91. package/src/shared/composables/useAmount.ts +46 -46
  92. package/src/shared/composables/useCountdown.ts +46 -46
  93. package/src/shared/composables/useCrypto.ts +76 -76
  94. package/src/shared/composables/useDeviceEnv.ts +26 -26
  95. package/src/shared/composables/useDragBox.ts +97 -97
  96. package/src/shared/composables/useEncode.ts +43 -43
  97. package/src/shared/composables/useLogger.ts +144 -144
  98. package/src/shared/composables/useSafeArea.ts +46 -46
  99. package/src/shared/composables/useTabbar.ts +24 -24
  100. package/src/shared/composables/useUpload.ts +61 -61
  101. package/src/shared/composables/useValidator.ts +32 -32
  102. package/src/shared/composables/useWxAuth.ts +48 -48
  103. package/src/shared/http/Http.ts +148 -148
  104. package/src/shared/http/index.ts +1 -1
  105. package/src/shared/http/types.ts +163 -163
  106. package/src/shared/index.ts +9 -9
  107. package/src/shared/tracking/directives/index.ts +40 -40
  108. package/src/shared/tracking/examples/page-tracking-template.vue +27 -27
  109. package/src/shared/weixin/index.ts +9 -9
  110. package/src/shared/weixin/jssdk.ts +103 -103
  111. package/src/shared/weixin/payment.ts +38 -38
  112. package/src/styles/vars.scss +3 -3
  113. package/src/user/api/endpoints.ts +17 -17
  114. package/src/user/api/index.ts +123 -123
  115. package/src/user/components/LoginSetting.vue +114 -114
  116. package/src/user/components/UserAuth.vue +218 -218
  117. package/src/user/components/UserBinding.vue +277 -277
  118. package/src/user/components/UserBindingSuccess.vue +80 -80
  119. package/src/user/components/UserEntry.vue +139 -139
  120. package/src/user/components/UserFeedback.vue +427 -427
  121. package/src/user/components/UserFeedbackEntry.vue +175 -175
  122. package/src/user/components/UserHeadCrop.vue +65 -65
  123. package/src/user/components/UserInfo.vue +709 -709
  124. package/src/user/components/UserResourceEmpty.vue +75 -75
  125. package/src/user/components/index.ts +23 -23
  126. package/src/user/index.ts +1 -1
  127. package/src/utils/utils.ts +33 -33
  128. package/tsconfig.json +30 -30
  129. package/types/global.d.ts +22 -22
  130. package/types/vue.d.ts +10 -10
  131. package/dist/assets/asset-DcH8Kg-2 +0 -1
@@ -1,163 +1,163 @@
1
- <template>
2
- <nut-popup pop-class="notice-popup" :close-on-click-overlay="false" v-model:visible="showPopup" round>
3
- <div class="notice-popup-hd">
4
- <img class="notice-popup-hd-icon" src="https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png"
5
- alt="" />系统公告
6
- </div>
7
- <div class="notice-popup-bd">
8
- <div style="white-space: pre-wrap">{{ message.context.replace('【系统公告】 ', '') }}</div>
9
- <div v-if="message.jumpUrl || message.link" class="notice-popup-bd-link" v-track-click @click="toViewAttachment">
10
- 点击查看附件
11
- </div>
12
- </div>
13
- <div class="notice-popup-ft">
14
- <div class="notice-popup-ft-btn" v-track-click="'系统公告-我知道了'" @click="onClose">我知道了</div>
15
- </div>
16
- </nut-popup>
17
- </template>
18
-
19
- <script lang="ts" setup>
20
- import { onMounted, ref } from 'vue'
21
- import { useHttp } from '../api'
22
-
23
- const props = withDefaults(
24
- defineProps<{
25
- message: any
26
- device?: string
27
- }>(),
28
- {
29
- message: {},
30
- device: 'MINI',
31
- }
32
- )
33
-
34
- const showPopup = ref(true)
35
-
36
- onMounted(() => { })
37
-
38
- // 关闭
39
- function onCancel() {
40
- showPopup.value = false
41
-
42
- emits('close')
43
- }
44
-
45
- // 查看附件
46
- function toViewAttachment() {
47
- onClose()
48
-
49
- emits('view', props.message.jumpUrl || props.message.link)
50
- }
51
-
52
- // 关闭弹框
53
- async function onClose() {
54
- const $http = useHttp()
55
-
56
- $http
57
- .post('/cas/msg/setMsgStatus', {
58
- device: props.device || 'MINI',
59
- noticeStatus: 0,
60
- receiveId: props.message.id,
61
- })
62
- .then(() => {
63
- // if (props.message.isRead === 0) {
64
- // toReadFun([props.message.id])
65
- // }
66
- onCancel()
67
- })
68
- }
69
-
70
- const emits = defineEmits(['close', 'view'])
71
- </script>
72
-
73
- <style lang="scss">
74
- .notice-popup {
75
- width: 280px;
76
- padding: 20px 15px;
77
- border-radius: 10px !important;
78
- background: linear-gradient(136.72deg, #d0fdfe 6.02%, #a2b9ff 59.97%, #6593ff 108.78%);
79
-
80
- &::after {
81
- content: '';
82
- position: absolute;
83
- width: 100%;
84
- height: 100%;
85
- left: 0;
86
- top: 0;
87
- background: linear-gradient(360deg, #ffffff 4.73%, rgba(255, 255, 255, 0) 85.82%);
88
- z-index: 1;
89
- border-radius: 10px;
90
- }
91
-
92
- &::before {
93
- content: '';
94
- width: 236px;
95
- height: 241px;
96
- position: absolute;
97
- top: 0;
98
- right: 40px;
99
- background: url('https://cdn.ddjf.com/static/images/customer-center/notice-modal-bg.png');
100
- }
101
-
102
- .nutui-popup__content-wrapper {
103
- position: relative;
104
- z-index: 2;
105
- }
106
-
107
- &-hd {
108
- color: #0a2668;
109
- font-size: 17px;
110
- display: flex;
111
- align-items: center;
112
- margin-bottom: 20px;
113
- font-weight: 600;
114
-
115
- &-icon {
116
- width: 20px;
117
- height: 20px;
118
- margin-right: 4px;
119
- }
120
- }
121
-
122
- &-bd {
123
- position: relative;
124
- z-index: 10;
125
- color: #353535;
126
- box-shadow: 0px 2px 8px 0px #ffffff33 inset, 0px 1px 1px 0px #ffffff80 inset,
127
- 0px 0px 1px 0px #ffffffb2;
128
- border-radius: 3px;
129
- background: rgba(255, 255, 255, 0.6);
130
- min-height: 160px;
131
- margin-bottom: 20px;
132
- padding: 15px 10px;
133
- box-sizing: border-box;
134
- font-size: 10px;
135
-
136
- &-link {
137
- color: #007fff;
138
- margin-top: 2px;
139
- font-weight: 600;
140
- }
141
- }
142
-
143
- &-ft {
144
- position: relative;
145
- z-index: 10;
146
- display: flex;
147
- align-items: center;
148
- justify-content: center;
149
-
150
- &-btn {
151
- background: #007fff;
152
- color: #fff;
153
- width: 128px;
154
- height: 30px;
155
- display: flex;
156
- align-items: center;
157
- justify-content: center;
158
- border-radius: 15px;
159
- z-index: 10;
160
- }
161
- }
162
- }
163
- </style>
1
+ <template>
2
+ <nut-popup pop-class="notice-popup" :close-on-click-overlay="false" v-model:visible="showPopup" round>
3
+ <div class="notice-popup-hd">
4
+ <img class="notice-popup-hd-icon" src="https://cdn.ddjf.com/static/images/customer-center/system-notice-1.png"
5
+ alt="" />系统公告
6
+ </div>
7
+ <div class="notice-popup-bd">
8
+ <div style="white-space: pre-wrap">{{ message.context.replace('【系统公告】 ', '') }}</div>
9
+ <div v-if="message.jumpUrl || message.link" class="notice-popup-bd-link" v-track-click @click="toViewAttachment">
10
+ 点击查看附件
11
+ </div>
12
+ </div>
13
+ <div class="notice-popup-ft">
14
+ <div class="notice-popup-ft-btn" v-track-click="'系统公告-我知道了'" @click="onClose">我知道了</div>
15
+ </div>
16
+ </nut-popup>
17
+ </template>
18
+
19
+ <script lang="ts" setup>
20
+ import { onMounted, ref } from 'vue'
21
+ import { useHttp } from '../api'
22
+
23
+ const props = withDefaults(
24
+ defineProps<{
25
+ message: any
26
+ device?: string
27
+ }>(),
28
+ {
29
+ message: {},
30
+ device: 'MINI',
31
+ }
32
+ )
33
+
34
+ const showPopup = ref(true)
35
+
36
+ onMounted(() => { })
37
+
38
+ // 关闭
39
+ function onCancel() {
40
+ showPopup.value = false
41
+
42
+ emits('close')
43
+ }
44
+
45
+ // 查看附件
46
+ function toViewAttachment() {
47
+ onClose()
48
+
49
+ emits('view', props.message.jumpUrl || props.message.link)
50
+ }
51
+
52
+ // 关闭弹框
53
+ async function onClose() {
54
+ const $http = useHttp()
55
+
56
+ $http
57
+ .post('/cas/msg/setMsgStatus', {
58
+ device: props.device || 'MINI',
59
+ noticeStatus: 0,
60
+ receiveId: props.message.id,
61
+ })
62
+ .then(() => {
63
+ // if (props.message.isRead === 0) {
64
+ // toReadFun([props.message.id])
65
+ // }
66
+ onCancel()
67
+ })
68
+ }
69
+
70
+ const emits = defineEmits(['close', 'view'])
71
+ </script>
72
+
73
+ <style lang="scss">
74
+ .notice-popup {
75
+ width: 280px;
76
+ padding: 20px 15px;
77
+ border-radius: 10px !important;
78
+ background: linear-gradient(136.72deg, #d0fdfe 6.02%, #a2b9ff 59.97%, #6593ff 108.78%);
79
+
80
+ &::after {
81
+ content: '';
82
+ position: absolute;
83
+ width: 100%;
84
+ height: 100%;
85
+ left: 0;
86
+ top: 0;
87
+ background: linear-gradient(360deg, #ffffff 4.73%, rgba(255, 255, 255, 0) 85.82%);
88
+ z-index: 1;
89
+ border-radius: 10px;
90
+ }
91
+
92
+ &::before {
93
+ content: '';
94
+ width: 236px;
95
+ height: 241px;
96
+ position: absolute;
97
+ top: 0;
98
+ right: 40px;
99
+ background: url('https://cdn.ddjf.com/static/images/customer-center/notice-modal-bg.png');
100
+ }
101
+
102
+ .nutui-popup__content-wrapper {
103
+ position: relative;
104
+ z-index: 2;
105
+ }
106
+
107
+ &-hd {
108
+ color: #0a2668;
109
+ font-size: 17px;
110
+ display: flex;
111
+ align-items: center;
112
+ margin-bottom: 20px;
113
+ font-weight: 600;
114
+
115
+ &-icon {
116
+ width: 20px;
117
+ height: 20px;
118
+ margin-right: 4px;
119
+ }
120
+ }
121
+
122
+ &-bd {
123
+ position: relative;
124
+ z-index: 10;
125
+ color: #353535;
126
+ box-shadow: 0px 2px 8px 0px #ffffff33 inset, 0px 1px 1px 0px #ffffff80 inset,
127
+ 0px 0px 1px 0px #ffffffb2;
128
+ border-radius: 3px;
129
+ background: rgba(255, 255, 255, 0.6);
130
+ min-height: 160px;
131
+ margin-bottom: 20px;
132
+ padding: 15px 10px;
133
+ box-sizing: border-box;
134
+ font-size: 10px;
135
+
136
+ &-link {
137
+ color: #007fff;
138
+ margin-top: 2px;
139
+ font-weight: 600;
140
+ }
141
+ }
142
+
143
+ &-ft {
144
+ position: relative;
145
+ z-index: 10;
146
+ display: flex;
147
+ align-items: center;
148
+ justify-content: center;
149
+
150
+ &-btn {
151
+ background: #007fff;
152
+ color: #fff;
153
+ width: 128px;
154
+ height: 30px;
155
+ display: flex;
156
+ align-items: center;
157
+ justify-content: center;
158
+ border-radius: 15px;
159
+ z-index: 10;
160
+ }
161
+ }
162
+ }
163
+ </style>
@@ -1,6 +1,6 @@
1
- import NoticeBanner from './NoticeBanner.vue'
2
- import NoticeEntry from './NoticeEntry.vue'
3
- import NoticeList from './NoticeList.vue'
4
- import NoticeList2 from './NoticeList2.vue'
5
-
6
- export { NoticeBanner, NoticeEntry, NoticeList, NoticeList2 }
1
+ import NoticeBanner from './NoticeBanner.vue'
2
+ import NoticeEntry from './NoticeEntry.vue'
3
+ import NoticeList from './NoticeList.vue'
4
+ import NoticeList2 from './NoticeList2.vue'
5
+
6
+ export { NoticeBanner, NoticeEntry, NoticeList, NoticeList2 }
@@ -1,86 +1,86 @@
1
- import Taro, { showLoading, hideLoading } from '@tarojs/taro'
2
- import { Ref, ref, unref } from 'vue'
3
- import { useHttp } from '../api'
4
-
5
- interface ListResponseType<T> {
6
- total: number
7
- pageNum: number
8
- pageSize: number
9
- list: Array<T>
10
- [prop: string]: unknown
11
- }
12
- interface QueryLimit {
13
- pageNum: number
14
- pageSize: number
15
- }
16
-
17
- export function useCommonList<R, Q extends QueryLimit>(
18
- api: string,
19
- query: Ref<Q>,
20
- loading = true,
21
- method = 'GET'
22
- ) {
23
- const isLast = ref(false)
24
- const list = ref<R[]>([]) as Ref<R[]>
25
- const firstLoading = ref(true) // 是否第一次加载
26
- const total = ref(0)
27
- const isLoading = ref(false)
28
-
29
- async function fetchData(loading) {
30
- loading &&
31
- showLoading({
32
- title: '加载中...',
33
- })
34
- isLoading.value = true
35
-
36
- const $http = useHttp()
37
- const res = await $http[method === 'GET' ? 'get' : 'post']<ListResponseType<R>>(api, {
38
- ...unref(query),
39
- })
40
-
41
- isLoading.value = false
42
- loading && hideLoading()
43
- if (res) {
44
- const pages = Math.ceil(res.total / res.pageSize)
45
- isLast.value = res.pageNum >= pages
46
- total.value = res.total
47
- }
48
-
49
- return (res || {}).list || []
50
- }
51
- async function runNext() {
52
- if (isLast.value) return
53
- if (isLoading.value) return
54
- query.value.pageNum += 1
55
- const data = await fetchData(true)
56
- list.value.push(...data)
57
- }
58
- async function runRefresh() {
59
- query.value.pageNum = 1
60
- isLast.value = false
61
- const data = await fetchData(true)
62
- if (data.length === 0) {
63
- list.value = []
64
- } else {
65
- list.value = data // 直接替换,避免白屏
66
- }
67
- }
68
-
69
- async function init(pageNum?: number) {
70
- query.value.pageNum = pageNum || 1
71
- isLast.value = false
72
- const data = await fetchData(loading)
73
- list.value = data || []
74
- firstLoading.value = false
75
- }
76
-
77
- return {
78
- total,
79
- isLast,
80
- firstLoading,
81
- list,
82
- init,
83
- runNext,
84
- runRefresh,
85
- }
86
- }
1
+ import Taro, { showLoading, hideLoading } from '@tarojs/taro'
2
+ import { Ref, ref, unref } from 'vue'
3
+ import { useHttp } from '../api'
4
+
5
+ interface ListResponseType<T> {
6
+ total: number
7
+ pageNum: number
8
+ pageSize: number
9
+ list: Array<T>
10
+ [prop: string]: unknown
11
+ }
12
+ interface QueryLimit {
13
+ pageNum: number
14
+ pageSize: number
15
+ }
16
+
17
+ export function useCommonList<R, Q extends QueryLimit>(
18
+ api: string,
19
+ query: Ref<Q>,
20
+ loading = true,
21
+ method = 'GET'
22
+ ) {
23
+ const isLast = ref(false)
24
+ const list = ref<R[]>([]) as Ref<R[]>
25
+ const firstLoading = ref(true) // 是否第一次加载
26
+ const total = ref(0)
27
+ const isLoading = ref(false)
28
+
29
+ async function fetchData(loading) {
30
+ loading &&
31
+ showLoading({
32
+ title: '加载中...',
33
+ })
34
+ isLoading.value = true
35
+
36
+ const $http = useHttp()
37
+ const res = await $http[method === 'GET' ? 'get' : 'post']<ListResponseType<R>>(api, {
38
+ ...unref(query),
39
+ })
40
+
41
+ isLoading.value = false
42
+ loading && hideLoading()
43
+ if (res) {
44
+ const pages = Math.ceil(res.total / res.pageSize)
45
+ isLast.value = res.pageNum >= pages
46
+ total.value = res.total
47
+ }
48
+
49
+ return (res || {}).list || []
50
+ }
51
+ async function runNext() {
52
+ if (isLast.value) return
53
+ if (isLoading.value) return
54
+ query.value.pageNum += 1
55
+ const data = await fetchData(true)
56
+ list.value.push(...data)
57
+ }
58
+ async function runRefresh() {
59
+ query.value.pageNum = 1
60
+ isLast.value = false
61
+ const data = await fetchData(true)
62
+ if (data.length === 0) {
63
+ list.value = []
64
+ } else {
65
+ list.value = data // 直接替换,避免白屏
66
+ }
67
+ }
68
+
69
+ async function init(pageNum?: number) {
70
+ query.value.pageNum = pageNum || 1
71
+ isLast.value = false
72
+ const data = await fetchData(loading)
73
+ list.value = data || []
74
+ firstLoading.value = false
75
+ }
76
+
77
+ return {
78
+ total,
79
+ isLast,
80
+ firstLoading,
81
+ list,
82
+ init,
83
+ runNext,
84
+ runRefresh,
85
+ }
86
+ }
@@ -1,35 +1,35 @@
1
- import { useHttp } from '../api'
2
-
3
- export function useNotice() {
4
- // 点击消息时
5
- async function noticeClick(item: any, cb?: Function) {
6
- if (item.isRead === 0) {
7
- await toReadFun([item.id || item.msgId])
8
- }
9
- if (item.link) {
10
- cb && cb(item.link)
11
- }
12
- return true
13
- }
14
-
15
- // 请求-标记消息已读
16
- async function toReadFun(msgIds: number[]) {
17
- const $http = useHttp()
18
-
19
- return new Promise<boolean>((resolve) => {
20
- $http
21
- .post('/cas/msg/read', msgIds)
22
- .then(() => {
23
- resolve(true)
24
- })
25
- .catch(() => {
26
- resolve(false)
27
- })
28
- })
29
- }
30
-
31
- return {
32
- noticeClick,
33
- toReadFun,
34
- }
35
- }
1
+ import { useHttp } from '../api'
2
+
3
+ export function useNotice() {
4
+ // 点击消息时
5
+ async function noticeClick(item: any, cb?: Function) {
6
+ if (item.isRead === 0) {
7
+ await toReadFun([item.id || item.msgId])
8
+ }
9
+ if (item.link) {
10
+ cb && cb(item.link)
11
+ }
12
+ return true
13
+ }
14
+
15
+ // 请求-标记消息已读
16
+ async function toReadFun(msgIds: number[]) {
17
+ const $http = useHttp()
18
+
19
+ return new Promise<boolean>((resolve) => {
20
+ $http
21
+ .post('/cas/msg/read', msgIds)
22
+ .then(() => {
23
+ resolve(true)
24
+ })
25
+ .catch(() => {
26
+ resolve(false)
27
+ })
28
+ })
29
+ }
30
+
31
+ return {
32
+ noticeClick,
33
+ toReadFun,
34
+ }
35
+ }
@@ -1 +1 @@
1
- export * from './components'
1
+ export * from './components'
@@ -1,25 +1,25 @@
1
- // 消息
2
- export interface NoticeListQueryTypes {
3
- pageNum: number
4
- pageSize: number
5
- searchStr: string
6
- }
7
-
8
- // 消息内容
9
- export interface Notice {
10
- applyNo: string // 消息关联订单编号 string
11
- customerId: string // 消息关联客户编号 string
12
- id: number // id integer(int64)
13
- isRead: string // 是否已读(0:未读;1:已读) string
14
- msg: string // 消息内容 string
15
- msgType: string // 消息主体类型(order:订单;customer:客户) string
16
- sendTime: string // 消息发送时间
17
- [props: string]: any
18
- }
19
-
20
- // 消息列表
21
- export interface NoticeListTypes {
22
- list: Notice[]
23
- total: number | string
24
- [props: string]: any
25
- }
1
+ // 消息
2
+ export interface NoticeListQueryTypes {
3
+ pageNum: number
4
+ pageSize: number
5
+ searchStr: string
6
+ }
7
+
8
+ // 消息内容
9
+ export interface Notice {
10
+ applyNo: string // 消息关联订单编号 string
11
+ customerId: string // 消息关联客户编号 string
12
+ id: number // id integer(int64)
13
+ isRead: string // 是否已读(0:未读;1:已读) string
14
+ msg: string // 消息内容 string
15
+ msgType: string // 消息主体类型(order:订单;customer:客户) string
16
+ sendTime: string // 消息发送时间
17
+ [props: string]: any
18
+ }
19
+
20
+ // 消息列表
21
+ export interface NoticeListTypes {
22
+ list: Notice[]
23
+ total: number | string
24
+ [props: string]: any
25
+ }
@@ -1,8 +1,8 @@
1
- import type { HttpClientConfig } from '../../shared/http'
2
-
3
- const clientConfig: HttpClientConfig = {
4
- baseUrl: 'http://ytech.dev.ddjf.info',
5
-
6
- }
7
-
1
+ import type { HttpClientConfig } from '../../shared/http'
2
+
3
+ const clientConfig: HttpClientConfig = {
4
+ baseUrl: 'http://ytech.dev.ddjf.info',
5
+
6
+ }
7
+
8
8
  export default clientConfig