|
@@ -9,20 +9,11 @@
|
|
|
<template>
|
|
|
<section class="app-main">
|
|
|
<div class="app-main-content">
|
|
|
- <transition
|
|
|
- name="fade-transform"
|
|
|
- mode="out-in"
|
|
|
- >
|
|
|
- <keep-alive
|
|
|
- v-if="$route.meta && $route.meta.keepAlive"
|
|
|
- :max="6"
|
|
|
- >
|
|
|
+ <transition name="fade-transform" mode="out-in">
|
|
|
+ <keep-alive v-if="$route.meta && $route.meta.keepAlive" :max="6">
|
|
|
<router-view :key="key" />
|
|
|
</keep-alive>
|
|
|
- <router-view
|
|
|
- v-else
|
|
|
- :key="key"
|
|
|
- />
|
|
|
+ <router-view v-else :key="key" />
|
|
|
</transition>
|
|
|
</div>
|
|
|
</section>
|
|
@@ -32,7 +23,7 @@
|
|
|
export default {
|
|
|
name: 'AppMain',
|
|
|
computed: {
|
|
|
- key() {
|
|
|
+ key () {
|
|
|
return Object.keys(this.$route.query).reduce((string, currentKey, index) => {
|
|
|
if (currentKey !== 'fastFilter') {
|
|
|
string += `${index ? '&' : '?'}${currentKey}=${this.$route.query[currentKey]}`
|
|
@@ -51,7 +42,7 @@ export default {
|
|
|
width: 100%;
|
|
|
position: relative;
|
|
|
overflow: hidden;
|
|
|
- padding-left: 150px;
|
|
|
+ padding-left: 240px;
|
|
|
padding-top: 80px;
|
|
|
/* margin-top: 112px; */
|
|
|
}
|