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.
- package/package.json +32 -38
- package/src/components/VabUpload/view.vue +18 -3
- package/src/components/jsonImport/index.js +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/table-column-dialog.vue +82 -43
- package/src/views/bd/setting/bd_attach_setting/mixins/list.js +1 -1
- package/src/views/bd/setting/form_import_log/edit.vue +2 -2
- package/src/views/bd/setting/form_script/edit1.vue +9 -2
- package/src/views/bd/setting/form_script/form_list.vue +1 -1
- package/src/views/bd/setting/form_script/mixins/form_list.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list.js +1 -1
- package/src/views/bd/setting/form_script/mixins/list1.js +1 -1
- package/src/views/bd/setting/form_template/mixins/list.js +1 -1
- package/src/views/bd/setting/menu_kind/mixins/list.js +201 -1
- package/src/views/bd/setting/table_model/edit.vue +1 -2
- package/src/views/bd/setting/table_model/mixins/dialog.js +1 -1
- package/src/views/bd/setting/table_model/mixins/edit.js +1 -1
- package/src/views/bd/setting/table_model/mixins/list.js +1 -1
- package/src/views/user/form/vform/designer.vue +3 -0
- package/src/views/user/project_tag/list.vue +9 -4
- package/src/views/user/user/edit.vue +1041 -1041
- package/src/views/user/wf/wf_obj_config/importItemDialog.vue +109 -0
- package/src/views/user/wf/wf_obj_config/list.vue +102 -4
@@ -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: '
|
118
|
-
title: this.$t1('
|
117
|
+
field: '_createBy',
|
118
|
+
title: this.$t1('创建人'),
|
119
119
|
width: 150
|
120
120
|
},
|
121
121
|
{
|
122
|
-
field: '
|
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',
|