@tplc/business 0.4.39 → 0.4.41
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,21 @@
|
|
|
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.4.41](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.40...v0.4.41) (2025-03-31)
|
|
6
|
+
|
|
7
|
+
### [0.4.40](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.39...v0.4.40) (2025-03-31)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### ✨ Features | 新功能
|
|
11
|
+
|
|
12
|
+
* copy 新增数据 ([0c4b648](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/0c4b648f09a69205a706da51f03a89f451c0a58c))
|
|
13
|
+
* form 同步 ([b0327eb](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b0327eb6cd1057698400d54a34270996f89e1f9a))
|
|
14
|
+
* tag颜色 ([5bae6b4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/5bae6b4a57dc19c954c949784eca217e4b2080d8))
|
|
15
|
+
* 复制组件 ([e41ef9f](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e41ef9f4a5bd2fb352b7692786467b2577a15fdd))
|
|
16
|
+
* 支持copy ([b60e945](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b60e94517d30ace677f4cbd46f44fb4f92d193b4))
|
|
17
|
+
* 新增copy ([a5a5d34](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a5a5d34d6904b9536d23fd75114ef1123e44a846))
|
|
18
|
+
* 新增数据 ([d2e3aea](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/d2e3aea2bb0bbd1d4a9fb79e243070e2ae2753de))
|
|
19
|
+
|
|
5
20
|
### [0.4.39](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.31...v0.4.39) (2025-03-31)
|
|
6
21
|
|
|
7
22
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<!-- eslint-disable vue/valid-v-for -->
|
|
2
2
|
<template>
|
|
3
|
-
<view class="h-full pb-3" v-if="letterList.length">
|
|
3
|
+
<view class="h-full pb-3 text-[var(--content-color)]" v-if="letterList.length">
|
|
4
4
|
<wd-index-bar ref="indexBarRef">
|
|
5
5
|
<view v-for="item in indexBars" :key="item.categoryName">
|
|
6
6
|
<wd-index-anchor
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
class="w-4 h-4 mr-1"
|
|
15
15
|
v-if="item.categoryName.includes('热门')"
|
|
16
16
|
/>
|
|
17
|
-
<view class="text-3
|
|
17
|
+
<view class="text-3 font-500">
|
|
18
18
|
{{ item.hint || item.categoryName }}
|
|
19
19
|
</view>
|
|
20
20
|
</view>
|
|
@@ -284,7 +284,7 @@ watch(
|
|
|
284
284
|
imgList,
|
|
285
285
|
(newVal) => {
|
|
286
286
|
Object.keys(newVal).forEach((key) => {
|
|
287
|
-
form.value[key] = newVal[key][0]?.
|
|
287
|
+
form.value[key] = newVal[key][0]?.response || newVal[key][0]?.url
|
|
288
288
|
})
|
|
289
289
|
},
|
|
290
290
|
{ deep: true },
|