@tplc/business 0.7.95 → 0.7.97
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,15 @@
|
|
|
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.7.97](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.96...v0.7.97) (2026-01-24)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* Integrate RoomTypeCalendarPicker into LcbActionView and update action handling ([9e57475](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/9e5747504935b8d545d53b46d1df57219e6e65b9))
|
|
11
|
+
|
|
12
|
+
### [0.7.96](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.95...v0.7.96) (2026-01-24)
|
|
13
|
+
|
|
5
14
|
### [0.7.95](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.94...v0.7.95) (2026-01-24)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
</view>
|
|
12
12
|
<view class="popup-content">
|
|
13
13
|
<!-- 房型选择 Tabs -->
|
|
14
|
-
<view
|
|
14
|
+
<view v-if="apiRoomTypes.length > 0">
|
|
15
15
|
<wd-tabs
|
|
16
16
|
v-model="activeRoomIndex"
|
|
17
17
|
@change="handleRoomChange"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
</view>
|
|
32
32
|
|
|
33
33
|
<!-- 自选晚数 tags -->
|
|
34
|
-
<view class="px-3
|
|
34
|
+
<view class="px-3" v-if="tags?.length">
|
|
35
35
|
<view class="flex items-center gap-2">
|
|
36
36
|
<view
|
|
37
37
|
v-for="option in tags"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
|
|
66
66
|
<!-- 底部按钮区域 -->
|
|
67
67
|
<view class="bottom-buttons">
|
|
68
|
-
<lcb-operation-actions :buttonList="buttonList" size="
|
|
68
|
+
<lcb-operation-actions :buttonList="buttonList" size="medium" />
|
|
69
69
|
</view>
|
|
70
70
|
<wd-gap :safe-area-bottom="true" :height="0" />
|
|
71
71
|
</view>
|
|
@@ -104,7 +104,7 @@ const props = withDefaults(
|
|
|
104
104
|
defaultSelectedDates?: number[]
|
|
105
105
|
}>(),
|
|
106
106
|
{
|
|
107
|
-
panelHeight:
|
|
107
|
+
panelHeight: 400,
|
|
108
108
|
},
|
|
109
109
|
)
|
|
110
110
|
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
/>
|
|
82
82
|
<MemberRolePopup v-model:show="showMemberRole" v-if="showMemberRole" />
|
|
83
83
|
<RoomTypeCalendarPicker
|
|
84
|
-
v-
|
|
84
|
+
v-model="showRoomPriceCalendar"
|
|
85
85
|
v-if="showRoomPriceCalendar"
|
|
86
86
|
:defaultSelectedDates="defaultSelectedDates"
|
|
87
87
|
/>
|