@tplc/business 0.4.8 → 0.4.9
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,8 @@
|
|
|
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.9](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.8...v0.4.9) (2025-03-25)
|
|
6
|
+
|
|
5
7
|
### [0.4.8](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.7...v0.4.8) (2025-03-25)
|
|
6
8
|
|
|
7
9
|
### [0.4.7](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.4.6...v0.4.7) (2025-03-25)
|
|
@@ -47,11 +47,15 @@
|
|
|
47
47
|
backgroundColor: `rgba(241,241, 241, ${opacity})`,
|
|
48
48
|
}"
|
|
49
49
|
/>
|
|
50
|
-
<
|
|
51
|
-
class="text-
|
|
52
|
-
:
|
|
53
|
-
|
|
54
|
-
|
|
50
|
+
<lcb-action-view
|
|
51
|
+
class="text-28rpx flex-1 mr-3"
|
|
52
|
+
:style="{
|
|
53
|
+
color: form.keywords ? 'var(--content-color)' : '#969696',
|
|
54
|
+
}"
|
|
55
|
+
v-bind="inputLink"
|
|
56
|
+
>
|
|
57
|
+
{{ form.keywords || placeholder }}
|
|
58
|
+
</lcb-action-view>
|
|
55
59
|
<view class="justify-center flex flex-col items-center" @click="getLocation(true)">
|
|
56
60
|
<wd-loading size="30rpx" v-if="locationIng" />
|
|
57
61
|
<img
|
package/package.json
CHANGED
package/utils/utils.ts
CHANGED
|
@@ -47,7 +47,7 @@ export const getPreviousPageId = () => {
|
|
|
47
47
|
}
|
|
48
48
|
getPageId: () => number
|
|
49
49
|
}
|
|
50
|
-
return isH5 ? page
|
|
50
|
+
return isH5 ? page?.$page?.id : page?.getPageId?.()
|
|
51
51
|
}
|
|
52
52
|
/** 合并url参数 url = /pages/data/index?id=1&name=2 urlParams = id=1&name=2&type=1 */
|
|
53
53
|
export const getFinalUrl = (url: string, urlParams?: string) => {
|