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.
@@ -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();
@@ -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',