| | |
| | | <div id="app"> |
| | | <router-view /> |
| | | <theme-picker /> |
| | | <Assistant /> |
| | | <Assistant v-if="routertf" /> |
| | | </div> |
| | | </template> |
| | | |
| | |
| | | components: { |
| | | ThemePicker, |
| | | Assistant: () => import("./components/Assistant"), //异步组件加载方式 |
| | | }, |
| | | data() { |
| | | return { |
| | | routers: this.$route.path.split("/").pop(), |
| | | routertf: true, |
| | | }; |
| | | }, |
| | | created() { |
| | | this.routertf = this.$route.param5; |
| | | console.log(this.routertf); |
| | | if ( |
| | | this.routers == "outsideChainxj" || |
| | | this.routers == "outsideChain" || |
| | | this.routers == "outsideChainwt" |
| | | ) { |
| | | this.routertf = false; |
| | | } |
| | | }, |
| | | metaInfo() { |
| | | return { |
| | |
| | | </script> |
| | | <style scoped> |
| | | #app { |
| | | overflow: scroll; |
| | | overflow-y: scroll; |
| | | height: 100vh; |
| | | background: #f8fafd; |
| | | /* font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, "宋体"; */ |