2.申办业务时查看个人的报告信息(信息待定)
This commit is contained in:
		| @@ -32,7 +32,12 @@ | ||||
|                 </el-form-item> | ||||
|                 <el-form-item label="资金用途">{{ dict.getLabel('financialFundPurpose', detail.fundPurpose) }} | ||||
|                 </el-form-item> | ||||
|                 <el-form-item label="联系人">{{ detail.name }}</el-form-item> | ||||
|                 <el-form-item label="联系人"> | ||||
|                   <el-row type="flex"> | ||||
|                     {{ detail.name }} | ||||
|                     <person-credit-report :person="detail" :instance="instance" :dict="dict"/> | ||||
|                   </el-row> | ||||
|                 </el-form-item> | ||||
|                 <el-form-item label="身份证号">{{ detail.idNumber }}</el-form-item> | ||||
|                 <el-form-item label="联系方式">{{ detail.phone }}</el-form-item> | ||||
|                 <el-form-item label="申请时间">{{ detail.createTime }}</el-form-item> | ||||
| @@ -94,16 +99,24 @@ | ||||
|         <el-button @click="isShow=false">关闭</el-button> | ||||
|       </template> | ||||
|     </ai-dialog> | ||||
|     <ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="isShow" width="1200px" customFooter> | ||||
|       <enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance" | ||||
|                          :dict="dict"/> | ||||
|       <template #footer> | ||||
|         <el-button @click="isShow=false">关闭</el-button> | ||||
|       </template> | ||||
|     </ai-dialog> | ||||
|   </section> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| import {mapState} from "vuex"; | ||||
| import EnterpriseDialog from "../../../components/enterpriseDialog"; | ||||
| import PersonCreditReport from "../../../components/personCreditReport"; | ||||
|  | ||||
| export default { | ||||
|   name: "loanDetail", | ||||
|   components: {EnterpriseDialog}, | ||||
|   components: {PersonCreditReport, EnterpriseDialog}, | ||||
|   props: { | ||||
|     instance: Function, | ||||
|     dict: Object, | ||||
| @@ -133,7 +146,8 @@ export default { | ||||
|         loanDate: [{required: true, message: "请选择 放款日期"}], | ||||
|         auditDescription: [{required: true, message: "请输入 审批意见"}], | ||||
|       }, | ||||
|       isShow: false | ||||
|       isShow: false, | ||||
|       personCR: false | ||||
|     } | ||||
|   }, | ||||
|   methods: { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user