1002884655 il y a 3 ans
Parent
révision
84abbae0d6

+ 1
- 1
src/pages/index/activityDetail/index.scss Voir le fichier

224
           }
224
           }
225
           > .Top {
225
           > .Top {
226
             width: 100%;
226
             width: 100%;
227
-            padding-bottom: 56%;
227
+            padding-bottom: 56.25%;
228
             position: relative;
228
             position: relative;
229
             overflow: hidden;
229
             overflow: hidden;
230
             background: #eee;
230
             background: #eee;

+ 1
- 1
src/pages/index/buildingDetail/components/BasicInfo/index.jsx Voir le fichier

169
 
169
 
170
       {/* 围观 */}
170
       {/* 围观 */}
171
       <view className='Views flex-h'>
171
       <view className='Views flex-h'>
172
-        <text>{Info.pvNum || 0}人围观</text>
172
+        <text>{299 + (Info.pvNum || 0)}人围观</text>
173
         <view className='flex-item'>
173
         <view className='flex-item'>
174
           {
174
           {
175
             (Info?.uvList?.records || []).slice(0, 8).map((item, index) => (
175
             (Info?.uvList?.records || []).slice(0, 8).map((item, index) => (

+ 1
- 0
src/pages/index/buildingDetail/index.scss Voir le fichier

69
     position: relative;
69
     position: relative;
70
     overflow: hidden;
70
     overflow: hidden;
71
     box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.03);
71
     box-shadow: 0 0 6px 6px rgba(0, 0, 0, 0.03);
72
+    padding-bottom: 10px;
72
   }
73
   }
73
 }
74
 }

+ 1
- 1
src/pages/mine/myRecommendCode/index.jsx Voir le fichier

16
   useEffect(() => {
16
   useEffect(() => {
17
     const payload = {
17
     const payload = {
18
       scene: `id=${person?.personId}&from=${page.type}_share&recommender=${person?.personId}`,
18
       scene: `id=${person?.personId}&from=${page.type}_share&recommender=${person?.personId}`,
19
-      page: `pages/mine/myRecommendCode/index`
19
+      page: `pages/consultant/myHomepage/index`
20
     }
20
     }
21
     fetch({ url: API_QRCODE, payload, method: 'post' }).then((res) => {
21
     fetch({ url: API_QRCODE, payload, method: 'post' }).then((res) => {
22
       setQrCodeUrl(res)
22
       setQrCodeUrl(res)

+ 4
- 1
src/subpackages/pages/consultant/myHomepage/index.jsx Voir le fichier

44
 
44
 
45
   useEffect(() => {
45
   useEffect(() => {
46
     if (PersonId) {
46
     if (PersonId) {
47
-      GetUserInfo()
47
+      // GetUserInfo()
48
+      fetch({ url: `${API_CARDS_LIST}/${PersonId}`, method: 'get' }).then((res) => {
49
+        setUserInfo(res)
50
+      })
48
     }
51
     }
49
   }, [PersonId])
52
   }, [PersonId])
50
 
53