Browse Source

收项目费修改

projectFee-1118
zq 1 week ago
parent
commit
85bfdf5b39
  1. 96
      src/views/HosInformation.vue

96
src/views/HosInformation.vue

@ -306,6 +306,27 @@
</div> </div>
</el-form> </el-form>
</div> </div>
<div class="siteMessage flex-common mt12" id="siteMessage10">
<el-form>
<div class="flex gap12 mb24">
<span class="littleTitle">收项目费</span>
<GuipSwitch :value="hasProjectFee" ref="hasProjectFeeRef" :active-value="1" :inactive-value="0" @change="onProjectFeeChange"></GuipSwitch>
<span class="desc">{{ hasProjectFee == 1 ? '开启' : '关闭' }}医院可以通过小程序收取项目费</span>
</div>
<div class="projectWrap">
<div class=" biditemMast mb12 flex-between">
<div class="bidwrap-item-top flex">
<div class="top-right column">
<p>赊欠项目费</p>
<p class="desc">开启后财务可给患者赊欠项目费</p>
</div>
</div>
<GuipSwitch :value="is_on_credit" float="left" :active-value="1" :inactive-value="0"
activeText="开启" inactiveText="关闭" @change="isOnCreditRefChange"></GuipSwitch>
</div>
</div>
</el-form>
</div>
<div class="siteMessage flex-common mt12" id="siteMessage8"> <div class="siteMessage flex-common mt12" id="siteMessage8">
<div class="littleTitle mb12">出诊设置</div> <div class="littleTitle mb12">出诊设置</div>
<el-form :model="houseCallSettingForm"> <el-form :model="houseCallSettingForm">
@ -447,20 +468,7 @@
</el-calendar> </el-calendar>
</div> </div>
</div> </div>
<div class="siteMessage flex-common mt12" id="siteMessage10">
<el-form>
<div class="flex gap12 mb24">
<span class="littleTitle">收项目费</span>
<GuipSwitch :value="hasProjectFee" ref="hasProjectFeeRef" :active-value="1" :inactive-value="0" @change="onProjectFeeChange"></GuipSwitch>
<span class="desc">{{ hasProjectFee == 1 ? '开启' : '关闭' }}医院可以通过小程序收取项目费</span>
</div>
<p class="mb12" style="text-align: left;color: #1E2226;">赊欠功能</p>
<div class="flex">
<GuipSwitch :value="is_on_credit" ref="isOnCreditRef" :active-value="1" :inactive-value="0" @change="isOnCreditRefChange"></GuipSwitch>
<span class="desc">{{ is_on_credit == 1 ? '开启' : '关闭' }}开启后财务可给患者赊欠项目</span>
</div>
</el-form>
</div>
<!-- <p class="pageTitle bold">项目管理</p> --> <!-- <p class="pageTitle bold">项目管理</p> -->
<div class="siteMessage flex-common mt12" id="siteMessage4"> <div class="siteMessage flex-common mt12" id="siteMessage4">
<el-form> <el-form>
@ -2746,6 +2754,7 @@ export default {
'afternoon_worktime': response.data.afternoon_worktime ? response.data.afternoon_worktime.split('-') : '' 'afternoon_worktime': response.data.afternoon_worktime ? response.data.afternoon_worktime.split('-') : ''
} }
this.houseCallSettingForm.worktimes = JSON.parse(JSON.stringify(this.form.worktimes)); this.houseCallSettingForm.worktimes = JSON.parse(JSON.stringify(this.form.worktimes));
// type,is_fixed,pay_switch,has_visit_fee,has_project_fee,is_on_credit,visit_price,
const {display_work_days,worktime_no_fixed,is_allow_coincide} = response.data const {display_work_days,worktime_no_fixed,is_allow_coincide} = response.data
if(display_work_days > 0){ if(display_work_days > 0){
this.houseCallSettingForm.planDays = display_work_days; this.houseCallSettingForm.planDays = display_work_days;
@ -3663,42 +3672,49 @@ export default {
box-sizing: border-box; box-sizing: border-box;
background: #FAFAFA; background: #FAFAFA;
.biditemMast { }
background: #fff; .biditemMast {
padding: 24px 16px; background: #fff;
border-radius: 8px; padding: 24px 16px;
background: #FFFFFF; border-radius: 8px;
align-items: flex-start; background: #FFFFFF;
.bidwrap-item-top { .bidwrap-item-top {
.top-right { height: 100%;
p { .top-right {
margin-top: 10px; height: 100%;
color: #1E2226; p {
} margin-top: 10px;
color: #1E2226;
}
.desc { .desc {
color: #6B7280; color: #6B7280;
} }
a { a {
text-decoration: none; text-decoration: none;
color: #006AFF; color: #006AFF;
img { img {
margin-right: 10px; margin-right: 10px;
}
} }
} }
} }
}
.bidwrap-item-bot { .bidwrap-item-bot {
padding-left: 54px; padding-left: 54px;
justify-content: flex-end; justify-content: flex-end;
}
} }
} }
.projectWrap{
padding: 24px 14px;
box-sizing: border-box;
background: #FAFAFA;
height: 144px;
box-sizing: border-box;
}
.el-autocomplete-noloading { .el-autocomplete-noloading {
display: none !important; display: none !important;
} }

Loading…
Cancel
Save