@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
 
@@ -7,6 +7,7 @@
7
7
  @chooseavatar="onChooseAvatar"
8
8
  :class="customClass"
9
9
  :style="customStyle"
10
+ show-message-card
10
11
  >
11
12
  <slot />
12
13
  </button>
@@ -144,11 +144,13 @@
144
144
  <wd-checkbox v-model="form.agreement">
145
145
  <view class="flex">
146
146
  <text>{{ t('同意') }}</text>
147
- <lcb-agreement-view :type="agreementType">
148
- <template v-slot="{ text }">
149
- <text class="text-primary">《{{ text }}》</text>
150
- </template>
151
- </lcb-agreement-view>
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
- return JSON.parse(frontInputContent || '{}')
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" scoped>
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 class="text-24rpx" :style="{ color: iconNameColor || '#000000' }">
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>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <view @click.stop class="w-full page-btn-view">
3
- <view class="flex gap-5 w-full items-center">
3
+ <view class="flex gap-3 w-full items-center">
4
4
  <block v-for="(item, index) in iconList" :key="item.iconName">
5
5
  <wd-popover
6
6
  mode="menu"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.3.94",
3
+ "version": "0.3.95",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],