vue2-client 1.20.2 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.20.2",
3
+ "version": "1.20.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -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
- form: {
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-iot"
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: 'crud_device_type_manage',
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
- // component: () => import('@vue2-client/base-client/components/common/XFormTable/demo.vue')
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'),
@@ -331,3 +331,7 @@ i {
331
331
  display: block !important;
332
332
  }
333
333
  }
334
+
335
+ .ant-table {
336
+ color: rgba(0, 0, 0, 0.8) !important;
337
+ }