流程详情历史记录

This commit is contained in:
zhujiyan
2024-06-03 18:00:32 +08:00
parent 8a01455042
commit 31afc15f49
15 changed files with 223 additions and 226 deletions

View File

@@ -3,7 +3,7 @@
<TableHeader ref="TableHeaderRef">
<template #select>
<el-form-item label="用户名称">
<el-input v-model="tableStore.table.params.projectName" clearable></el-input>
<el-input v-model="tableStore.table.params.projectName" placeholder="请输入用户名称"></el-input>
</el-form-item>
<el-form-item label="所属地市">
<el-select v-model="tableStore.table.params.city" clearable placeholder="请选择所属地市">
@@ -86,7 +86,15 @@ const tableStore = new TableStore({
3: '退运'
}
},
{ field: 'substation', title: '变电站', minWidth: 100 },
{
field: 'substation',
title: '变电站',
minWidth: 100,
formatter: (row: any) => {
row.cellValue = row.cellValue ? row.cellValue : '/'
return row.cellValue
}
},
{
title: '详细信息',
minWidth: 100,