Compare commits

...

2 Commits

3 changed files with 7 additions and 5 deletions

View File

@ -465,3 +465,4 @@ onMounted(() => {
justify-content: space-between; justify-content: space-between;
} }
</style> </style>
@/pages/finance-bill-manage/billCancel

View File

@ -392,12 +392,13 @@ const refresh = () => {
getTableData(); getTableData();
}; };
// menuManagement // menuManagement
const getPersonName = () => { const getPersonName = async () => {
let arr = JSON.parse(localStorage.getItem("ReceiptList")); let arr = JSON.parse(localStorage.getItem("ReceiptList"));
if (arr) { if (arr) {
personName.value = arr.personName; personName.value = arr.personName;
} else { } else {
personList(); await personList();
getTableData();
} }
}; };
// menuManagement // menuManagement
@ -429,8 +430,8 @@ const getTableData = async () => {
}; };
onMounted(async () => { onMounted(async () => {
getPersonName(); await getPersonName();
getTableData(); await getTableData();
}); });
</script> </script>

View File

@ -16,11 +16,11 @@ export const useReceiptList = defineStore("ReceiptList", {
async getPersonNameList() { async getPersonNameList() {
const { data } = await reqPersonName(); const { data } = await reqPersonName();
this.personName = data; this.personName = data;
console.log(this.personName);
return this.personName; return this.personName;
}, },
async getReceiptList(obj) { async getReceiptList(obj) {
console.log("222");
const { data } = await reqReceiptList(obj); const { data } = await reqReceiptList(obj);
this.receiptList = data; this.receiptList = data;
return this.receiptList; return this.receiptList;