|
|
@@ -13,14 +13,16 @@
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="融资收款账户:" prop="zfrCollectionAccount" size="large" label-width="101px">
|
|
|
- <el-input v-model="form.zfrCollectionAccount" clearable placeholder="请输入融资账户" maxlength="25" :readonly="readonly" />
|
|
|
+ <el-input v-model="form.zfrCollectionAccount" clearable placeholder="请输入融资账户" maxlength="25" :readonly="onlyRead" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="zap-form" style="padding-bottom: 0;">
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="融信金额:" prop="zfiAmount" size="large">
|
|
|
- <el-input v-model="form.zfiAmount" clearable placeholder="请输入融信金额" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.zfiAmount" clearable placeholder="请输入融信金额" maxlength="25" readonly >
|
|
|
+ <template slot="append">元</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
@@ -32,12 +34,16 @@
|
|
|
<el-row class="zap-form" style="padding-bottom: 0;">
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="融资金额:" prop="zfrAmount" size="large">
|
|
|
- <el-input v-model="form.zfrAmount" clearable placeholder="请输入融资金额" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.zfrAmount" clearable placeholder="请输入融资金额" maxlength="25" readonly >
|
|
|
+ <template slot="append">元</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="融资利率:" prop="zfrRate" size="large">
|
|
|
- <el-input v-model="form.zfrRate" clearable placeholder="请输入融资利率" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.zfrRate" clearable placeholder="请输入融资利率" maxlength="25" readonly >
|
|
|
+ <template slot="append">%</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
@@ -49,26 +55,34 @@
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="服务费率:" prop="zfpcrChargeRate" size="large">
|
|
|
- <el-input v-model="form.zfpcrChargeRate" clearable placeholder="请输入服务费率" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.zfpcrChargeRate" clearable placeholder="请输入服务费率" maxlength="25" readonly >
|
|
|
+ <template slot="append">%</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="zap-form" style="padding-bottom: 0;">
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="预计融资成本:" prop="cost" size="large" label-width="101px">
|
|
|
- <el-input v-model="form.cost" clearable placeholder="请输入预计融资成本" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.cost" clearable placeholder="请输入预计融资成本" maxlength="25" readonly >
|
|
|
+ <template slot="append">元</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="预计融资期限:" prop="term" size="large" label-width="101px">
|
|
|
- <el-input v-model="form.term" clearable placeholder="请输入预计融资期限" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.term" clearable placeholder="请输入预计融资期限" maxlength="25" readonly >
|
|
|
+ <template slot="append">天</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-row class="zap-form" style="padding-bottom: 0;">
|
|
|
<el-col :span="12">
|
|
|
<el-form-item label="预计净融资额:" prop="amount" size="large" label-width="101px">
|
|
|
- <el-input v-model="form.amount" clearable placeholder="请输入预计净融资额" maxlength="25" readonly />
|
|
|
+ <el-input v-model="form.amount" clearable placeholder="请输入预计净融资额" maxlength="25" readonly >
|
|
|
+ <template slot="append">元</template>
|
|
|
+ </el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
@@ -286,7 +300,7 @@ export default {
|
|
|
//往来账款id
|
|
|
zbiId: '',
|
|
|
//融资账户是够编辑
|
|
|
- readonly: false,
|
|
|
+ onlyRead: false,
|
|
|
// 遮罩层
|
|
|
loading: true,
|
|
|
// 选中数组
|
|
|
@@ -496,7 +510,7 @@ export default {
|
|
|
if (item.zfpcrLoanType == '0') {
|
|
|
listAccInf(item.zfiProductId).then((response) => {
|
|
|
this.$set(this.form, "zfrCollectionAccount", response.msg);
|
|
|
- this.readonly = true
|
|
|
+ this.onlyRead = true
|
|
|
})
|
|
|
}
|
|
|
});
|