cloud-web-corejs 1.0.247 → 1.0.249
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
CHANGED
|
@@ -90,6 +90,12 @@
|
|
|
90
90
|
<th>{{ $t2("文件编码", "components.fileLibrary.fileSn") }}</th>
|
|
91
91
|
<td colspan="3">{{ attachmentDTO.fileSn }}</td>
|
|
92
92
|
</tr>
|
|
93
|
+
<tr>
|
|
94
|
+
<th>{{ $t1("作者") }}</th>
|
|
95
|
+
<td>{{ attachmentDTO.fileAuthor }}</td>
|
|
96
|
+
<th>{{ $t1("修订人") }}</th>
|
|
97
|
+
<td>{{ attachmentDTO.fileReviser }}</td>
|
|
98
|
+
</tr>
|
|
93
99
|
<tr>
|
|
94
100
|
<th>{{ $t2("创建人", "system.label.createBy") }}</th>
|
|
95
101
|
<td>{{ attachmentDTO._createBy }}</td>
|
|
@@ -334,8 +334,11 @@ export default {
|
|
|
334
334
|
if (!!this.field.options.labelHidden) {
|
|
335
335
|
return true;
|
|
336
336
|
}
|
|
337
|
-
//
|
|
338
|
-
return this.
|
|
337
|
+
// 仅 VXE 数据表格列内字段隐藏标签(表头已展示列名);table2/table 等仍显示标签
|
|
338
|
+
return this.isDataTableColumnItem();
|
|
339
|
+
},
|
|
340
|
+
isDataTableColumnItem() {
|
|
341
|
+
return !!this.tableParam?.$table?.$parent?.$parent;
|
|
339
342
|
},
|
|
340
343
|
isSubFormItem() {
|
|
341
344
|
return !!this.tableParam;
|