@tplc/business 0.4.33 → 0.4.35

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.35](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.34...v0.4.35) (2025-03-29)
6
+
7
+
8
+ ### ✨ Features | 新功能
9
+
10
+ * nav back ([134b9e4](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/134b9e47a3840313080b78a8eed6b67c2d748fce))
11
+ * 调整数据结构 ([7b66284](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7b6628421608c136498860f267c461eda7b078fa))
12
+
13
+ ### [0.4.34](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.33...v0.4.34) (2025-03-29)
14
+
15
+
16
+ ### ✨ Features | 新功能
17
+
18
+ * 修改属性 ([e8ab53e](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/e8ab53eec1f85e74fe901f3971a557713bee5486))
19
+
5
20
  ### [0.4.33](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.76...v0.4.33) (2025-03-29)
6
21
 
7
22
 
@@ -222,7 +222,7 @@ const canBack = computed(() => {
222
222
 
223
223
  const capsuleList = computed(() => {
224
224
  const list: ICapsule[] = []
225
- if (props.back) {
225
+ if (canBack.value) {
226
226
  list.push({
227
227
  icon: 'zuo_left',
228
228
  action: 'back',
@@ -151,13 +151,14 @@ const value = computed(() => {
151
151
  </slot>
152
152
 
153
153
  <slot :value="value" v-if="prop === 'level' && value && Number(value)" name="level">
154
- <view :class="className" :style="style" class="inline relative top-[-3px]">
154
+ <view :class="className" :style="style" class="inline relative ml-1">
155
155
  <wd-rate
156
156
  :model-value="Number(value)"
157
157
  :num="Number(value)"
158
158
  readonly
159
- size="12px"
160
- space="2px"
159
+ size="22rpx"
160
+ active-color="var(--wot-color-theme)"
161
+ custom-class="!v-inherit text-22rpx"
161
162
  />
162
163
  </view>
163
164
  </slot>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.33",
3
+ "version": "0.4.35",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
package/utils/utils.ts CHANGED
@@ -56,8 +56,8 @@ export const getFinalUrl = (url: string, urlParams?: string) => {
56
56
  const query = parse(url.split('?')[1])
57
57
  const path = url.split('?')[0]
58
58
  return `${path}?${stringify({
59
- ...query,
60
59
  ...params,
60
+ ...query,
61
61
  })}`
62
62
  }
63
63