dev
This commit is contained in:
parent
fa22f2934b
commit
3e84d52685
|
|
@ -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) => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue