You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
966 B
60 lines
966 B
|
2 years ago
|
<template>
|
||
|
|
<div>
|
||
|
|
<cpt-bread
|
||
|
|
@tap="clickBreadItem"
|
||
|
|
v-if="breadList.length > 1"
|
||
|
|
:bread-list="breadList"
|
||
|
|
/>
|
||
|
|
<personnel />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import cptBread from "@/views/dataBoard/renfang/cpts/bread";
|
||
|
|
import personnel from "@/views/dataBoard/cpts/personnel";
|
||
|
|
|
||
|
|
export default {
|
||
|
|
name: "renfang",
|
||
|
|
|
||
|
|
components: {
|
||
|
|
cptBread,
|
||
|
|
personnel,
|
||
|
|
},
|
||
|
|
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
breadList: [
|
||
|
|
{
|
||
|
|
path: "/dataBoard/overview/index",
|
||
|
|
meta: {
|
||
|
|
title: "概览",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "/dataBoard/renfang/resident",
|
||
|
|
meta: {
|
||
|
|
title: "居民画像",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
},
|
||
|
|
|
||
|
|
mounted() {},
|
||
|
|
watch: {},
|
||
|
|
methods: {
|
||
|
|
clickBreadItem({ item }) {
|
||
|
|
this.$router.push({
|
||
|
|
path: item.path,
|
||
|
|
});
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style
|
||
|
|
lang="scss"
|
||
|
|
src="@/assets/scss/dataBoard/renfang/index.scss"
|
||
|
|
scoped
|
||
|
|
></style>
|