修复跳转异常,和文字说明

This commit is contained in:
aixianling
2022-09-21 17:22:49 +08:00
parent 3ef31d3631
commit 87739cf75e

View File

@@ -21,12 +21,12 @@
<template #content>
<el-form v-if="detail.id" size="small" label-width="160px">
<template v-if="isGuaranteeProduct">
<ai-card title="担保贷款申请">
<ai-card :title="`${guaranteeName}贷款申请`">
<template #content>
<el-form-item label="产品名称">
<el-row type="flex">
{{ detail.productName }}
<el-link class="mar-l10" type="primary" @click="$router.push({name:'27338cb83e77461dbd44356a6760df84',query:{id:detail.productId}})">
<el-link class="mar-l10" type="primary" @click="$router.push({name:'097f2fb0d99c4ecf9417f59146473a62',query:{id:detail.productId}})">
产品详情
</el-link>
</el-row>
@@ -66,10 +66,10 @@
<template #content>
<el-row type="flex" class="flexWrap">
<el-form-item label="审核进度">{{ dict.getLabel('financialLoanApplyStatus2', detail.status) }}</el-form-item>
<el-form-item label="担保机构">{{ detail.organizationName }}</el-form-item>
<el-form-item :label="`${guaranteeName}机构`">{{ detail.organizationName }}</el-form-item>
<el-form-item label="客户经理">{{ detail.auditUserName || detail.status3UserName }}</el-form-item>
<el-form-item label="联系方式 ">{{ detail.auditPhone || detail.status3Phone }}</el-form-item>
<el-form-item label="担保日期">{{ detail.loanDate }}</el-form-item>
<el-form-item :label="guaranteeLoanData">{{ detail.loanDate }}</el-form-item>
<el-form-item label="操作时间">{{ detail.auditTime }}</el-form-item>
</el-row>
<el-row>
@@ -154,7 +154,7 @@
</el-form-item>
<template v-if="form.auditStatus==1">
<template v-if="isGuaranteeProduct">
<el-form-item label="担保日期" prop="loanDate">
<el-form-item :label="guaranteeLoanData" prop="loanDate">
<el-date-picker v-model="form.loanDate" placeholder="请选择" clearable value-format="yyyy-MM-dd"/>
</el-form-item>
<el-form-item label="审批意见">
@@ -205,6 +205,8 @@ export default {
},
isChecking: v => v.detail.status == 3,
isGuaranteeProduct: v => /[12]/.test(v.detail.organizationType),
guaranteeName: v => v.detail.organizationType == 2 ? '担保' : '保险',
guaranteeLoanData: v => v.detail.organizationType == 2 ? '担保日期' : '投保日期',
auditOps: v => v.dict.getDict('enterpriseAuditStatus')?.map(e => ({
...e,
dictName: e.dictValue == 1 && v.detail.status == "0" ? "待核查" : e.dictName