@tplc/business 0.3.31 → 0.3.33
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.3.33](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.28...v0.3.33) (2025-02-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
|
+
|
|
10
|
+
* **release:** 0.3.29 ([0ea4cb8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/0ea4cb8bb435436e8fd655c62183e1f1d6d7ed1d))
|
|
11
|
+
* **release:** 0.3.30 ([e42d9fd](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e42d9fd31117d435eb6d695a5d8233a4949bfa56))
|
|
12
|
+
* **release:** 0.3.31 ([3c4362a](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/3c4362a59d5feb99021055f5372a49368e9a30da))
|
|
13
|
+
* **release:** 0.3.32 ([f3889f3](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/f3889f3b263a679162ee2af33484d5bfc1f793af))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### ✨ Features | 新功能
|
|
17
|
+
|
|
18
|
+
* 修改vip展示 ([16d67e2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/16d67e20d0acdd822c3bea1f06141972de82e320))
|
|
19
|
+
* 修改过滤字段 ([0b0b10d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/0b0b10daa2ad61a9797be3c1cb3b86f653ad60e6))
|
|
20
|
+
* 兼容user info ([2097a3f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/2097a3f346a064bdd2ab26900782722943bb20a2))
|
|
21
|
+
* 日历调整 ([a78bc04](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a78bc04f75f0c3b972bdb7db8139822115ec082f))
|
|
22
|
+
|
|
23
|
+
### [0.3.32](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.31...v0.3.32) (2025-02-10)
|
|
24
|
+
|
|
5
25
|
### [0.3.31](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.30...v0.3.31) (2025-02-10)
|
|
6
26
|
|
|
7
27
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</wd-popover>
|
|
27
27
|
<IconActionView v-bind="item" v-else @refresh="$emit('refresh')" ref="popverRef" />
|
|
28
28
|
</block>
|
|
29
|
-
<view class="flex-1"
|
|
29
|
+
<view class="flex-1"></view>
|
|
30
30
|
<BtnViews :button-list="buttonList" @refresh="emits('refresh')" :size="size" />
|
|
31
31
|
</view>
|
|
32
32
|
<wd-message-box />
|
|
@@ -14,7 +14,12 @@
|
|
|
14
14
|
width: transformValueUnit(iconSize),
|
|
15
15
|
}"
|
|
16
16
|
>
|
|
17
|
-
<wd-badge
|
|
17
|
+
<wd-badge
|
|
18
|
+
:modelValue="
|
|
19
|
+
basicInfo?.orderStatusCount?.[item.status || ''] || dataInfo[item.countKey || ''] || 0
|
|
20
|
+
"
|
|
21
|
+
:max="99"
|
|
22
|
+
>
|
|
18
23
|
<wd-icon
|
|
19
24
|
v-if="item.iconType === 0"
|
|
20
25
|
class-prefix="lcb"
|
|
@@ -49,7 +54,7 @@
|
|
|
49
54
|
</template>
|
|
50
55
|
|
|
51
56
|
<script setup lang="ts">
|
|
52
|
-
import { inject } from 'vue'
|
|
57
|
+
import { inject, ref, watch } from 'vue'
|
|
53
58
|
import { LcbUserOrderProps, IIconList } from './types'
|
|
54
59
|
import { transformValueUnit } from '../../utils/transform'
|
|
55
60
|
import { USER_BASIC_INFO } from '../../constants'
|
|
@@ -67,22 +72,22 @@ const onClick = (item: IIconList) => {
|
|
|
67
72
|
url: `${uni.$lcb.internalPages.orderList}?orderStatus=${item.status}`,
|
|
68
73
|
})
|
|
69
74
|
}
|
|
70
|
-
withDefaults(defineProps<LcbUserOrderProps>(), {
|
|
75
|
+
const props = withDefaults(defineProps<LcbUserOrderProps>(), {
|
|
71
76
|
paddingVertical: 0,
|
|
72
77
|
paddingHorizontal: 0,
|
|
73
78
|
blurSize: 5,
|
|
74
79
|
})
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
80
|
+
const dataInfo = ref<Record<string, any>>({})
|
|
81
|
+
watch(
|
|
82
|
+
() => props.dataUrl,
|
|
83
|
+
async (url) => {
|
|
84
|
+
if (url) {
|
|
85
|
+
const { data } = await uni.$lcb.http.post(url)
|
|
86
|
+
dataInfo.value = data as Record<string, any>
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
{ immediate: true },
|
|
90
|
+
)
|
|
86
91
|
</script>
|
|
87
92
|
|
|
88
93
|
<style lang="scss" scoped></style>
|