|
@@ -4,15 +4,14 @@
|
|
|
class="el-icon-d-arrow-left fl"
|
|
|
:class="{ cor: isShow }"
|
|
|
@click="back_arrow"
|
|
|
- ></i>
|
|
|
+ />
|
|
|
<el-breadcrumb class="app-breadcrumb" separator="/">
|
|
|
<transition-group name="breadcrumb">
|
|
|
<el-breadcrumb-item v-for="(item, index) in levelList" :key="item.path">
|
|
|
<span
|
|
|
v-if="item.redirect === 'noRedirect' || index > 0"
|
|
|
class="no-redirect"
|
|
|
- >{{ item.meta.title }}</span
|
|
|
- >
|
|
|
+ >{{ item.meta.title }}</span>
|
|
|
<a v-else @click.prevent="handleLink(item)">{{ item.meta.title }}</a>
|
|
|
</el-breadcrumb-item>
|
|
|
</transition-group>
|
|
@@ -21,97 +20,97 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import pathToRegexp from "path-to-regexp";
|
|
|
+import pathToRegexp from 'path-to-regexp'
|
|
|
|
|
|
export default {
|
|
|
- name: "Breadcrumb",
|
|
|
+ name: 'Breadcrumb',
|
|
|
data() {
|
|
|
return {
|
|
|
levelList: null,
|
|
|
isShow: false,
|
|
|
- backOtions: "",
|
|
|
- backUrl: "",
|
|
|
- };
|
|
|
+ backOtions: '',
|
|
|
+ backUrl: ''
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
$route(route) {
|
|
|
// if you go to the redirect page, do not update the breadcrumbs
|
|
|
- if (route.path.startsWith("/redirect/")) {
|
|
|
- this.isShow = false;
|
|
|
- return;
|
|
|
+ if (route.path.startsWith('/redirect/')) {
|
|
|
+ this.isShow = false
|
|
|
+ return
|
|
|
}
|
|
|
- this.getBreadcrumb();
|
|
|
- },
|
|
|
+ this.getBreadcrumb()
|
|
|
+ }
|
|
|
},
|
|
|
created() {
|
|
|
- this.getBreadcrumb();
|
|
|
+ this.getBreadcrumb()
|
|
|
},
|
|
|
methods: {
|
|
|
getBreadcrumb() {
|
|
|
// only show routes with meta.title
|
|
|
let matched = this.$route.matched.filter(
|
|
|
(item) => item.meta && item.meta.title
|
|
|
- );
|
|
|
- const first = matched[0];
|
|
|
+ )
|
|
|
+ const first = matched[0]
|
|
|
|
|
|
if (!this.isDashboard(first)) {
|
|
|
matched = [
|
|
|
- { path: "/welcome/dashboard", meta: { title: "首页" } },
|
|
|
- ].concat(matched);
|
|
|
+ { path: '/welcome/dashboard', meta: { title: '首页' }}
|
|
|
+ ].concat(matched)
|
|
|
}
|
|
|
|
|
|
this.levelList = matched.filter(
|
|
|
(item) => item.meta && item.meta.title && item.meta.breadcrumb !== false
|
|
|
- );
|
|
|
- const { preModel } = this.$route.query;
|
|
|
+ )
|
|
|
+ const { preModel } = this.$route.query
|
|
|
if (preModel) {
|
|
|
- let model = JSON.parse(preModel);
|
|
|
- this.isShow = true;
|
|
|
- const { options, router } = model;
|
|
|
- this.backOtions = JSON.stringify(options);
|
|
|
- this.backUrl = router;
|
|
|
+ const model = JSON.parse(preModel)
|
|
|
+ this.isShow = true
|
|
|
+ const { options, router } = model
|
|
|
+ this.backOtions = JSON.stringify(options)
|
|
|
+ this.backUrl = router
|
|
|
} else {
|
|
|
- this.isShow = false;
|
|
|
+ this.isShow = false
|
|
|
// this.backOtions = "";
|
|
|
}
|
|
|
- console.log("active" + this.backOtions);
|
|
|
+ console.log('active' + this.backOtions)
|
|
|
},
|
|
|
isDashboard(route) {
|
|
|
- const name = route && route.name;
|
|
|
+ const name = route && route.name
|
|
|
if (!name) {
|
|
|
- return false;
|
|
|
+ return false
|
|
|
}
|
|
|
return (
|
|
|
- name.trim().toLocaleLowerCase() === "Dashboard".toLocaleLowerCase()
|
|
|
- );
|
|
|
+ name.trim().toLocaleLowerCase() === 'Dashboard'.toLocaleLowerCase()
|
|
|
+ )
|
|
|
},
|
|
|
pathCompile(path) {
|
|
|
- const { params } = this.$route;
|
|
|
- var toPath = pathToRegexp.compile(path);
|
|
|
- return toPath(params);
|
|
|
+ const { params } = this.$route
|
|
|
+ var toPath = pathToRegexp.compile(path)
|
|
|
+ return toPath(params)
|
|
|
},
|
|
|
back_arrow() {
|
|
|
if (!this.isShow) {
|
|
|
- return;
|
|
|
+ return
|
|
|
}
|
|
|
- console.log("wantto" + this.backOtions);
|
|
|
+ console.log('wantto' + this.backOtions)
|
|
|
window.vm.$router.push({
|
|
|
path: this.backUrl,
|
|
|
query: {
|
|
|
- back: this.backOtions,
|
|
|
- },
|
|
|
- });
|
|
|
+ back: this.backOtions
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
handleLink(item) {
|
|
|
- const { redirect, path } = item;
|
|
|
+ const { redirect, path } = item
|
|
|
if (redirect) {
|
|
|
- window.vm.$router.push(redirect);
|
|
|
- return;
|
|
|
+ window.vm.$router.push(redirect)
|
|
|
+ return
|
|
|
}
|
|
|
- window.vm.$router.push(this.pathCompile(path));
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ window.vm.$router.push(this.pathCompile(path))
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|