w-ui-v1 1.1.19 → 1.1.21
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/package.json +1 -1
- package/utils/apis/pageConfig.ts +9 -0
- package/w-card/w-card.vue +494 -483
- package/w-detail/w-detail.vue +2 -0
- package/w-form-control/w-form-control.vue +33 -4
- package/w-menu/w-menu.vue +4 -3
- package/w-report-table/w-report-table.vue +182 -123
- package/w-search/w-search.vue +3 -5
package/package.json
CHANGED
package/utils/apis/pageConfig.ts
CHANGED
|
@@ -5,6 +5,15 @@ export function pageConfig(sourceId: string) {
|
|
|
5
5
|
url: `/v3/ltmpl/config?sourceId=${sourceId}`,
|
|
6
6
|
})
|
|
7
7
|
}
|
|
8
|
+
|
|
9
|
+
// 获取报表页面详细配置
|
|
10
|
+
export function reportPageData(queryKey: string,language:string='zh') {
|
|
11
|
+
return request({
|
|
12
|
+
url: `/v3/ltmpl/report-data?queryKey=${queryKey}&language=${language}`,
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
8
17
|
//勾选列表页面详细配置
|
|
9
18
|
export function selectPageConfig(sourceId: string) {
|
|
10
19
|
return request({
|