|
@@ -88,6 +88,7 @@ export default {
|
|
globalData: app.globalData,
|
|
globalData: app.globalData,
|
|
current: -1,
|
|
current: -1,
|
|
ids: '',
|
|
ids: '',
|
|
|
|
+ invoiceId: '',
|
|
list: [],
|
|
list: [],
|
|
preUrl: '',
|
|
preUrl: '',
|
|
};
|
|
};
|
|
@@ -95,6 +96,7 @@ export default {
|
|
created() {
|
|
created() {
|
|
const options = this.$route.query;
|
|
const options = this.$route.query;
|
|
if (options.ids) this.ids = options.ids;
|
|
if (options.ids) this.ids = options.ids;
|
|
|
|
+ if (options.invoiceId) this.invoiceId = options.invoiceId;
|
|
// 埋点本地化
|
|
// 埋点本地化
|
|
this.preUrl = uni.getStorageSync('previousUrl');
|
|
this.preUrl = uni.getStorageSync('previousUrl');
|
|
uni.setStorageSync(
|
|
uni.setStorageSync(
|
|
@@ -210,6 +212,8 @@ export default {
|
|
path:
|
|
path:
|
|
'parkingApplication?ids=' +
|
|
'parkingApplication?ids=' +
|
|
this.ids +
|
|
this.ids +
|
|
|
|
+ "&invoiceId=" +
|
|
|
|
+ this.invoiceId +
|
|
'&header=' +
|
|
'&header=' +
|
|
JSON.stringify(item),
|
|
JSON.stringify(item),
|
|
});
|
|
});
|