This commit is contained in:
Taric Xin
2022-04-20 16:12:55 +08:00
parent 76acf73ee1
commit 8b262bd028
4 changed files with 121 additions and 63 deletions

View File

@ -70,7 +70,7 @@ export class ContractManagementPartnerComponent implements OnInit {
this.columns = [
{
title: '合同编号',
width: '100px',
width: '130px',
className: 'text-center',
render: 'contractCode'
},
@ -121,6 +121,19 @@ export class ContractManagementPartnerComponent implements OnInit {
'5': { text: '已过期', color: 'warning' },
'7': { text: '已拒签', color: 'warning' }
}
},
{
title: '操作',
className: 'text-center',
fixed: 'right',
width: '80px',
buttons: [
{
text: '签署',
iif: item => item.esignFlowStatus === '0' || item.esignFlowStatus === '1' || item.esignFlowStatus === '13',
click: item => this.service.StartTheProcessToESignById(item.id, () => this.st.load(1))
}
]
}
];
}