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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
| <template>
| <div class="listBox">
| <!-- <div class="list-title contBackground">{{ title }}</div> -->
| <ul class="list-cont">
| <li
| v-for="(item, index) in listData"
| :key="index"
| @click="gotoPath(item.url)"
| class="textColor"
| >
| <div class="left">
| <div class="imgBox"><img :src="item.icon" alt="" /></div>
| <span>{{ item.name }}</span>
| </div>
| <div class="right">
| <span
| :class="{
| red: status == 0 || status == 3,
| yellow: status == 1,
| green: status == 2,
| }"
| v-if="item.url == '/certificationCenter'"
| >{{
| status == 0
| ? $t("未认证")
| : status == 1
| ? $t("审核中")
| : status == 2
| ? $t("已认证")
| : status == 3
| ? $t("审核未通过")
| : ""
| }}</span
| >
| <img src="@/assets/image/userCenter/more.png" alt="" />
| </div>
| </li>
| </ul>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| title: {
| type: String,
| default: "",
| },
| listData: {
| type: Array,
| default() {
| return [];
| },
| },
| status: {
| type: Number,
| default: 0,
| },
| },
| components: {},
| data() {
| return {};
| },
| methods: {
| gotoPath(url) {
| this.$router.push(url);
| },
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .listBox {
| .list-title {
| height: 92px;
| // width: 100%;
| line-height: 92px;
| padding-left: 33px;
| color: #868d9a;
| }
| .textColor {
| padding: 1.5rem;
| }
| .list-cont {
| padding-left: 36px;
| padding-right: 40px;
|
| li {
| display: flex;
| justify-content: space-between;
| height: 100px;
| align-items: center;
|
| .left {
| display: flex;
| justify-content: center;
| align-items: center;
|
| .imgBox {
| width: 44px;
| height: 44px;
| margin-right: 22px;
|
| img {
| width: 100%;
| height: 100%;
| }
| }
| }
|
| .right {
| display: flex;
| justify-content: center;
| align-items: center;
| font-size: 30px;
|
| img {
| width: 26px;
| height: 26px;
| margin-left: 22px;
| }
| }
| }
| }
| }
|
| .yellow {
| color: #f5c421;
| }
|
| .red {
| color: #f6465d;
| }
|
| .green {
| color: #2ebd85;
| }
| </style>
|
|