fix : 需求上报详情删除重复项,优化台账上方基础信息排版,表格内容少时固定宽度,驳回弹窗'重新提交'改为'发起节点'

This commit is contained in:
2024-08-06 15:06:29 +08:00
parent ab191e940b
commit 33e6ad37b9
15 changed files with 191 additions and 273 deletions

View File

@@ -76,11 +76,11 @@ const tableConfig = reactive({
label: '专项资金名称',
align: 'center'
},
{
prop: 'approveName',
label: '审批人',
align: 'center'
},
// {
// prop: 'approveName',
// label: '审批人',
// align: 'center'
// },
{
prop: 'fundAmount',
label: '资金金额(元)',
@@ -100,17 +100,27 @@ const tableConfig = reactive({
{
prop: 'projectNumber',
label: '项目数量',
align: 'center'
align: 'center',
width: 100,
},
{
prop: 'taskNode',
label: '当前节点',
align: 'center'
prop: 'approveName',
label: '当前审批节点',
align: 'center',
width: 150,
currentRender: ({row, index}) => {
if(row.state=='1'){
return <span>{row.approveName}</span>
}else {
return <span>{row.taskNode}</span>
}
}
},
{
prop: 'state',
label: '状态',
align: 'center',
width: 150,
showOverflowTooltip: false,
currentRender: ({row, index}) => {
if (row.state == undefined||row.state == 0) {
@@ -125,6 +135,7 @@ const tableConfig = reactive({
label: '操作',
align: 'center',
fixed:'right',
width: 150,
showOverflowTooltip: false,
currentRender: ({row, index}) => {
let btn = []