fix
This commit is contained in:
parent
8f67e42fdc
commit
0333edbdeb
|
|
@ -2961,11 +2961,16 @@ export default {
|
|||
this.yzwfSpForm.handledate = this.$moment().format('YYYY-MM-DD HH:mm:ss')
|
||||
this.xfShForm.handledate = this.$moment().format('YYYY-MM-DD HH:mm:ss')
|
||||
this.xfSpForm.handledate = this.$moment().format('YYYY-MM-DD HH:mm:ss')
|
||||
if (this.$route.query.activeNamet && sessionStorage.getItem('activeNamet') !== this.$route.query.activeNamet) {
|
||||
sessionStorage.setItem('activeNamet', this.$route.query.activeNamet)
|
||||
this.activeName = this.$route.query.activeName
|
||||
} else {
|
||||
if (!sessionStorage.getItem('activeName')) {
|
||||
this.activeName = this.$route.query.activeName ? this.$route.query.activeName : 'all'
|
||||
} else {
|
||||
this.activeName = sessionStorage.getItem('activeName')
|
||||
}
|
||||
}
|
||||
if (this.$route.query.bustype !== undefined && this.$route.query.bustype !== 'undefined') {
|
||||
const list = []
|
||||
list.push(this.$route.query.bustype)
|
||||
|
|
|
|||
Loading…
Reference in New Issue