cloud-web-corejs 1.0.54-dev.125 → 1.0.54-dev.127
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 +1 -1
- package/src/components/xform/form-designer/setting-panel/property-editor/container-data-table/data-table-editor.vue +1051 -1051
- package/src/components/xform/form-designer/setting-panel/property-editor/formScriptEnabled-editor.vue +7 -7
- package/src/components/xform/form-render/container-item/data-table-mixin.js +2113 -1
- package/src/components/xform/lang/zh-CN.js +1 -1
- package/src/layout/components/extractedCode/createDialog.vue +2 -2
- package/src/views/bd/setting/form_import_log/edit.vue +11 -5
- package/src/views/bd/setting/form_import_log/list.vue +12 -3
- package/src/views/bd/setting/form_template/mixins/list.js +608 -543
- package/src/views/bd/setting/table_model/mixins/list.js +18 -1
- package/src/views/user/position/list.vue +4 -4
- package/src/views/user/role/list.vue +4 -4
@@ -317,7 +317,24 @@ modules = {
|
|
317
317
|
resultColumns: [
|
318
318
|
{title: this.$t1('数据库表名'), field: "taBm", width: 250},
|
319
319
|
{title: this.$t1('表描述'), field: "taCh", width: 250},
|
320
|
-
{
|
320
|
+
{
|
321
|
+
title: this.$t1("结果信息"),
|
322
|
+
field: "impReturnMsg",
|
323
|
+
width: 300,
|
324
|
+
showOverflow: false,
|
325
|
+
slots: {
|
326
|
+
default: ({ row }, h) => {
|
327
|
+
let impReturnMsg = row.impReturnMsg;
|
328
|
+
let items = impReturnMsg
|
329
|
+
.split(";")
|
330
|
+
.filter((item) => !!item && !!item.trim())
|
331
|
+
.map((item) => {
|
332
|
+
return h("p", {}, `${item.trim()};`);
|
333
|
+
});
|
334
|
+
return h("div", {}, items);
|
335
|
+
},
|
336
|
+
}
|
337
|
+
},
|
321
338
|
],
|
322
339
|
callback: () => {
|
323
340
|
this.searchEvent();
|
@@ -33,11 +33,11 @@
|
|
33
33
|
<el-input v-model="formData.name" size="small" clearable/>
|
34
34
|
</template>
|
35
35
|
</vxe-form-item>
|
36
|
-
<vxe-form-item :title="$t1('岗位编码')+':'" field="code">
|
36
|
+
<!-- <vxe-form-item :title="$t1('岗位编码')+':'" field="code">
|
37
37
|
<template v-slot>
|
38
38
|
<el-input v-model="formData.code" size="small" clearable/>
|
39
39
|
</template>
|
40
|
-
</vxe-form-item>
|
40
|
+
</vxe-form-item> -->
|
41
41
|
</vxe-form>
|
42
42
|
</template>
|
43
43
|
</vxe-grid>
|
@@ -96,11 +96,11 @@ export default {
|
|
96
96
|
width: 150,
|
97
97
|
fixed: 'left'
|
98
98
|
},
|
99
|
-
{
|
99
|
+
/* {
|
100
100
|
field: 'code',
|
101
101
|
title: this.$t1('岗位编码'),
|
102
102
|
width: 250
|
103
|
-
},
|
103
|
+
}, */
|
104
104
|
{title: this.$t1('所属组织'), field: 'companyName', width: 150},
|
105
105
|
{
|
106
106
|
field: 'enabled',
|
@@ -34,11 +34,11 @@
|
|
34
34
|
<el-input v-model="formData.name" size="small" clearable/>
|
35
35
|
</template>
|
36
36
|
</vxe-form-item>
|
37
|
-
<vxe-form-item :title="$t1('角色编码')+':'" field="code">
|
37
|
+
<!-- <vxe-form-item :title="$t1('角色编码')+':'" field="code">
|
38
38
|
<template v-slot>
|
39
39
|
<el-input v-model="formData.code" size="small" clearable/>
|
40
40
|
</template>
|
41
|
-
</vxe-form-item>
|
41
|
+
</vxe-form-item> -->
|
42
42
|
</vxe-form>
|
43
43
|
</template>
|
44
44
|
</vxe-grid>
|
@@ -106,11 +106,11 @@ export default {
|
|
106
106
|
sortable: true,
|
107
107
|
fixed: 'left'
|
108
108
|
},
|
109
|
-
{
|
109
|
+
/* {
|
110
110
|
title: this.$t1('角色编码'),
|
111
111
|
field: 'code',
|
112
112
|
width: 150
|
113
|
-
},
|
113
|
+
}, */
|
114
114
|
{
|
115
115
|
title: this.$t1('角色描述'),
|
116
116
|
field: 'description',
|