fix:标签名称问题
Showing
1 changed file
with
3 additions
and
3 deletions
| ... | @@ -44,8 +44,8 @@ const processTableInfo = ref({ | ... | @@ -44,8 +44,8 @@ const processTableInfo = ref({ |
| 44 | fields: [ | 44 | fields: [ |
| 45 | // { label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" }, | 45 | // { label: "序号", type: "index", width: TableColumnWidth.INDEX, align: "center" }, |
| 46 | { label: "编码", field: "code", width: 355 }, | 46 | { label: "编码", field: "code", width: 355 }, |
| 47 | { label: "名称", field: "name", width: 160 }, | 47 | { label: "名称", field: "name", width: 210 }, |
| 48 | { label: "类型", field: "type", width: 120 }, | 48 | { label: "类型", field: "type", width: 115 }, |
| 49 | { label: "提交日期", field: "submitTime", width: 170 }, | 49 | { label: "提交日期", field: "submitTime", width: 170 }, |
| 50 | { label: "所属主体", field: "tenantName", minWidth: 200 } | 50 | { label: "所属主体", field: "tenantName", minWidth: 200 } |
| 51 | ], | 51 | ], |
| ... | @@ -117,7 +117,7 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => { | ... | @@ -117,7 +117,7 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => { |
| 117 | activities.value = []; | 117 | activities.value = []; |
| 118 | for (const d of data) { | 118 | for (const d of data) { |
| 119 | activities.value.push({ | 119 | activities.value.push({ |
| 120 | timestamp: d.updateTIme, | 120 | timestamp: d.labelName + ' ' + d.updateTIme, |
| 121 | type: 'primary', | 121 | type: 'primary', |
| 122 | hollow: true, | 122 | hollow: true, |
| 123 | info: d | 123 | info: d | ... | ... |
-
Please register or sign in to post a comment