@tplc/business 0.2.24 → 0.2.25
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.2.25](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.24...v0.2.25) (2024-12-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* action-view 新增request ([a9de65c](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/a9de65ccb7da95be194438a0cca12c917343a272))
|
|
11
|
+
|
|
5
12
|
### [0.2.24](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.23...v0.2.24) (2024-12-16)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -39,7 +39,6 @@ import { LcbActionViewProps } from './types'
|
|
|
39
39
|
import { uploadFile } from '../../hooks/useUpload'
|
|
40
40
|
import mpHtml from 'mp-html/src/uni-app/components/mp-html/mp-html.vue'
|
|
41
41
|
import { PAGE_ANCHOR_PROVIDE_KEY } from '../../constants'
|
|
42
|
-
import { $lcb } from 'index'
|
|
43
42
|
defineOptions({
|
|
44
43
|
name: 'LcbActionView',
|
|
45
44
|
options: {
|
|
@@ -123,7 +122,7 @@ const onActionClick = async () => {
|
|
|
123
122
|
if (url) anchor.value = url
|
|
124
123
|
break
|
|
125
124
|
case 17:
|
|
126
|
-
await
|
|
125
|
+
await uni.$lcb.http.post(props.requestInfo.requestUrl, props.requestInfo.requestParams)
|
|
127
126
|
emits('refresh')
|
|
128
127
|
break
|
|
129
128
|
/** 新窗口跳到页面 */
|
package/package.json
CHANGED