Browse Source

是否支持显示项目价格·

pull/20/head
longchao 1 week ago
parent
commit
83306ef9b3
  1. 25
      src/views/HosInformation.vue

25
src/views/HosInformation.vue

@ -121,6 +121,19 @@
</GuipSwitch>
</div>
</div>
<div class="biditemMast flex-between biditemMast-nopd mt20">
<div class="flex">
<p>子功能</p>
<el-checkbox-group slot="formDom" v-model="showProjectPrice"
class="checkboxGroup checkboxGroup2">
<div class="flex">
<el-checkbox :label="1">是否显示项目价格</el-checkbox>
</div>
</el-checkbox-group>
</div>
</div>
</div>
<div class="bidwrap-item bidwrap-item-pd24" v-if="departIsFixed != -1 && sceneType != 1">
@ -1144,6 +1157,7 @@ export default {
previewFunctions:[],
firstVisitAudit:0,
canCheckInList:[],
showProjectPrice:[],
pageDescTexts:[
{
location: '出诊医院省市',
@ -2944,6 +2958,12 @@ export default {
this.canCheckInList = [1]
}
if(response.data.show_project_price) {
this.showProjectPrice = [1]
}else{
this.showProjectPrice = []
}
this.getAreaData(this.form.province)
}).catch(error => {
console.error(error, 'error')
@ -3371,6 +3391,11 @@ export default {
props.can_check_in = 0
if(this.canCheckInList.length > 0) props.can_check_in = 1
if(this.showProjectPrice.length > 0) {
props.show_project_price = 1
}else{
props.show_project_price = 0
}
if (this.doctor_id && !this.depart_id) {
if (this.departType.length <= 0) {

Loading…
Cancel
Save