提交 a5ebc5b3 编写于 作者: bo.dang's avatar bo.dang

优化设置管理员和黑名单面包屑

上级 a0badf27
...@@ -81,10 +81,10 @@ export default { ...@@ -81,10 +81,10 @@ export default {
this.pleTotal = n this.pleTotal = n
}, },
goManger() { goManger() {
this.$router.push(`/admin-manage?circleId=${this.circleId}`) this.$router.push(`/admin-manage?circleId=${this.circleId}&circleName=${this.circleName}`)
}, },
goBalck() { goBalck() {
this.$router.push(`/blacklist-manage?circleId=${this.circleId}`) this.$router.push(`/blacklist-manage?circleId=${this.circleId}&circleName=${this.circleName}`)
} }
} }
} }
......
<template> <template>
<div class="yqrange-index-wrapper"> <div class="yqrange-index-wrapper">
<bread-crumb :curmbFirst="curmbFirst" :curmbSecond="curmbSecond" :curmbThird="curmbThird"></bread-crumb> <bread-crumb :curmbFirst="curmbFirst" :curmbSecond="curmbSecond" :curmbThird="curmbThird" :jumPathThird="jumPathThird" :jumPathFouth="jumPathFouth"></bread-crumb>
<div class="yqrange-index-content screenSet" id="screenSet"> <div class="yqrange-index-content screenSet" id="screenSet">
<div class="header-title">黑名单</div> <div class="header-title">黑名单</div>
<el-form <el-form
...@@ -71,7 +71,7 @@ ...@@ -71,7 +71,7 @@
</template> </template>
<script> <script>
let vm = null; let vm = null;
import BreadCrumb from "@/components/breadcrumb.vue"; import BreadCrumb from "@/components/yqrange/breadcrumb-range.vue";
// import * as operationData from "../../../utils/operation"; // import * as operationData from "../../../utils/operation";
export default { export default {
components: { components: {
...@@ -83,8 +83,9 @@ export default { ...@@ -83,8 +83,9 @@ export default {
return { return {
circleId: 0, circleId: 0,
curmbFirst: "云鹊小圈", curmbFirst: "云鹊小圈",
curmbSecond: "圈子管理", curmbSecond: "",
curmbThird: "黑名单", curmbThird: "黑名单",
jumPathThird: '/yq-range',
searchForm: { searchForm: {
organization: "", organization: "",
staffName: "", staffName: "",
...@@ -99,8 +100,11 @@ export default { ...@@ -99,8 +100,11 @@ export default {
}, },
created() { created() {
vm = this; vm = this;
this.circleId = this.$route.query.id; this.circleId = this.$route.query.circleId;
this.idType = localStorage.getItem("storageIdType"); this.idType = localStorage.getItem("storageIdType");
this.circleName = this.$route.query.circleName;
this.curmbSecond = "圈子管理-" + this.circleName;
this.jumPathFouth = "/range-manage?id=" + this.circleId + "&name=" + this.circleName + "&activeName=first";
console.log("alex storageIdType = " + this.idType + ", id = " + this.id); console.log("alex storageIdType = " + this.idType + ", id = " + this.id);
this.searchList(); this.searchList();
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册