This commit is contained in:
2024-03-14 14:12:48 -04:00
parent b989344aa4
commit 06dcc6ab93
5 changed files with 7 additions and 9 deletions

View File

@@ -301,7 +301,6 @@ export default defineComponent({
})
.then((response: any) => {
this.customer = response.data;
console.log(this.customer)
})
.catch(() => {

View File

@@ -43,8 +43,6 @@ const deliveryRoutes = [
name: 'finalizeTicket',
component: finalizeTicket,
},
{
path: '/delivery/cancelled',
name: 'deliveryCancelled',

View File

@@ -126,7 +126,7 @@ export default defineComponent({
})
},
get_oil_orders() {
let path = import.meta.env.VITE_BASE_URL + '/deliverydata/pending';
let path = import.meta.env.VITE_BASE_URL + '/deliverystatus/pending';
axios({
method: 'get',
url: path,