1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| <template>
| <div class="nav-title">
| <a class="item" v-for="(item, index) in titleArr" style="cursor: default;" :key="index">
| <!-- <i v-if="index===0"
| :class="item.meta.icon"></i> -->
| <p>{{ item }}</p>
| </a>
| </div>
| </template>
|
| <script>
| export default {
| data() {
| return {}
| },
| computed: {
| stageInfo() {
| return this.$store.getters.getStageInfo(this.$route.name)
| },
| titleArr() {
| return this.stageInfo.map(item => item.title).filter(item => !!item)
| },
| },
| }
| </script>
|
| <style lang="scss">
| .nav-title {
| display: flex;
| align-items: center;
| font-size: 14px;
|
| .item {
| i {
| margin-right: 4px;
| }
|
| display: flex;
| align-items: center;
| padding-right: 18px;
| position: relative;
| color: $right-side-font-color;
|
| &:after {
| content: '/';
| position: absolute;
| top: 0;
| right: 6px;
| }
| }
|
| .item:last-child {
| color: $theme;
| padding-right: 0;
|
| &:after {
| content: '';
| }
| }
| }
| </style>
|
|