|
|
@ -121,6 +121,19 @@ |
|
|
</GuipSwitch> |
|
|
</GuipSwitch> |
|
|
</div> |
|
|
</div> |
|
|
</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> |
|
|
|
|
|
|
|
|
<div class="bidwrap-item bidwrap-item-pd24" v-if="departIsFixed != -1 && sceneType != 1"> |
|
|
<div class="bidwrap-item bidwrap-item-pd24" v-if="departIsFixed != -1 && sceneType != 1"> |
|
|
@ -1144,6 +1157,7 @@ export default { |
|
|
previewFunctions:[], |
|
|
previewFunctions:[], |
|
|
firstVisitAudit:0, |
|
|
firstVisitAudit:0, |
|
|
canCheckInList:[], |
|
|
canCheckInList:[], |
|
|
|
|
|
showProjectPrice:[], |
|
|
pageDescTexts:[ |
|
|
pageDescTexts:[ |
|
|
{ |
|
|
{ |
|
|
location: '出诊医院省市', |
|
|
location: '出诊医院省市', |
|
|
@ -2944,6 +2958,12 @@ export default { |
|
|
this.canCheckInList = [1] |
|
|
this.canCheckInList = [1] |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(response.data.show_project_price) { |
|
|
|
|
|
this.showProjectPrice = [1] |
|
|
|
|
|
}else{ |
|
|
|
|
|
this.showProjectPrice = [] |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
this.getAreaData(this.form.province) |
|
|
this.getAreaData(this.form.province) |
|
|
}).catch(error => { |
|
|
}).catch(error => { |
|
|
console.error(error, 'error') |
|
|
console.error(error, 'error') |
|
|
@ -3371,6 +3391,11 @@ export default { |
|
|
|
|
|
|
|
|
props.can_check_in = 0 |
|
|
props.can_check_in = 0 |
|
|
if(this.canCheckInList.length > 0) props.can_check_in = 1 |
|
|
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.doctor_id && !this.depart_id) { |
|
|
if (this.departType.length <= 0) { |
|
|
if (this.departType.length <= 0) { |
|
|
|