更新bug 药品,问诊订单
This commit is contained in:
parent
1e98beb2ee
commit
162920899c
@ -50,7 +50,8 @@ const {okVisible,title,id,api} = toRefs(props);
|
||||
|
||||
// Akiraka 20230210 关闭弹窗
|
||||
const handleClose = () => {
|
||||
emits('closeChange', false);
|
||||
emits('closeChange',false);
|
||||
// alert(flag)
|
||||
}
|
||||
// Akiraka 20230210 删除数据校验
|
||||
const rules = reactive({
|
||||
@ -68,7 +69,7 @@ const handleConfirm = () => {
|
||||
}else{
|
||||
proxy.$notification.error(response.message);
|
||||
}
|
||||
handleClose();
|
||||
emits('closeChange',true);
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
@ -747,11 +747,14 @@ const toggleExpand=()=>{
|
||||
}
|
||||
};
|
||||
//关闭确认框
|
||||
const closeChange=()=>{
|
||||
const closeChange=(data)=>{
|
||||
cur_product_id.value="";
|
||||
okVisible.value=false;
|
||||
if(data){
|
||||
modalVisible.value=false;
|
||||
getProductInfo(pager);
|
||||
getProductInfo({ ...pager, ...queryForm });
|
||||
}
|
||||
|
||||
}
|
||||
// 重置搜索
|
||||
const handleResetQuery = () => {
|
||||
|
||||
@ -316,7 +316,7 @@
|
||||
|
||||
<!-- 医生详情弹框 -->
|
||||
<doctorModal :doctorVisible="doctorVisible" :doctor_id="doctor_id" @doctorVisibleChange="() => {doctorVisible = false;doctor_id='';}"></doctorModal>
|
||||
<confirmModal :okVisible="okVisible" :api="cancelInquiry" :title="'确定取消此订单吗?'" :dealType="'order_inquiry_id'" :id="cur_inruiry_id" @closeChange="closeChange"></confirmModal>
|
||||
<confirmModal :okVisible="okVisible" :api="cancelInquiry" :title="'确定取消此订单吗?'" :dealType="'order_inquiry_id'" :id="cur_inruiry_id" @closeChange="handelCloseChange"></confirmModal>
|
||||
</div>
|
||||
|
||||
|
||||
@ -532,11 +532,14 @@ const openPatient=()=>{
|
||||
alert('开发中')
|
||||
}
|
||||
//关闭确认框
|
||||
const closeChange=()=>{
|
||||
const handelCloseChange=(data)=>{
|
||||
cur_inruiry_id.value="";
|
||||
okVisible.value=false;
|
||||
console.log(data)
|
||||
if(data){
|
||||
modalVisible.value=false;
|
||||
getOrderInfo(pager);
|
||||
getOrderInfo({ ...pager, ...queryForm });
|
||||
}
|
||||
}
|
||||
// 重置搜索
|
||||
const handleResetQuery = () => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user