修改医生列表
This commit is contained in:
parent
45da0d1699
commit
203baeb792
@ -74,6 +74,7 @@
|
||||
<a-form-item field="" label="问诊日期:" >
|
||||
<el-date-picker
|
||||
value-format="YYYY-MM-DD"
|
||||
:disabled-date="disabledDate"
|
||||
:style="{ width: '320px' }"
|
||||
v-model="inquiry_date"
|
||||
type="dates"
|
||||
@ -247,7 +248,10 @@ const modalForm=reactive({
|
||||
inquiry_price:null,
|
||||
doctor_inquiry_time:[],
|
||||
is_enable:1
|
||||
})
|
||||
});
|
||||
const disabledDate=(time)=>{
|
||||
return time.getTime() < Date.now();
|
||||
}
|
||||
const locale=ref('');
|
||||
const toggleType=ref(true);
|
||||
const slect_all_date=ref([]);
|
||||
@ -300,6 +304,7 @@ watch(()=>props.inquiry_config_id,(newVal,oldValval)=>{
|
||||
//handleDoctorList();
|
||||
title.value='添加医生问诊配置';
|
||||
toggleType.value=true;
|
||||
modalForm.inquiry_price=null
|
||||
}
|
||||
},{immediate:true})
|
||||
|
||||
@ -313,9 +318,7 @@ watch(()=>props.inquiry_config_id,(newVal,oldValval)=>{
|
||||
|
||||
const changeDoctor=(value)=>{
|
||||
let cur=doctorData.value.filter((item)=> item.doctor_id==value);
|
||||
|
||||
if(cur && cur.length==1){
|
||||
alert(cur[0].is_platform_deep_cooperation)
|
||||
is_platform_deep_cooperation.value=cur[0].is_platform_deep_cooperation
|
||||
}else{
|
||||
is_platform_deep_cooperation.value=0
|
||||
|
||||
@ -33,6 +33,7 @@
|
||||
<a-option :value="2">快速问诊</a-option>
|
||||
<a-option :value="3">公益问诊</a-option>
|
||||
<a-option :value="4">问诊购药</a-option>
|
||||
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
@ -368,11 +368,11 @@
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider />
|
||||
<div class="titlebox">
|
||||
<div class="titlebox" v-if="modalForm.doctor_bank_card">
|
||||
<div class="bar"></div>
|
||||
<div class="name">银行卡信息</div>
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-top: 35px;">
|
||||
<a-row :gutter="24" style="margin-top: 35px;" v-if="modalForm.doctor_bank_card">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="doctor_bank_card.province_id" label="开户银行所在地:">
|
||||
<a-space size="large" style="margin-right: 12px;">
|
||||
@ -409,15 +409,15 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row :gutter="24">
|
||||
<a-row :gutter="24" v-if="modalForm.doctor_bank_card">
|
||||
<a-col :span="12">
|
||||
<a-form-item field="bank_card_code" label="银行卡号:">
|
||||
<a-input v-model="modalForm.bank_card_code" placeholder="请输入银行卡号" />
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider />
|
||||
<div class="titlebox">
|
||||
<a-divider v-if="modalForm.doctor_bank_card"/>
|
||||
<div class="titlebox" v-if="(modalForm.user_doctor_info.license_cert && modalForm.user_doctor_info.license_cert.length>0) || modalSatus!='detail'">
|
||||
<div class="bar"></div>
|
||||
<div class="name">医师证件</div>
|
||||
</div>
|
||||
@ -557,8 +557,25 @@
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-divider v-show="modalSatus!='detail'" />
|
||||
<a-divider v-if="(modalForm.user_doctor_info.license_cert && modalForm.user_doctor_info.license_cert.length>0) || modalSatus!='detail'"/>
|
||||
<div class="titlebox">
|
||||
<div class="bar"></div>
|
||||
<div class="name">CA证书配置</div>
|
||||
</div>
|
||||
<a-row :gutter="24" style="margin-top: 35px;" >
|
||||
<a-col :span="24">
|
||||
<a-form-item field="" label="" no-style>
|
||||
<div>证书有效期:2023.02.01-2023.08.01</div>
|
||||
<a-space style="margin-top: 15px;">
|
||||
<a-button type="primary" status="success">更新</a-button>
|
||||
<a-button type="primary" status="danger">注销</a-button>
|
||||
<a-button type="primary" >重新申请</a-button>
|
||||
</a-space>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<a-divider v-show="modalSatus!='detail'" />
|
||||
<div class="titlebox" v-if="modalSatus!='detail'">
|
||||
<div class="bar"></div>
|
||||
<div class="name">操作</div>
|
||||
|
||||
@ -9,6 +9,7 @@
|
||||
<a-option :value="2">快速问诊</a-option>
|
||||
<a-option :value="3">公益问诊</a-option>
|
||||
<a-option :value="4">问诊购药</a-option>
|
||||
<a-option :value="5">糖组检测</a-option>
|
||||
</a-select>
|
||||
|
||||
</a-form-item>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user