张延森 3 years ago
parent
commit
dd9cbde618
3 changed files with 4 additions and 12 deletions
  1. 0
    1
      src/assets/icon/register.svg
  2. 1
    2
      src/views/StrongPhoto.vue
  3. 3
    9
      src/views/UserCenter.vue

+ 0
- 1
src/assets/icon/register.svg View File

@@ -1 +0,0 @@
1
-<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1645423147426" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3049" xmlns:xlink="http://www.w3.org/1999/xlink" width="128" height="128"><defs><style type="text/css"></style></defs><path d="M472.7296 269.6704m-218.5728 0a218.5728 218.5728 0 1 0 437.1456 0 218.5728 218.5728 0 1 0-437.1456 0Z" fill="#80B7F9" p-id="3050"></path><path d="M554.8544 506.6752H390.656c-176.5888 0-319.744 143.1552-319.744 319.744 0 63.0784 51.1488 114.176 114.176 114.176h575.2832c63.0784 0 114.176-51.1488 114.176-114.176 0-176.5888-143.104-319.744-319.6928-319.744z" fill="#80B7F9" p-id="3051"></path><path d="M747.52 771.072m-202.2912 0a202.2912 202.2912 0 1 0 404.5824 0 202.2912 202.2912 0 1 0-404.5824 0Z" fill="#95C9FC" p-id="3052"></path><path d="M744.2944 568.8832c-110.1824 1.7408-199.0144 91.5456-199.0144 202.1888 0 71.0144 36.608 133.4272 92.0064 169.5232h123.136c63.0784 0 114.176-51.1488 114.176-114.176-0.0512-105.6768-51.3024-199.3216-130.304-257.536z" fill="#3E8BF8" p-id="3053"></path><path d="M810.4448 730.112H788.48v-21.9136c0-22.6304-18.3296-40.96-40.96-40.96s-40.96 18.3296-40.96 40.96v21.9136h-21.9136c-22.6304 0-40.96 18.3296-40.96 40.96s18.3296 40.96 40.96 40.96H706.56v21.9136c0 22.6304 18.3296 40.96 40.96 40.96s40.96-18.3296 40.96-40.96v-21.9136h21.9136c22.6304 0 40.96-18.3296 40.96-40.96s-18.3296-40.96-40.9088-40.96z" fill="#FFFFFF" p-id="3054"></path></svg>

+ 1
- 2
src/views/StrongPhoto.vue View File

@@ -2,7 +2,7 @@
2 2
   <div class="Photo-box">
3 3
     <van-swipe :autoplay="3000">
4 4
       <van-swipe-item v-for="(image, index) in photoBannerImages" :key="index">
5
-        <van-image width="100%" height="100%" :src="image.thumb" />
5
+        <van-image width="100%" height="57vw" :src="image.thumb" />
6 6
       </van-swipe-item>
7 7
     </van-swipe>
8 8
     <div style="display: flex; aline-itme:center;margin-top: 30px;position:relative ">
@@ -155,7 +155,6 @@ export default {
155 155
     border-radius: 10px;
156 156
     margin: 10px auto;
157 157
     box-shadow: 0px 8px 38px 0px rgba(0, 0, 0, 0.2);
158
-    height: 33vh;
159 158
   }
160 159
   .Zhedie-box {
161 160
     padding: 0 4vw;

+ 3
- 9
src/views/UserCenter.vue View File

@@ -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