From 44cd2eba099e347a9f647fbb878c8d72af3df103 Mon Sep 17 00:00:00 2001 From: longchao <588888888@qq.com> Date: Wed, 21 Jan 2026 18:19:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=98=AF=E5=90=A6=E5=8F=AF=E5=87=8F=E5=85=8D?= =?UTF-8?q?=E9=87=91=E9=A2=9D=E5=BC=80=E5=85=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/HosInformation.vue | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/views/HosInformation.vue b/src/views/HosInformation.vue index 86719ef..e8cd69c 100644 --- a/src/views/HosInformation.vue +++ b/src/views/HosInformation.vue @@ -131,6 +131,15 @@ 是否显示项目价格 + +
+ + +
+ 医生可在开处方时给患者减免金额 +
+
@@ -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";