芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/resources/scripts/customer/stores/invoice.js
import { handleError } from '@/scripts/customer/helpers/error-handling' const { defineStore } = window.pinia import axios from 'axios' export const useInvoiceStore = defineStore({ id: 'customerInvoiceStore', state: () => ({ totalInvoices: 0, invoices: [], selectedViewInvoice: [], }), actions: { fetchInvoices(params, slug) { return new Promise((resolve, reject) => { axios .get(`/api/v1/${slug}/customer/invoices`, { params }) .then((response) => { this.invoices = response.data.data this.totalInvoices = response.data.meta.invoiceTotalCount resolve(response) }) .catch((err) => { handleError(err) reject(err) }) }) }, fetchViewInvoice(params, slug) { return new Promise((resolve, reject) => { axios .get(`/api/v1/${slug}/customer/invoices/${params.id}`, { params, }) .then((response) => { this.selectedViewInvoice = response.data.data resolve(response) }) .catch((err) => { handleError(err) reject(err) }) }) }, searchInvoice(params, slug) { return new Promise((resolve, reject) => { axios .get(`/api/v1/${slug}/customer/invoices`, { params }) .then((response) => { this.invoices = response.data resolve(response) }) .catch((err) => { handleError(err) reject(err) }) }) }, }, })