Commit edf4293b authored by caimeng's avatar caimeng

修改小bug

parent a6ccea78
......@@ -6,8 +6,8 @@
<meta content="width=device-width,initial-scale=1.0" name="viewport" />
<script src="./aliyun-oss-sdk.min.js"></script>
<script src="./jQuery.1.9.1.min.js"></script>
<script src="./tdReport.1.2.min.js"></script>
<link href="<%= BASE_URL %>favicon.ico" rel="icon" />
<script src="./tdReport.1.2.min.js" charset='utf-8'></script>
<link href="<%= BASE_URL %>favicon.png" rel="icon" type="image/png" />
<title><%= VUE_APP_TITLE %></title>
<meta
content="vab,vab官网,后台管理框架,vue后台管理框架,vue-admin-beautiful,vue-admin-beautiful-pro,vue-admin-beautiful官网,vue-admin-beautiful文档,vue-element-admin,vue-element-admin官网,vue-element-admin文档,vue-admin,vue-admin官网,vue-admin文档"
......
......@@ -33,17 +33,25 @@
</el-row>
</el-form-item>
<el-form-item prop='perAllotAmount' label='人审额度(元)'>
<template v-if='manualAmount && form.capitalCode==="FENGSHENGBUSINESS"'>
<el-form-item prop='perAllotAmount' label='人审额度(元)'>
<el-row>
<el-col :span='14'>
<span>{{ money(manualAmount) }}</span>
</el-col>
</el-row>
</el-form-item>
</template>
<el-form-item v-else prop='perAllotAmount' label='人审额度(元)'>
<el-row>
<el-col :span='14'>
<template v-if='manualAmount && form.capitalCode==="FENGSHENGBUSINESS"'>
<span>{{ money(manualAmount) }}</span>
</template>
<el-input v-else v-model='form.perAllotAmount' style='width: 100%;' clearable placeholder='请输入人审额度' />
<el-input v-model='form.perAllotAmount' style='width: 100%;' clearable placeholder='请输入人审额度' />
</el-col>
</el-row>
</el-form-item>
<template v-if='searchData!==null'>
<el-form-item prop='capitalCodeLoanSign' label='选择资方'>
<el-row>
......@@ -179,7 +187,7 @@
loanSign: '',
memo: '',
perAllotAmount: '',
loanIntentionNum:'',
loanIntentionNum: '',
userId: ''
}
}
......@@ -190,10 +198,10 @@
async mounted() {
console.log(this.item, 'nash ')
if (this.item !== null) {
const { applyAmount, manualAmount,loanIntentionNum, creditAmount, creditNo } = this.item
const { applyAmount, manualAmount, loanIntentionNum, creditAmount, creditNo } = this.item
this.form.applyAmount = this.money(applyAmount)
this.form.creditAmount = this.money(creditAmount)
this.form.loanIntentionNum = loanIntentionNum;
this.form.loanIntentionNum = loanIntentionNum
this.manualAmount = manualAmount
this.form.creditNo = creditNo
......@@ -207,7 +215,7 @@
if (item) {
const { capitalCode, loanSign } = item
this.form.capitalCode = capitalCode
this.form.loanSign = loanSign;
this.form.loanSign = loanSign
}
},
// 风审查询
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment