BUG 29043
This commit is contained in:
		| @@ -11,6 +11,8 @@ | ||||
|         <el-form size="small" label-width="160px"> | ||||
|           <ai-card title="融资需求"> | ||||
|             <template #content> | ||||
|               <el-form-item label="融资方式">{{ dict.getLabel('financingDemandApplyType', detail.applyType) }} | ||||
|               </el-form-item> | ||||
|               <el-row type="flex" class="flexWrap"> | ||||
|                 <el-form-item label="意向金额(万)">{{ detail.loanAmount }}</el-form-item> | ||||
|                 <el-form-item label="期望使用期限"> | ||||
| @@ -19,13 +21,14 @@ | ||||
|                 <el-form-item label="资金用途"> | ||||
|                   {{ dict.getLabel('financialFundPurpose', detail.fundPurpose) }} | ||||
|                 </el-form-item> | ||||
|                 <el-form-item label="企业主体"> | ||||
|                 <el-form-item label="企业主体" v-if="detail.applyType==1"> | ||||
|                   {{ detail.enterpriseName }} | ||||
|                   <el-link type="primary" | ||||
|                            @click="$router.push({name:'973f0339e5904d99bc8afe86b8cf4e9c',query:{id:detail.enterpriseId}})"> | ||||
|                            @click="showEnterpriseDetail=true"> | ||||
|                     企业详情 | ||||
|                   </el-link> | ||||
|                 </el-form-item> | ||||
|                 <el-form-item v-else/> | ||||
|                 <el-form-item label="联系人">{{ detail.createUserName }}</el-form-item> | ||||
|                 <el-form-item label="所在地区">{{ detail.areaName }}</el-form-item> | ||||
|                 <el-form-item label="联系方式">{{ detail.phone }}</el-form-item> | ||||
| @@ -68,14 +71,24 @@ | ||||
|         </el-form-item> | ||||
|       </el-form> | ||||
|     </ai-dialog> | ||||
|     <ai-dialog class="dialog" :title="detail.enterpriseName||'企业详情'" :visible.sync="showEnterpriseDetail" width="1200px" | ||||
|                customFooter> | ||||
|       <enterprise-dialog v-if="detail.enterpriseId" :enterprise-id="detail.enterpriseId" :instance="instance" | ||||
|                          :dict="dict"/> | ||||
|       <template #footer> | ||||
|         <el-button @click="showEnterpriseDetail=false">关闭</el-button> | ||||
|       </template> | ||||
|     </ai-dialog> | ||||
|   </section> | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
| import {mapState} from "vuex"; | ||||
| import EnterpriseDialog from "../../../components/enterpriseDialog"; | ||||
|  | ||||
| export default { | ||||
|   name: "grabDetail", | ||||
|   components: {EnterpriseDialog}, | ||||
|   props: { | ||||
|     instance: Function, | ||||
|     dict: Object, | ||||
| @@ -96,7 +109,8 @@ export default { | ||||
|         auditAmount: [{required: true, message: "请输入 放款金额"}], | ||||
|         auditLifespan: [{required: true, message: "请选择 使用期限"}], | ||||
|         loanDate: [{required: true, message: "请选择 放款日期"}], | ||||
|       } | ||||
|       }, | ||||
|       showEnterpriseDetail: false | ||||
|     } | ||||
|   }, | ||||
|   methods: { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user