Compare commits

...

2 Commits

3 changed files with 7 additions and 5 deletions

View File

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

View File

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

View File

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