Commit f8c917f6 by liyuhang19990520

1

parent 5a7ab1b7
...@@ -14,7 +14,7 @@ const menuLayouts = [ ...@@ -14,7 +14,7 @@ const menuLayouts = [
name: "addRyxs", name: "addRyxs",
meta: { meta: {
title: '添加人员线索信息', title: '添加人员线索信息',
isAdd:true, isAdd: true,
}, },
component: () => import("@/views/kyxs/ryxs/addRyxs.vue") component: () => import("@/views/kyxs/ryxs/addRyxs.vue")
}, },
...@@ -22,7 +22,8 @@ const menuLayouts = [ ...@@ -22,7 +22,8 @@ const menuLayouts = [
path: "/ryxsDetail", path: "/ryxsDetail",
name: "ryxsDetail", name: "ryxsDetail",
meta: { meta: {
title: '人员线索详情' title: '人员线索详情',
isAdd: true
}, },
component: () => import("@/views/kyxs/ryxs/ryxsDetail.vue") component: () => import("@/views/kyxs/ryxs/ryxsDetail.vue")
}, },
...@@ -39,7 +40,7 @@ const menuLayouts = [ ...@@ -39,7 +40,7 @@ const menuLayouts = [
name: "addYhkxs", name: "addYhkxs",
meta: { meta: {
title: '添加银行卡线索信息', title: '添加银行卡线索信息',
isAdd:true, isAdd: true,
}, },
component: () => import("@/views/kyxs/yhkxs/addYhkxs.vue") component: () => import("@/views/kyxs/yhkxs/addYhkxs.vue")
}, },
...@@ -47,7 +48,8 @@ const menuLayouts = [ ...@@ -47,7 +48,8 @@ const menuLayouts = [
path: "/yhkxsDetail", path: "/yhkxsDetail",
name: "yhkxsDetail", name: "yhkxsDetail",
meta: { meta: {
title: '银行卡线索详情' title: '银行卡线索详情',
isAdd: true
}, },
component: () => import("@/views/kyxs/yhkxs/yhkxsDetail.vue") component: () => import("@/views/kyxs/yhkxs/yhkxsDetail.vue")
}, },
...@@ -64,7 +66,7 @@ const menuLayouts = [ ...@@ -64,7 +66,7 @@ const menuLayouts = [
name: "addHmxs", name: "addHmxs",
meta: { meta: {
title: '添加号码线索信息', title: '添加号码线索信息',
isAdd:true, isAdd: true,
}, },
component: () => import("@/views/kyxs/hmxs/addHmxs.vue") component: () => import("@/views/kyxs/hmxs/addHmxs.vue")
}, },
...@@ -72,7 +74,8 @@ const menuLayouts = [ ...@@ -72,7 +74,8 @@ const menuLayouts = [
path: "/hmxsDetail", path: "/hmxsDetail",
name: "hmxsDetail", name: "hmxsDetail",
meta: { meta: {
title: '号码线索详情' title: '号码线索详情',
isAdd: true
}, },
component: () => import("@/views/kyxs/hmxs/hmxsDetail.vue") component: () => import("@/views/kyxs/hmxs/hmxsDetail.vue")
}, },
...@@ -89,7 +92,7 @@ const menuLayouts = [ ...@@ -89,7 +92,7 @@ const menuLayouts = [
name: "addJdcxs", name: "addJdcxs",
meta: { meta: {
title: '添加机动车线索信息', title: '添加机动车线索信息',
isAdd:true, isAdd: true,
}, },
component: () => import("@/views/kyxs/jdcxs/addJdcxs.vue") component: () => import("@/views/kyxs/jdcxs/addJdcxs.vue")
}, },
...@@ -97,7 +100,8 @@ const menuLayouts = [ ...@@ -97,7 +100,8 @@ const menuLayouts = [
path: "/jdcxsDetail", path: "/jdcxsDetail",
name: "jdcxsDetail", name: "jdcxsDetail",
meta: { meta: {
title: '机动车线索详情' title: '机动车线索详情',
isAdd: true
}, },
component: () => import("@/views/kyxs/jdcxs/jdcxsDetail.vue") component: () => import("@/views/kyxs/jdcxs/jdcxsDetail.vue")
}, },
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-08-31 09:52:33 * @Date: 2021-08-31 09:52:33
* @LastEditTime: 2021-08-31 16:17:22 * @LastEditTime: 2021-09-13 16:44:29
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\hnksh\ceshi.vue * @FilePath: \founder_vue\src\views\hnksh\ceshi.vue
...@@ -59,6 +59,18 @@ export default { ...@@ -59,6 +59,18 @@ export default {
col: "3", col: "3",
}, },
], ],
Breadcrumb: [
{
name: "号码线索管理",
to: "/hmxsGl",
isActive: false,
},
{
name: "号码线索详情",
to: "/hmxsDetail",
isActive: true,
},
],
pageObject: {}, pageObject: {},
id: "", id: "",
}; };
...@@ -78,6 +90,7 @@ export default { ...@@ -78,6 +90,7 @@ export default {
created() { created() {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.getInfor(); this.getInfor();
this.$store.commit("user/SET_Breadcrumb", this.Breadcrumb);
}, },
}; };
</script> </script>
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-08-31 09:52:33 * @Date: 2021-08-31 09:52:33
* @LastEditTime: 2021-08-31 16:17:41 * @LastEditTime: 2021-09-13 16:36:16
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\hnksh\ceshi.vue * @FilePath: \founder_vue\src\views\hnksh\ceshi.vue
...@@ -59,6 +59,18 @@ export default { ...@@ -59,6 +59,18 @@ export default {
col: "3", col: "3",
}, },
], ],
Breadcrumb: [
{
name: "机动车索管理",
to: "/jdcxsGl",
isActive: false,
},
{
name: "机动车索详情",
to: "/jdcxsDetail",
isActive: true,
},
],
pageObject: {}, pageObject: {},
id: "", id: "",
}; };
...@@ -77,6 +89,8 @@ export default { ...@@ -77,6 +89,8 @@ export default {
}, },
created() { created() {
this.id = this.$route.query.id; this.id = this.$route.query.id;
console.log(this.Breadcrumb,222222222222)
this.$store.commit("user/SET_Breadcrumb", this.Breadcrumb);
this.getInfor(); this.getInfor();
}, },
}; };
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-08-31 09:52:33 * @Date: 2021-08-31 09:52:33
* @LastEditTime: 2021-08-31 16:17:53 * @LastEditTime: 2021-09-13 16:43:36
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\hnksh\ceshi.vue * @FilePath: \founder_vue\src\views\hnksh\ceshi.vue
...@@ -59,6 +59,18 @@ export default { ...@@ -59,6 +59,18 @@ export default {
col: "3", col: "3",
}, },
], ],
breadcrumbList: [
{
name: "人员线索管理",
to: "/ryxsGl",
isActive: false,
},
{
name: "人员线索详情",
to: "/ryxsDetail",
isActive: true,
},
],
pageObject: {}, pageObject: {},
id: "", id: "",
}; };
...@@ -77,6 +89,7 @@ export default { ...@@ -77,6 +89,7 @@ export default {
}, },
created() { created() {
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.$store.commit("user/SET_Breadcrumb", this.breadcrumbList);
this.getInfor(); this.getInfor();
}, },
}; };
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-08-31 09:52:33 * @Date: 2021-08-31 09:52:33
* @LastEditTime: 2021-08-31 16:18:05 * @LastEditTime: 2021-09-13 16:44:15
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \founder_vue\src\views\hnksh\ceshi.vue * @FilePath: \founder_vue\src\views\hnksh\ceshi.vue
...@@ -59,6 +59,18 @@ export default { ...@@ -59,6 +59,18 @@ export default {
col: "3", col: "3",
}, },
], ],
Breadcrumb: [
{
name: "银行卡线索管理",
to: "/yhkxsGl",
isActive: false,
},
{
name: "银行卡线索详情",
to: "/yhkxsDetail",
isActive: true,
},
],
pageObject: {}, pageObject: {},
id: "", id: "",
}; };
...@@ -76,7 +88,9 @@ export default { ...@@ -76,7 +88,9 @@ export default {
}, },
}, },
created() { created() {
// debugger;
this.id = this.$route.query.id; this.id = this.$route.query.id;
this.$store.commit("user/SET_Breadcrumb", this.Breadcrumb);
this.getInfor(); this.getInfor();
}, },
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment