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.
@@ -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
- {title: this.$t1('结果信息'), field: "impReturnMsg", width: 300}
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();