|
|
@@ -16,6 +16,25 @@
|
|
|
:record="record"
|
|
|
@click="openComponent" />
|
|
|
</template>
|
|
|
+ <!-- 履约类型 -->
|
|
|
+ <template #performancetype="{ record }">
|
|
|
+ <a>{{ getPerformanceTypeName(record.performancetype) }}</a>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 付款方式 -->
|
|
|
+ <template #paymenttype="{ record }">
|
|
|
+ <a>{{ getPaymentTypeName(record.paymenttype) }}</a>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 履约状态 -->
|
|
|
+ <template #performancestatus="{ record }">
|
|
|
+ <a>{{ getPerformanceStatusName(record.performancestatus) }}</a>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <!-- 当前步骤 -->
|
|
|
+ <template #curstepname="{ record }">
|
|
|
+ <a>{{ record.curstepname }}</a>
|
|
|
+ </template>
|
|
|
</a-table>
|
|
|
<component :is="componentId"
|
|
|
v-if="componentId"
|
|
|
@@ -32,6 +51,7 @@ import { QueryPerformancePlanReq, WrPerformancePlan } from '@/services/go/wrtrad
|
|
|
import { getRecordItemTab } from '@/common/setup/order/orderData';
|
|
|
import { handleComposeOrderTable } from '@/common/setup/table/compose';
|
|
|
import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
|
+import {getPaymentTypeName, getPerformanceStatusName, getPerformanceTypeName} from "@/common/constants/enumsName";
|
|
|
export default defineComponent({
|
|
|
name: enumOrderComponents.performance_information_sell_performance,
|
|
|
components: {
|
|
|
@@ -61,6 +81,9 @@ export default defineComponent({
|
|
|
...handleComposeOrderTable<WrPerformancePlan>(param),
|
|
|
loading,
|
|
|
tableList,
|
|
|
+ getPerformanceTypeName,
|
|
|
+ getPaymentTypeName,
|
|
|
+ getPerformanceStatusName,
|
|
|
};
|
|
|
},
|
|
|
});
|