@tplc/business 0.3.91 → 0.3.92

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.3.92](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.91...v0.3.92) (2025-03-20)
6
+
5
7
  ### [0.3.91](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.72...v0.3.91) (2025-03-20)
6
8
 
7
9
  ### [0.3.90](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.86...v0.3.90) (2025-03-20)
@@ -106,10 +106,9 @@ const { getLocation, userLocation } = useLocation()
106
106
  const addressCity = ref<ChildHotAddress | undefined>(getHistoryCity())
107
107
  getLocation()
108
108
  const form = inject<Ref<Record<string, any>>>(FORM_KEY)
109
- const onSearch = ({ value }: { value: string }) => {
110
- console.log('value', value)
109
+ const onSearch = (e: { detail: { value: string } }) => {
111
110
  if (form) {
112
- form.value.search = value
111
+ form.value.search = e.detail.value
113
112
  }
114
113
  }
115
114
  </script>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tplc/business",
3
- "version": "0.3.91",
3
+ "version": "0.3.92",
4
4
  "keywords": [
5
5
  "业务组件"
6
6
  ],