|
|
@@ -18,7 +18,8 @@
|
|
|
</template>
|
|
|
<!-- 物流信息 -->
|
|
|
<template #scfcontractstatus="{ record }">
|
|
|
- <a>{{ getContractName(record.scfcontractstatus) }}</a>
|
|
|
+ <div>{{ getFinancingStatus(record.currisklevel, record.reckonrecovermargin) }}</div>
|
|
|
+ <div v-if="record.currisklevel === 2">{{ "需追加" + record.reckonrecovermargin + "元" }}</div>
|
|
|
</template>
|
|
|
|
|
|
<!-- 账户类型 -->
|
|
|
@@ -38,7 +39,7 @@ import Filter from './compoments/filter/index.vue';
|
|
|
import Detail from './compoments/detail/index.vue';
|
|
|
import { QhjContract } from '@/services/go/ermcp/qhj/interface';
|
|
|
import { queryContract } from '@/services/go/ermcp/qhj';
|
|
|
-import { getContractName } from '@/common/constants/enumsName';
|
|
|
+import {getContractName, getFinancingStatus} from '@/common/constants/enumsName';
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'platinum_financing_information_tab',
|
|
|
@@ -70,7 +71,7 @@ export default defineComponent({
|
|
|
updateColumn,
|
|
|
queryTable,
|
|
|
btnClick,
|
|
|
- getContractName,
|
|
|
+ getFinancingStatus,
|
|
|
};
|
|
|
},
|
|
|
});
|