refactor: edit value default
This commit is contained in:
parent
f6ccbc530a
commit
125ae9e125
1 changed files with 6 additions and 6 deletions
|
|
@ -22,12 +22,12 @@ export const useQuotationStore = defineStore('quotation-store', () => {
|
||||||
const pageMax = ref<number>(1);
|
const pageMax = ref<number>(1);
|
||||||
const pageSize = ref<number>(30);
|
const pageSize = ref<number>(30);
|
||||||
const stats = ref<QuotationStats>({
|
const stats = ref<QuotationStats>({
|
||||||
full: 0,
|
issued: 0,
|
||||||
split: 0,
|
accepted: 0,
|
||||||
splitCustom: 0,
|
expired: 0,
|
||||||
billFull: 0,
|
paymentInProcess: 0,
|
||||||
billSplit: 0,
|
paymentSuccess: 0,
|
||||||
billSplitCustom: 0,
|
processComplete: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
async function getQuotationStats() {
|
async function getQuotationStats() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue