cloud-web-corejs 1.0.95 → 1.0.97

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.
@@ -14,6 +14,8 @@
14
14
  v-if="showDesinger"
15
15
  :readonly="readonly"
16
16
  :columnFlag="columnFlag"
17
+ :sourceData="sourceData"
18
+ sourceData:="sourceData"
17
19
  @customConfirm="customConfirm"
18
20
  />
19
21
  </div><!--
@@ -41,6 +43,7 @@ export default {
41
43
  formTemplate: Object,
42
44
  widgetList: Array,
43
45
  columnFlag: Boolean,
46
+ sourceData:Object
44
47
  },
45
48
  components: {
46
49
  VFormDesigner
@@ -114,13 +114,13 @@ export default {
114
114
  width: 250
115
115
  },
116
116
  {
117
- field: 'createDate',
118
- title: this.$t1('创建时间'),
117
+ field: '_createBy',
118
+ title: this.$t1('创建人'),
119
119
  width: 150
120
120
  },
121
121
  {
122
- field: '_createBy',
123
- title: this.$t1('创建人'),
122
+ field: 'createDate',
123
+ title: this.$t1('创建时间'),
124
124
  width: 150
125
125
  },
126
126
  {
@@ -128,6 +128,11 @@ export default {
128
128
  title: this.$t1('更新人'),
129
129
  width: 150
130
130
  },
131
+ {
132
+ field: 'modifyDate',
133
+ title: this.$t1('更新时间'),
134
+ width: 150
135
+ },
131
136
  {
132
137
  width: 47,
133
138
  fixed: 'right',