|
|
@@ -443,6 +443,18 @@ export default {
|
|
|
if(this.$route.query.status){
|
|
|
this.tabIndex = this.$route.query.status
|
|
|
}
|
|
|
+ if(this.$route.query.customName){
|
|
|
+ this.name = this.$route.query.customName
|
|
|
+ }
|
|
|
+ if(this.$route.query.searchTime){
|
|
|
+ this.searchTime = this.$route.query.searchTime
|
|
|
+ }
|
|
|
+ if(this.$route.query.startTime){
|
|
|
+ this.startTime = this.$route.query.startTime
|
|
|
+ }
|
|
|
+ if(this.$route.query.endTime){
|
|
|
+ this.endTime = this.$route.query.endTime
|
|
|
+ }
|
|
|
ctx.service(this.$service.order)
|
|
|
.set('table', {
|
|
|
columns: [
|
|
|
@@ -604,7 +616,7 @@ export default {
|
|
|
this.tabsData[4].val = asset.shop.finishOrder||0;
|
|
|
})
|
|
|
.done();
|
|
|
- app.refresh({ status: this.tabIndex,book:this.book,clearSign:this.clearSign })
|
|
|
+ app.refresh({ status: this.tabIndex,book:this.book,clearSign:this.clearSign,searchTime:this.searchTime,startTime:this.startTime,endTime:this.endTime,name:this.name })
|
|
|
},
|
|
|
onSongSuccess() {
|
|
|
|