diff --git a/src/views/contractManagement/revenueContract/modules/OtherSystemContract.vue b/src/views/contractManagement/revenueContract/modules/OtherSystemContract.vue index 3f6c927..89db542 100644 --- a/src/views/contractManagement/revenueContract/modules/OtherSystemContract.vue +++ b/src/views/contractManagement/revenueContract/modules/OtherSystemContract.vue @@ -175,13 +175,28 @@ export default { align: 'center', dataIndex: 'contStatus', width: 100, + customRender: function(text) { + if (text === 'ST_SCCS') { + return '合同执行中' + } else if (text === 'ST_CHANGE') { + return '变更中' + } else if (text === 'ST_TERMINAT') { + return '作废中' + } else if (text === 'ST_TERMINATED') { + return '已作废' + }else if (text === 'ST_FINISHED') { + return '合同结束' + } + }, scopedSlots: { customRender: 'text' } - }, { - title: '申请员工号', - align: 'center', - dataIndex: 'applydeptno', - width: 200 - }, { + }, + // { + // title: '申请员工号', + // align: 'center', + // dataIndex: 'applydeptno', + // width: 200 + // }, + { title: '操作', dataIndex: 'action', align: 'center',