@tplc/business 0.0.63 → 0.0.65

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,20 @@
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.0.65](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.64...v0.0.65) (2024-11-21)
6
+
7
+
8
+ ### 🐛 Bug Fixes | Bug 修复
9
+
10
+ * lcb-vip 调整地址调整 ([08547c0](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/08547c0bf975af2adb65e4e1effdb132149803e3))
11
+
12
+ ### [0.0.64](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.63...v0.0.64) (2024-11-21)
13
+
14
+
15
+ ### ✨ Features | 新功能
16
+
17
+ * lcb-nav gap高度调整 ([6c2c940](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/6c2c9401a2db6f9c75d1d5a0cb05c102a3e75517))
18
+
5
19
  ### [0.0.63](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.0.62...v0.0.63) (2024-11-20)
6
20
 
7
21
 
@@ -4,19 +4,19 @@
4
4
  <view class="text-4 mb-4 font-500">{{ data.userRightsTitle }}</view>
5
5
  <mp-html :content="data.userRightsContent" v-if="data.userRightsContent" />
6
6
  <wd-qr-code
7
- custom-class="!mt-2.5"
8
- :size="170"
7
+ custom-class="!mt-5"
8
+ :size="130"
9
9
  canvasId="qrCode"
10
10
  :value="data.qrCode"
11
11
  v-if="data.qrCode"
12
12
  />
13
- <view class="text-3 text-#969696 mt-1" v-if="data.qrCodeTips">{{ data.qrCodeTips }}</view>
13
+ <view class="text-3 text-#969696 mt-3.5" v-if="data.qrCodeTips">{{ data.qrCodeTips }}</view>
14
14
  <wd-button
15
15
  type="primary"
16
16
  plain
17
17
  custom-class="!rounded-10rpx !mt-4 "
18
18
  @click="onDrawdown"
19
- v-if="['voucher', 'cashVoucher'].includes(data.userRightsType)"
19
+ v-if="['voucher', 'cashVoucher'].includes(data.userRightsType) && !hiddenDrawdown"
20
20
  >
21
21
  {{ translate('领取') }}
22
22
  </wd-button>
@@ -33,6 +33,7 @@ const { translate } = useTranslate()
33
33
  const show = ref(false)
34
34
  const props = defineProps<{
35
35
  data?: UserLevelRightsList
36
+ hiddenDrawdown?: boolean
36
37
  }>()
37
38
  watch(
38
39
  () => props.data,
@@ -53,5 +54,6 @@ const onDrawdown = () => {
53
54
  color: #000000;
54
55
  background: #ffffff;
55
56
  border-radius: 40rpx;
57
+ box-sizing: border-box;
56
58
  }
57
59
  </style>
@@ -17,14 +17,14 @@
17
17
  </view>
18
18
  <view
19
19
  class="absolute leading-4.5 top-156rpx left-4 flex items-center gap-0.5"
20
- @click="navigateTo('/pages-subs/vip/points')"
20
+ @click="navigateTo('/pages-sub/vip/points')"
21
21
  >
22
22
  <view>{{ translate('消费积分') }} {{ info.sumPoint }}</view>
23
23
  <wd-icon classPrefix="lcb" name="xiangyou" size="24rpx" />
24
24
  </view>
25
25
  <view
26
- class="absolute text-2.5 w-662rpx leading-8 bottom-2.5 left-2.5 flex items-center gap-0.5"
27
- @click="navigateTo('/pages-subs/vip/upgrade-guide')"
26
+ class="absolute text-2.5 w-662rpx leading-8 bottom-2.5 left-2.5 flex items-center gap-0.5 px-2.5 box-border"
27
+ @click="navigateTo('/pages-sub/vip/upgrade-guide')"
28
28
  >
29
29
  <view class="flex-1 truncate">
30
30
  {{ info.upgradeTips }}
@@ -78,7 +78,7 @@ const info = ref<CurrentRightsDetail>()
78
78
  const current = ref<UserLevelRightsList>()
79
79
  const onItemClick = (item: UserLevelRightsList) => {
80
80
  if (item.userRightsConfigId === '0') {
81
- navigateTo('/pages-subs/vip/rights')
81
+ navigateTo('/pages-sub/vip/rights')
82
82
  return
83
83
  }
84
84
  current.value = item
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.0.63",
3
+ "version": "0.0.65",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
@@ -2,6 +2,7 @@ import { UserLevelRightsList } from '../../api'
2
2
  declare const _default: import('vue').DefineComponent<
3
3
  __VLS_TypePropsToOption<{
4
4
  data?: UserLevelRightsList
5
+ hiddenDrawdown?: boolean
5
6
  }>,
6
7
  {},
7
8
  unknown,
@@ -16,6 +17,7 @@ declare const _default: import('vue').DefineComponent<
16
17
  import('vue').ExtractPropTypes<
17
18
  __VLS_TypePropsToOption<{
18
19
  data?: UserLevelRightsList
20
+ hiddenDrawdown?: boolean
19
21
  }>
20
22
  >
21
23
  >,