Merge branch 'main' of ssh://git.jizhiweb.cn:2222/clinic-v2/web

This commit is contained in:
ChenQiuYu 2025-05-07 16:43:54 +08:00
commit fadd3101b0
1 changed files with 3 additions and 1 deletions

View File

@ -56,10 +56,12 @@ const printReceipt = ref(false);
const payType = ref(null); const payType = ref(null);
const retailOrder = ref<any>(null); const retailOrder = ref<any>(null);
const init = (code: any) => { const init = (code: any) => {
debugger
post ('charge/getByCode',{code:code}).then((res:any)=>{ post ('charge/getByCode',{code:code}).then((res:any)=>{
retailOrder.value = res; retailOrder.value = res;
})
show.value = true; show.value = true;
})
} }
defineExpose({init}) defineExpose({init})
const changePriceType = (type: any) => { const changePriceType = (type: any) => {