@tplc/business 0.7.94 → 0.7.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,13 @@
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.95](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.94...v0.7.95) (2026-01-24)
6
+
7
+
8
+ ### ♻️ Code Refactoring | 代码重构
9
+
10
+ * Remove unused type definitions and components from business package ([f00690a](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/commit/f00690a1768b87f397c5ab0ae7ba4dfee3ccb6b8))
11
+
5
12
  ### [0.7.94](https://gitlab888.30jia.com.cn/tourism-front/zero-code-pro/compare/v0.7.93...v0.7.94) (2026-01-24)
6
13
 
7
14
 
@@ -80,6 +80,11 @@
80
80
  :jumpUrl="jumpUrl"
81
81
  />
82
82
  <MemberRolePopup v-model:show="showMemberRole" v-if="showMemberRole" />
83
+ <RoomTypeCalendarPicker
84
+ v-mode="showRoomPriceCalendar"
85
+ v-if="showRoomPriceCalendar"
86
+ :defaultSelectedDates="defaultSelectedDates"
87
+ />
83
88
  </view>
84
89
  </template>
85
90
 
@@ -96,6 +101,7 @@ import { PAGE_PROVIDE_KEY, USER_BASIC_INFO } from '../../constants'
96
101
  import { getTemplateMessageList, TemplateMessage } from '../../api/user'
97
102
  import PayPopup from './components/PayPopup/index.vue'
98
103
  import MemberRolePopup from './components/MemberRolePopup/index.vue'
104
+ import RoomTypeCalendarPicker from './components/RoomTypeCalendarPicker/index.vue'
99
105
  const { translate } = useTranslate()
100
106
  defineOptions({
101
107
  name: 'LcbActionView',
@@ -122,6 +128,7 @@ const emits = defineEmits<{
122
128
  }>()
123
129
  const templateMessageList = ref<TemplateMessage[]>([])
124
130
  const routeFullPath = ref('')
131
+ const showRoomPriceCalendar = ref(false)
125
132
  onMounted(async () => {
126
133
  if (getJumpType(props.jumpType) === '142' && 'events' in props && props.events) {
127
134
  const data = await getTemplateMessageList(props.events)
@@ -393,6 +400,9 @@ const onActionClick = async () => {
393
400
  case '148':
394
401
  showMemberRole.value = true
395
402
  break
403
+ case '149':
404
+ showRoomPriceCalendar.value = true
405
+ break
396
406
  default:
397
407
  emits('click', props)
398
408
  break
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.7.94",
3
+ "version": "0.7.95",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],