|
@@ -85,9 +85,10 @@ export default {
|
|
|
title: '停车发票',
|
|
|
});
|
|
|
}, 300);
|
|
|
+ const invoiceindex = uni.getStorageSync('invoiceindex') || 1
|
|
|
this.$store.dispatch('clearUnlicensed');
|
|
|
if (JSON.stringify(this.member) !== '{}') {
|
|
|
- this.invoice(1);
|
|
|
+ this.invoice(invoiceindex);
|
|
|
} else {
|
|
|
wxToLoginCallback('parkingReceipt', () => {
|
|
|
this.$router.back();
|
|
@@ -118,6 +119,7 @@ export default {
|
|
|
console.log('eeeeeeee:::', e, index)
|
|
|
},
|
|
|
invoice(e) {
|
|
|
+ uni.setStorageSync('invoiceindex', e);
|
|
|
this.tabIndex = e;
|
|
|
this.current = -1;
|
|
|
this.ids = [];
|