|
|
|
|
@ -75,7 +75,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content xy-table-item-price">
|
|
|
|
|
<el-input clearable placeholder="请填写付款金额" v-model="paymentRegistrationForm.applyMoney"
|
|
|
|
|
style="width: 150px;" />
|
|
|
|
|
style="width: 150px;" @input="checkIsEnd"/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
@ -282,6 +282,10 @@
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
checkIsEnd (e) {
|
|
|
|
|
this.paymentRegistrationForm.isLast = (Number(this.totalMoney()) + Number(e)) >= (this.contract.money * 0.95);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async getPlanTypes() {
|
|
|
|
|
const res = await getparameter({
|
|
|
|
|
number: 'money_way'
|
|
|
|
|
@ -344,7 +348,9 @@
|
|
|
|
|
this.form.audit_money = this.contract.audit_money;
|
|
|
|
|
|
|
|
|
|
const res = await getFundLog({
|
|
|
|
|
contract_id: this.contract.id
|
|
|
|
|
contract_id: this.contract.id,
|
|
|
|
|
page: 1,
|
|
|
|
|
page_size: 999
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.payment = res.data
|
|
|
|
|
|