@tplc/business 0.4.142 → 0.4.144

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.4.144](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.143...v0.4.144) (2025-06-25)
6
+
7
+ ### [0.4.143](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.142...v0.4.143) (2025-06-25)
8
+
9
+
10
+ ### ✨ Features | 新功能
11
+
12
+ * 页面点击 ([3af52a2](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/3af52a217341403dee7ecb2f096196d0c74a888d))
13
+
5
14
  ### [0.4.142](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.141...v0.4.142) (2025-06-25)
6
15
 
7
16
 
package/action.d.ts CHANGED
@@ -47,6 +47,7 @@ export interface LcbGlobal {
47
47
  }
48
48
  constantsStore?: () => {
49
49
  mainConfig?: Record<string, any>
50
+ otherConfig?: Record<string, any>
50
51
  }
51
52
  getIsTabbar: () => boolean
52
53
  layoutId: string
@@ -153,7 +153,6 @@ const list = computed(() => {
153
153
  &-bottom {
154
154
  font-size: 24rpx;
155
155
  padding: 0 20rpx;
156
- color: #969696;
157
156
  }
158
157
  }
159
158
  // 满房
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.4.142",
3
+ "version": "0.4.144",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],
package/utils/history.ts CHANGED
@@ -12,11 +12,7 @@ export const setHistoryCity = (address?: ChildHotAddress) => {
12
12
  /** 获取城市历史记录如果超过3天就不使用历史 */
13
13
  export const getHistoryCity = () => {
14
14
  const history = uni.getStorageSync('cityHistory')
15
- if (
16
- history &&
17
- new Date().getTime() - history.time <
18
- (uni.$lcb.constantsStore?.().mainConfig?.cityExpirationTime || 0)
19
- ) {
15
+ if (history) {
20
16
  return history.address as ChildHotAddress
21
17
  } else {
22
18
  return getApp().globalData!.currentCity