|
|
@ -1,4 +1,4 @@ |
|
|
|
<temp<template> |
|
|
|
<template> |
|
|
|
<div class="app-container"> |
|
|
|
<div v-show="viewState == 1"> |
|
|
|
<div class="tab-header webtop"> |
|
|
@ -61,7 +61,7 @@ |
|
|
|
<el-col :span="12"> |
|
|
|
<div class="span-sty"><span class="icon">*</span>后期是否有平仓付款</div> |
|
|
|
<el-form-item prop="isPay"> |
|
|
|
<el-radio-group class="addinputInfo" v-model="formobj.isPay"> |
|
|
|
<el-radio-group class="addinputInfo" disabled v-model="formobj.isPay"> |
|
|
|
<el-radio label="1">是</el-radio> |
|
|
|
<el-radio label="0">否</el-radio> |
|
|
|
</el-radio-group> |
|
|
@ -80,7 +80,6 @@ |
|
|
|
<el-button size="mini" type="danger" @click="toDelete(scope.$index)">删除</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="costTitleValue" label="平仓款名称" align="center" /> |
|
|
|
<el-table-column label="期数" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input @keyup.native="scope.row.period = getNumber(scope.row.period, 2)" v-model="scope.row.period" clearable placeholder="" /> |
|
|
@ -167,7 +166,6 @@ export default { |
|
|
|
payment_list: [], |
|
|
|
receiveCompany_list: [], |
|
|
|
businessType_list: [], |
|
|
|
liquidationPayment: '', // 平仓款名称 |
|
|
|
formobj: { |
|
|
|
sid: '', // sid |
|
|
|
costTitleKey: '', // 款项名称,数据字典 |
|
|
@ -222,13 +220,12 @@ export default { |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
showAdd(useOrgSid, liquidationPayment) { |
|
|
|
showAdd(useOrgSid) { |
|
|
|
this.viewTitle = '【新增】付款信息' |
|
|
|
this.$nextTick(() => { |
|
|
|
this.$refs['form_obj'].clearValidate() |
|
|
|
}) |
|
|
|
this.init() |
|
|
|
this.liquidationPayment = liquidationPayment |
|
|
|
this.temp.useOrgSid = useOrgSid |
|
|
|
this.selectByUseOrgSid(useOrgSid) |
|
|
|
}, |
|
|
@ -269,8 +266,14 @@ export default { |
|
|
|
const choose = this.payment_list.filter((item) => item.dictValue === value) |
|
|
|
if (choose !== null && choose.length > 0) { |
|
|
|
this.formobj.paymentTypeKey = choose[0].dictKey |
|
|
|
if (value === '银行保证金') { |
|
|
|
this.formobj.isPay = '1' |
|
|
|
} else { |
|
|
|
this.formobj.isPay = '0' |
|
|
|
} |
|
|
|
} else { |
|
|
|
this.formobj.paymentTypeKey = '' |
|
|
|
this.formobj.isPay = '' |
|
|
|
} |
|
|
|
}, |
|
|
|
receiveCompanyChange(value) { |
|
|
@ -311,7 +314,6 @@ export default { |
|
|
|
this.formobj.finPaymentapplyDetailsBelowEveList.push({ |
|
|
|
sid: '', // sid |
|
|
|
costTitleKey: '', // 款项名称,数据字典 |
|
|
|
costTitleValue: this.liquidationPayment, // 款项名称 |
|
|
|
detailSid: '', // 付款申请明细的明细sid |
|
|
|
openDate: '', // 融资付款开通日期 |
|
|
|
period: '', // 期数 |
|
|
|