cloud-web-corejs 1.0.54-dev.125 → 1.0.54-dev.126
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
@@ -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();
|