diff --git a/src/components/addHealthConfigModal.vue b/src/components/addHealthConfigModal.vue index e161cf3..5769085 100644 --- a/src/components/addHealthConfigModal.vue +++ b/src/components/addHealthConfigModal.vue @@ -213,12 +213,15 @@ const configDetail=async()=>{ doctor_id:modalForm.doctor_id }); if(code==200){ - if(data.inquiry_price){ + if(!id.value){ + if(data.inquiry_price){ tuwenPrice.value=data.inquiry_price; emits('setPrice',data.inquiry_price*0.6*5+packagePrice.value) }else{ proxy.$message.warning('该医生需要开启图文问诊,才能开通此服务'); } + } + // if(data.multi_point_status!=1){ // multi_point_status=data.multi_point_status; // proxy.$message.warning('本服务需开处方,该医生需要做多点执业认证'); diff --git a/src/views/inquiry/health/index.vue b/src/views/inquiry/health/index.vue index b1c61d3..b950791 100644 --- a/src/views/inquiry/health/index.vue +++ b/src/views/inquiry/health/index.vue @@ -120,6 +120,7 @@ // Table Columns const columns = [ { title: '编号', dataIndex: 'doctor_id', slotName: 'doctor_id', width: '90' }, + { title: '健康包id', dataIndex: 'package_id',width:190 }, { title: '总服务次数', dataIndex: 'service_count',width:180 }, { title: '每月次数', dataIndex: 'monthly_frequency',slotName:'monthly_frequency', width:130 }, { title: '服务有效天数', dataIndex: 'effective_days', width: 150 }, diff --git a/src/views/inquiry/healthconfig/index.vue b/src/views/inquiry/healthconfig/index.vue index 54caed7..b1f2b52 100644 --- a/src/views/inquiry/healthconfig/index.vue +++ b/src/views/inquiry/healthconfig/index.vue @@ -153,7 +153,7 @@ // Table Columns const columns = [ { title: '编号', dataIndex: 'doctor_id', slotName: 'doctor_id', width: '90' }, - // { title: '服务名称', dataIndex: 'inquiry_mode',slotName:'inquiry_mode',width:180 }, + { title: '健康包id', dataIndex: 'package_id',slotName:'package_id',width:180 }, { title: '医生姓名', dataIndex: 'doctor_name',slotName:'doctor_name',width:180 }, { title: '医生科室', dataIndex: 'department_custom_name',slotName:'department_custom_name',width:180 }, { title: '职称', dataIndex: 'doctor_title',slotName:'doctor_title',width:180 },