fix: total not update on change tab

This commit is contained in:
Methapon Metanipat 2024-10-25 16:22:58 +07:00
parent 65e0bd8d69
commit 3648a6f4e8

View file

@ -277,6 +277,7 @@ async function fetchQuotationList() {
if (ret) {
quotationData.value = ret.result;
quotationPageMax.value = Math.ceil(ret.total / quotationPageSize.value);
pageState.total = ret.total;
}
}