|
@@ -40,8 +40,6 @@ import { mapState } from 'vuex'
|
40
|
40
|
export default {
|
41
|
41
|
data() {
|
42
|
42
|
return {
|
43
|
|
- register: require('@/assets/icon/register.svg'),
|
44
|
|
- buttonShow: true,
|
45
|
43
|
menus: [
|
46
|
44
|
{
|
47
|
45
|
icon: require('@/assets/userImag/userInfo.png'),
|
|
@@ -49,12 +47,12 @@ export default {
|
49
|
47
|
path: '/SetUser',
|
50
|
48
|
},
|
51
|
49
|
{
|
52
|
|
- icon: require('@/assets/userImag/shoucang.png'),
|
|
50
|
+ icon: require('@/assets/userImag/wenjuan.png'),
|
53
|
51
|
title: '我的收藏',
|
54
|
52
|
path: '/MyCollection',
|
55
|
53
|
},
|
56
|
54
|
{
|
57
|
|
- icon: require('@/assets/userImag/wenjuan.png'),
|
|
55
|
+ icon: require('@/assets/userImag/shoucang.png'),
|
58
|
56
|
title: '我的问卷',
|
59
|
57
|
path: '',
|
60
|
58
|
}
|
|
@@ -66,13 +64,9 @@ export default {
|
66
|
64
|
person: s => s.user,
|
67
|
65
|
}),
|
68
|
66
|
divShow() {
|
69
|
|
- return false; // !!this.person?.phone
|
|
67
|
+ return !!this.person?.phone
|
70
|
68
|
}
|
71
|
69
|
},
|
72
|
|
- mounted() {
|
73
|
|
- },
|
74
|
|
- methods: {
|
75
|
|
- }
|
76
|
70
|
}
|
77
|
71
|
</script>
|
78
|
72
|
|