vue2-client 1.20.3 → 1.20.4
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
|
@@ -917,6 +917,9 @@ export default {
|
|
|
917
917
|
}
|
|
918
918
|
const result = this.queryParamsName.endsWith('Cover')
|
|
919
919
|
return result
|
|
920
|
+
},
|
|
921
|
+
copyForm() {
|
|
922
|
+
return JSON.parse(JSON.stringify(this.form))
|
|
920
923
|
}
|
|
921
924
|
},
|
|
922
925
|
watch: {
|
|
@@ -926,7 +929,7 @@ export default {
|
|
|
926
929
|
},
|
|
927
930
|
deep: true
|
|
928
931
|
},
|
|
929
|
-
|
|
932
|
+
copyForm: {
|
|
930
933
|
handler(newVal, oldVal) {
|
|
931
934
|
if (
|
|
932
935
|
this.attr.keyName &&
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
@ceshi="ceshi"
|
|
12
12
|
@rowDblClick="rowDblClick"
|
|
13
13
|
:defaultPageSize="5"
|
|
14
|
-
serviceName="af-
|
|
14
|
+
serviceName="af-revenue"
|
|
15
15
|
ref="xFormTable"
|
|
16
16
|
:reserveSpaceForButtons="true"
|
|
17
17
|
@addFormSubmit="addFormSubmit"
|
|
@@ -30,7 +30,7 @@ export default {
|
|
|
30
30
|
data() {
|
|
31
31
|
return {
|
|
32
32
|
// 查询配置文件名
|
|
33
|
-
queryParamsName: '
|
|
33
|
+
queryParamsName: 'ceshiCRUD',
|
|
34
34
|
// 查询配置左侧tree
|
|
35
35
|
xTreeConfigName: 'addressType',
|
|
36
36
|
// 新增表单固定值
|
|
@@ -56,7 +56,7 @@ routerResource.example = {
|
|
|
56
56
|
// component: () => import('@vue2-client/base-client/components/common/XDescriptions/demo.vue')
|
|
57
57
|
// component: () => import('@vue2-client/base-client/components/his/HChart/demo.vue'),
|
|
58
58
|
// component: () => import('@vue2-client/pages/WorkflowDetail/WorkFlowDemo.vue'),
|
|
59
|
-
|
|
59
|
+
component: () => import('@vue2-client/base-client/components/common/XFormTable/demo.vue')
|
|
60
60
|
// component: () => import('@vue2-client/base-client/components/common/AfMap/demo.vue')
|
|
61
61
|
// component: () => import('@vue2-client/base-client/components/common/ImagePreviewModal/demo.vue'),
|
|
62
62
|
// component: () => import('@vue2-client/base-client/components/common/XImagePreview/demo.vue'),
|
|
@@ -65,7 +65,7 @@ routerResource.example = {
|
|
|
65
65
|
// component: () => import('@vue2-client/pages/addressSelect/addressDemo.vue'),
|
|
66
66
|
// component: () => import('@vue2-client/base-client/components/common/XDescriptions/demo.vue'),
|
|
67
67
|
// component: () => import('@vue2-client/base-client/components/common/XAddNativeForm/demo.vue')
|
|
68
|
-
component: () => import('@vue2-client/base-client/components/common/XInspectionDetailDrawer/demo.vue')
|
|
68
|
+
// component: () => import('@vue2-client/base-client/components/common/XInspectionDetailDrawer/demo.vue')
|
|
69
69
|
// component: () => import('@vue2-client/base-client/components/common/XFormGroup/demo.vue')
|
|
70
70
|
// component: () => import('@vue2-client/base-client/components/common/XReport/XReportDemo.vue'),
|
|
71
71
|
// component: () => import('@vue2-client/base-client/components/common/XReportGrid/XReportDemo.vue'),
|