Commit 76ca0427 authored by 任鸿志's avatar 任鸿志

省异地个账可以输入金额

parent 374ab221
This diff is collapsed.
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
<div style="display: flex"> <div style="display: flex">
<!-- <el-checkbox v-model="gz_name" style="margin-right: 10px">转为个账账单</el-checkbox> --> <!-- <el-checkbox v-model="gz_name" style="margin-right: 10px">转为个账账单</el-checkbox> -->
<!-- <el-checkbox v-model="man_name">转为自费账单</el-checkbox> --> <!-- <el-checkbox v-model="man_name">转为自费账单</el-checkbox> -->
<el-checkbox v-model="is_sy">生育</el-checkbox> <el-checkbox v-model="is_sy">计划生育</el-checkbox>
<!-- <el-checkbox v-model="insurance_payment">智慧医保支付</el-checkbox> --> <!-- <el-checkbox v-model="insurance_payment">智慧医保支付</el-checkbox> -->
</div> </div>
<div style="display: flex" v-if="patientInfo.yblx != '01'"> <div style="display: flex" v-if="patientInfo.yblx != '01'">
...@@ -372,7 +372,7 @@ ...@@ -372,7 +372,7 @@
@input="gjzhifu()" @input="gjzhifu()"
@blur="grzhzfBlur()" @blur="grzhzfBlur()"
type="number" type="number"
:disabled="form.insurance_type == 'LONGDISTANCE' || form.insurance_type == 'OFFSITE'" :disabled="form.insurance_type == 'LONGDISTANCE'"
></el-input> ></el-input>
</div> </div>
</el-form-item> </el-form-item>
...@@ -2463,13 +2463,13 @@ export default { ...@@ -2463,13 +2463,13 @@ export default {
let djf = this.round(this.round(this.round(this.round(this.bxxxinfo.patient_burden - this.bxxxinfo.gjzhzf, 2) - this.bxxxinfo.his_deduct_amount, 2) - this.bxxxinfo.grzhzf, 2) - this.bxxxinfo.personal_pay_syd,2) let djf = this.round(this.round(this.round(this.round(this.bxxxinfo.patient_burden - this.bxxxinfo.gjzhzf, 2) - this.bxxxinfo.his_deduct_amount, 2) - this.bxxxinfo.grzhzf, 2) - this.bxxxinfo.personal_pay_syd,2)
if (this.bxxxinfo.personal_balance >= djf) { if (this.bxxxinfo.personal_balance >= djf) {
this.bxxxinfo.grzhzf = djf this.bxxxinfo.grzhzf = djf
if (this.form.insurance_type == 'OFFSITE' || this.form.insurance_type == 'LONGDISTANCE') { if ( this.form.insurance_type == 'LONGDISTANCE') {
this.bxxxinfo.grzhzf = 0 this.bxxxinfo.grzhzf = 0
} }
} }
if (this.bxxxinfo.personal_balance < djf) { if (this.bxxxinfo.personal_balance < djf) {
this.bxxxinfo.grzhzf = this.bxxxinfo.personal_balance this.bxxxinfo.grzhzf = this.bxxxinfo.personal_balance
if (this.form.insurance_type == 'OFFSITE' || this.form.insurance_type == 'LONGDISTANCE') { if ( this.form.insurance_type == 'LONGDISTANCE') {
this.bxxxinfo.grzhzf = 0 this.bxxxinfo.grzhzf = 0
} }
if (res2.data.family_type != '1') { if (res2.data.family_type != '1') {
......
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