|
@@ -33,6 +33,16 @@
|
|
|
<template #createtime="{ record }">
|
|
<template #createtime="{ record }">
|
|
|
<a>{{ formatTime(record.createtime) }}</a>
|
|
<a>{{ formatTime(record.createtime) }}</a>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- 结算方式 1:按日结息 3:按月结息-->
|
|
|
|
|
+ <template #interestsettlemode="{ record }">
|
|
|
|
|
+ <a>{{ getInterestSettleModeName(record.interestsettlemode) }}</a>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <!-- 费用 -->
|
|
|
|
|
+ <template #interestsettlevalue="{ record }">
|
|
|
|
|
+ <a>{{ getInterestrateModeName(record.interestratemode, record.interestrate) }}</a>
|
|
|
|
|
+ </template>
|
|
|
|
|
+
|
|
|
</a-table>
|
|
</a-table>
|
|
|
<component :is="componentId"
|
|
<component :is="componentId"
|
|
|
v-if="componentId"
|
|
v-if="componentId"
|
|
@@ -52,7 +62,12 @@ import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
|
import { formatTime } from '@/common/methods';
|
|
import { formatTime } from '@/common/methods';
|
|
|
import Bus from '@/utils/eventBus/index';
|
|
import Bus from '@/utils/eventBus/index';
|
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
|
-import { getApplyStatusFinanceName, getFinanceTypeName } from '@/common/constants/enumsName';
|
|
|
|
|
|
|
+import {
|
|
|
|
|
+ getApplyStatusFinanceName,
|
|
|
|
|
+ getFinanceTypeName,
|
|
|
|
|
+ getInterestrateModeName,
|
|
|
|
|
+ getInterestSettleModeName
|
|
|
|
|
+} from '@/common/constants/enumsName';
|
|
|
import { BtnList as BtnListType } from '@/common/components/btnList/interface';
|
|
import { BtnList as BtnListType } from '@/common/components/btnList/interface';
|
|
|
|
|
|
|
|
export default defineComponent({
|
|
export default defineComponent({
|
|
@@ -95,6 +110,8 @@ export default defineComponent({
|
|
|
getFinanceTypeName,
|
|
getFinanceTypeName,
|
|
|
getApplyStatusFinanceName,
|
|
getApplyStatusFinanceName,
|
|
|
handleBtnList,
|
|
handleBtnList,
|
|
|
|
|
+ getInterestrateModeName,
|
|
|
|
|
+ getInterestSettleModeName,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|