|
@@ -116,6 +116,10 @@
|
|
<template slot="oosFlag" slot-scope="text, record">
|
|
<template slot="oosFlag" slot-scope="text, record">
|
|
<a-tag :color="record.oosFlag==1?'red':'#ccc'" >{{ record.oosFlagDictValue }}</a-tag>
|
|
<a-tag :color="record.oosFlag==1?'red':'#ccc'" >{{ record.oosFlagDictValue }}</a-tag>
|
|
</template>
|
|
</template>
|
|
|
|
+ <!-- 财务状态 -->
|
|
|
|
+ <template slot="financialStatus" slot-scope="text, record">
|
|
|
|
+ <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.financialStatusDictValue" />
|
|
|
|
+ </template>
|
|
<!-- 操作 -->
|
|
<!-- 操作 -->
|
|
<template slot="action" slot-scope="text, record">
|
|
<template slot="action" slot-scope="text, record">
|
|
<a-button
|
|
<a-button
|
|
@@ -209,7 +213,7 @@ export default {
|
|
{ title: '审核时间', dataIndex: 'auditTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '审核时间', dataIndex: 'auditTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
|
|
{ title: '急件', dataIndex: 'oosFlag', scopedSlots: { customRender: 'oosFlag' }, width: 100, align: 'center' },
|
|
{ title: '急件', dataIndex: 'oosFlag', scopedSlots: { customRender: 'oosFlag' }, width: 100, align: 'center' },
|
|
{ title: '业务状态', dataIndex: 'billStatusDictValue', width: 110, align: 'center' },
|
|
{ title: '业务状态', dataIndex: 'billStatusDictValue', width: 110, align: 'center' },
|
|
- { title: '财务状态', dataIndex: 'financialStatusDictValue', width: 110, align: 'center' },
|
|
|
|
|
|
+ { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 110, align: 'center' },
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: 280, align: 'center', fixed: 'right' }
|
|
{ title: '操作', scopedSlots: { customRender: 'action' }, width: 280, align: 'center', fixed: 'right' }
|
|
],
|
|
],
|
|
// 加载数据方法 必须为 Promise 对象
|
|
// 加载数据方法 必须为 Promise 对象
|