16ed3592 by lihua

fix:标签名称问题

1 parent 09d02418
...@@ -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
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!