4b72594e by lihua

fix

1 parent 43f60705
...@@ -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
...@@ -215,7 +215,7 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => { ...@@ -215,7 +215,7 @@ const handleTableExpandChange = (row: any, expandedRows: any[]) => {
215 <span class="item_value"><ellipsis-tooltip :content="activity?.info?.logHash || '--'" 215 <span class="item_value"><ellipsis-tooltip :content="activity?.info?.logHash || '--'"
216 class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span> 216 class-name="w100f mr8-i" :refName="'tooltipOver' + 'logHash'"></ellipsis-tooltip></span>
217 </div> 217 </div>
218 <div class="split-line"></div> 218 <div v-show="index < activities.length - 1" class="split-line"></div>
219 </div> 219 </div>
220 </el-timeline-item> 220 </el-timeline-item>
221 </el-timeline> 221 </el-timeline>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!