This commit is contained in:
linfso 2024-09-04 07:48:16 +08:00
parent fdc8fb4a85
commit 264043e7cc

View File

@ -163,7 +163,9 @@ export default {
}
if(this.latestBillList&&this.latestBillList.length>0){
this.latestBillList= this.latestBillList.reverse()
this.latestBillList= this.latestBillList.reverse();
let cutList=[...this.latestBillList];
this.latestBillList=cutList.slice(0,5);
storage["latestBillList"] = this.latestBillList
window.localStorage.setItem('queryDataStorage', JSON.stringify(storage))
}