|
|
|
@ -131,6 +131,15 @@ |
|
|
|
<el-checkbox :label="1">是否显示项目价格</el-checkbox> |
|
|
|
</div> |
|
|
|
</el-checkbox-group> |
|
|
|
|
|
|
|
<div style="margin-right: 30px;"></div> |
|
|
|
|
|
|
|
<el-checkbox-group slot="formDom" v-model="canReduceProjectFee" |
|
|
|
class="checkboxGroup checkboxGroup2"> |
|
|
|
<div class="flex"> |
|
|
|
<el-checkbox :label="1">医生可在开处方时给患者减免金额</el-checkbox> |
|
|
|
</div> |
|
|
|
</el-checkbox-group> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@ -1158,6 +1167,7 @@ export default { |
|
|
|
firstVisitAudit:0, |
|
|
|
canCheckInList:[], |
|
|
|
showProjectPrice:[], |
|
|
|
canReduceProjectFee:[], |
|
|
|
pageDescTexts:[ |
|
|
|
{ |
|
|
|
location: '出诊医院省市', |
|
|
|
@ -2969,6 +2979,12 @@ export default { |
|
|
|
this.showProjectPrice = [] |
|
|
|
} |
|
|
|
|
|
|
|
if(response.data.can_reduce_project_fee) { |
|
|
|
this.canReduceProjectFee = [1] |
|
|
|
}else{ |
|
|
|
this.canReduceProjectFee = [] |
|
|
|
} |
|
|
|
|
|
|
|
this.getAreaData(this.form.province) |
|
|
|
}).catch(error => { |
|
|
|
console.error(error, 'error') |
|
|
|
@ -3403,6 +3419,12 @@ export default { |
|
|
|
props.show_project_price = 0 |
|
|
|
} |
|
|
|
|
|
|
|
if(this.canReduceProjectFee.length > 0) { |
|
|
|
props.can_reduce_project_fee = 1 |
|
|
|
}else{ |
|
|
|
props.can_reduce_project_fee = 0 |
|
|
|
} |
|
|
|
|
|
|
|
if (this.doctor_id && !this.depart_id) { |
|
|
|
if (this.departType.length <= 0) { |
|
|
|
this.$Message.info('请选择使用功能') |
|
|
|
@ -3429,6 +3451,12 @@ export default { |
|
|
|
props.show_project_price = 0 |
|
|
|
} |
|
|
|
|
|
|
|
if(this.canReduceProjectFee.length > 0) { |
|
|
|
props.can_reduce_project_fee = 1 |
|
|
|
}else{ |
|
|
|
props.can_reduce_project_fee = 0 |
|
|
|
} |
|
|
|
|
|
|
|
props.type = this.departType[0] |
|
|
|
} |
|
|
|
rqurl = "/api/admin/set_hospital_depart"; |
|
|
|
|