@tplc/business 0.3.94 → 0.3.95
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,19 @@
|
|
|
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.95](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.93...v0.3.95) (2025-03-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🚀 Chore | 构建/工程依赖/工具
|
|
9
|
+
|
|
10
|
+
* **release:** 0.3.94 ([b3f9898](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/b3f9898ef5864ec6bb655590343f7b599950ed82))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### ✨ Features | 新功能
|
|
14
|
+
|
|
15
|
+
* 差协议弹出 ([53ecf7d](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/53ecf7dd6ee37cf94abaf3d8ffb2ad8adfcc1841))
|
|
16
|
+
* 新增字段 ([efedb08](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/efedb08a1c3a01b4f2a61ad1a5a5b15168e59119))
|
|
17
|
+
|
|
5
18
|
### [0.3.94](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.71...v0.3.94) (2025-03-21)
|
|
6
19
|
|
|
7
20
|
|
|
@@ -144,11 +144,13 @@
|
|
|
144
144
|
<wd-checkbox v-model="form.agreement">
|
|
145
145
|
<view class="flex">
|
|
146
146
|
<text>{{ t('同意') }}</text>
|
|
147
|
-
<
|
|
148
|
-
<
|
|
149
|
-
<
|
|
150
|
-
|
|
151
|
-
|
|
147
|
+
<view @click.stop>
|
|
148
|
+
<lcb-agreement-view :type="agreementType">
|
|
149
|
+
<template v-slot="{ text }">
|
|
150
|
+
<text class="text-primary">《{{ text }}》</text>
|
|
151
|
+
</template>
|
|
152
|
+
</lcb-agreement-view>
|
|
153
|
+
</view>
|
|
152
154
|
</view>
|
|
153
155
|
</wd-checkbox>
|
|
154
156
|
</view>
|
|
@@ -257,11 +259,15 @@ const getDateType = (frontInputTypeValue: string) => {
|
|
|
257
259
|
}
|
|
258
260
|
const getDateOptions = (frontInputContent: string) => {
|
|
259
261
|
if (frontInputContent.includes('[')) return {}
|
|
260
|
-
|
|
262
|
+
const data = JSON.parse(frontInputContent || '{}')
|
|
263
|
+
return {
|
|
264
|
+
...data,
|
|
265
|
+
defaultValue: data.defaultDate,
|
|
266
|
+
}
|
|
261
267
|
}
|
|
262
268
|
</script>
|
|
263
269
|
|
|
264
|
-
<style lang="scss"
|
|
270
|
+
<style lang="scss">
|
|
265
271
|
.lcb-form {
|
|
266
272
|
:deep(.wd-radio) {
|
|
267
273
|
line-height: inherit !important;
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="flex flex-col items-center min-h-56rpx justify-center">
|
|
3
3
|
<image :src="icon" class="w-5.5 h-5.5 box-border mb-1" v-if="icon" />
|
|
4
|
-
<view
|
|
4
|
+
<view
|
|
5
|
+
class="text-24rpx flex-shrink-0 whitespace-nowrap"
|
|
6
|
+
:style="{ color: iconNameColor || '#000000' }"
|
|
7
|
+
>
|
|
5
8
|
{{ iconName }}
|
|
6
9
|
</view>
|
|
7
10
|
</view>
|