vue2-client 1.10.19 → 1.10.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue2-client",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.21",
|
|
4
4
|
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
6
|
"serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@afwenming123/vue-easy-tree": "^1.0.1",
|
|
22
|
-
"@afwenming123/vue-plugin-hiprint": "^0.0.
|
|
22
|
+
"@afwenming123/vue-plugin-hiprint": "^0.0.70",
|
|
23
23
|
"@amap/amap-jsapi-loader": "^1.0.1",
|
|
24
24
|
"@antv/data-set": "^0.11.8",
|
|
25
25
|
"@antv/g2plot": "^2.4.31",
|
|
@@ -83,7 +83,7 @@ routerResource.example = {
|
|
|
83
83
|
{
|
|
84
84
|
path: 'default',
|
|
85
85
|
name: '示例页面',
|
|
86
|
-
component: () => import('@vue2-client/base-client/components/common/XAddNativeForm/demo.vue'),
|
|
86
|
+
// component: () => import('@vue2-client/base-client/components/common/XAddNativeForm/demo.vue'),
|
|
87
87
|
// component: () => import('@vue2-client/base-client/components/common/XFormGroup/demo.vue'),
|
|
88
88
|
// component: () => import('@vue2-client/base-client/components/common/XReport/XReportDemo.vue'),
|
|
89
89
|
// component: () => import('@vue2-client/base-client/components/common/XFormTable/demo.vue'),
|
|
@@ -95,7 +95,7 @@ routerResource.example = {
|
|
|
95
95
|
// component: () => import('@vue2-client/base-client/components/common/XButtons/XButtonDemo.vue'),
|
|
96
96
|
// component: () => import('@vue2-client/base-client/components/common/XLabelSelect/XLabelSelectDemo.vue'),
|
|
97
97
|
// component: () => import('@vue2-client/base-client/components/common/XCheckList/XCheckList.vue'),
|
|
98
|
-
|
|
98
|
+
component: () => import('@vue2-client/base-client/components/common/XPrint/Demo.vue'),
|
|
99
99
|
// component: () => import('@vue2-client/base-client/components/AI/demo.vue'),
|
|
100
100
|
// component: () => import('@vue2-client/components/g2Charts/demo.vue'),
|
|
101
101
|
meta: {
|
|
@@ -17,8 +17,8 @@ export default class DataModel {
|
|
|
17
17
|
// model - 查询组件收集到的输入数据
|
|
18
18
|
search () {
|
|
19
19
|
return post(`/api/${this.serviceName}/report/${this.billUrl}`, { data: this.params }).then(
|
|
20
|
-
(
|
|
21
|
-
this.data = value
|
|
20
|
+
(res) => {
|
|
21
|
+
this.data = res.value || res
|
|
22
22
|
}
|
|
23
23
|
).catch(
|
|
24
24
|
() => {
|