diff --git a/resources/assets/js/components/bills/Index.vue b/resources/assets/js/components/bills/Index.vue index 16339a56a2..fd09b9396d 100644 --- a/resources/assets/js/components/bills/Index.vue +++ b/resources/assets/js/components/bills/Index.vue @@ -121,7 +121,7 @@ formatAmount: Vue.filter('formatAmount'), trans: Vue.filter('trans'), fetchBillList() { - axios.get('api/v1/bills', {params: {start: window.sessionStart, end: window.sessionEnd}}).then((res) => { + axios.get('api/v1/bill', {params: {start: window.sessionStart, end: window.sessionEnd}}).then((res) => { this.list = res.data.data; }); },