edit
This commit is contained in:
@ -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))
|
||||
}
|
||||
]
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user