浏览代码

静态页面

1002884655 3 年前
父节点
当前提交
e2862b7ad9
共有 35 个文件被更改,包括 117 次插入89 次删除
  1. 二进制
      src/assets/index-icon20.png
  2. 二进制
      src/assets/index-icon21.png
  3. 二进制
      src/assets/index-icon22.png
  4. 1
    1
      src/components/ProjectItemCard/style.scss
  5. 2
    2
      src/components/ProjectListItem/index.jsx
  6. 8
    11
      src/components/ProjectListItem/index.scss
  7. 2
    2
      src/pages/index/addedValueService/formData.js
  8. 6
    6
      src/pages/index/addedValueService/index.jsx
  9. 23
    11
      src/pages/index/addedValueService/index.scss
  10. 3
    1
      src/pages/index/brandList/index.jsx
  11. 12
    5
      src/pages/index/brandList/index.scss
  12. 1
    1
      src/pages/index/buildingAround/index.jsx
  13. 1
    1
      src/pages/index/buildingAround/index.scss
  14. 1
    1
      src/pages/index/buildingDetail/components/BasicInfo/index.jsx
  15. 3
    2
      src/pages/index/buildingDetail/components/BasicInfo/index.scss
  16. 2
    2
      src/pages/index/buildingDetail/components/Periphery/index.scss
  17. 2
    1
      src/pages/index/buildingDetail/components/ProjectDynamic/index.jsx
  18. 11
    11
      src/pages/index/buildingDetail/components/ProjectDynamic/index.scss
  19. 1
    1
      src/pages/index/buildingDetail/components/SpecialPriceHouse/index.jsx
  20. 2
    2
      src/pages/index/buildingDetail/components/SpecialPriceHouse/index.scss
  21. 2
    2
      src/pages/index/buildingInfo/index.scss
  22. 2
    1
      src/pages/index/buildingList/components/FilterForCityArea/index.scss
  23. 2
    1
      src/pages/index/buildingList/components/FilterForHouseSort/index.scss
  24. 2
    1
      src/pages/index/buildingList/components/FilterForHouseType/index.scss
  25. 2
    1
      src/pages/index/buildingList/components/FilterForMore/index.scss
  26. 5
    4
      src/pages/index/components/HotRecommend/index.scss
  27. 2
    2
      src/pages/index/components/LiveSale/index.scss
  28. 3
    3
      src/pages/index/helpToFindHouse/components/BuyHouse/index.scss
  29. 3
    3
      src/pages/index/helpToFindHouse/components/HousePurchasing/index.scss
  30. 3
    3
      src/pages/index/helpToFindHouse/components/RentingHouse/index.scss
  31. 1
    1
      src/pages/index/helpToFindHouse/components/SubmitBuyHouseResult/index.jsx
  32. 3
    3
      src/pages/index/helpToFindHouse/index.jsx
  33. 4
    1
      src/pages/index/helpToFindHouse/index.scss
  34. 1
    1
      src/pages/video/components/VideoListItem/index.jsx
  35. 1
    1
      src/pages/video/components/VideoListItem/index.scss

二进制
src/assets/index-icon20.png 查看文件


二进制
src/assets/index-icon21.png 查看文件


二进制
src/assets/index-icon22.png 查看文件


+ 1
- 1
src/components/ProjectItemCard/style.scss 查看文件

@@ -43,7 +43,7 @@
43 43
       }
44 44
     }
45 45
     > text {
46
-      font-size: 22px;
46
+      font-size: 32px;
47 47
       font-weight: bold;
48 48
       &:last-child {
49 49
         color: #ff0000;

+ 2
- 2
src/components/ProjectListItem/index.jsx 查看文件

@@ -9,7 +9,7 @@ export default function ProjectListItem (props) {
9 9
   const { Data = {} } = props
10 10
   const { uvList = [] } = Data
11 11
   return (
12
-    <view className='components ProjectListItem flex-h' onClick={() => {Taro.navigateTo({ url: `/pages/index/buildingDetail/index?id=${Data.buildingId}` })}}>
12
+    <view className='components ProjectListItem flex-h' onClick={() => { Taro.navigateTo({ url: `/pages/index/buildingDetail/index?id=${Data.buildingId}` }) }}>
13 13
       <view className='Img'>
14 14
         <view>
15 15
           <Image mode='aspectFill' className='centerLabel' src={getImgURL(Data.buildingListImg?.length ? Data.buildingListImg[0].url : null)} />
@@ -29,8 +29,8 @@ export default function ProjectListItem (props) {
29 29
             <text>{Data.buildingName}</text>
30 30
           </view>
31 31
           <text></text>
32
-          <text>{Data.price}</text>
33 32
         </view>
33
+        <text className='Price'>{Data.price}</text>
34 34
         <text className='Address'>{Data.address}</text>
35 35
         <view className='Tags'>
36 36
           {

+ 8
- 11
src/components/ProjectListItem/index.scss 查看文件

@@ -48,14 +48,11 @@
48 48
           text-overflow: ellipsis;
49 49
         }
50 50
       }
51
-      > text {
52
-        font-size: 22px;
53
-        line-height: 40px;
54
-        color: #333;
55
-        &:last-child {
56
-          color: red;
57
-        }
58
-      }
51
+    }
52
+    > .Price {
53
+      font-size: 22px;
54
+      line-height: 1;
55
+      color: red;
59 56
     }
60 57
     > .Address {
61 58
       display: block;
@@ -65,12 +62,12 @@
65 62
       white-space: nowrap;
66 63
       overflow: hidden;
67 64
       text-overflow: ellipsis;
68
-      margin-top: 16px;
65
+      margin-top: 10px;
69 66
     }
70 67
     > .Tags {
71 68
       font-size: 0;
72 69
       white-space: nowrap;
73
-      margin-top: 12px;
70
+      margin-top: 16px;
74 71
       > text {
75 72
         display: inline-block;
76 73
         vertical-align: middle;
@@ -78,7 +75,7 @@
78 75
         padding: 0 10px;
79 76
         line-height: 36px;
80 77
         background: rgba(251, 171, 87, 0.3);
81
-        color: #333;
78
+        color: #666;
82 79
         margin-left: 20px;
83 80
         &:first-child {
84 81
           margin-left: 0;

+ 2
- 2
src/pages/index/addedValueService/formData.js 查看文件

@@ -5,7 +5,7 @@ const questions = [
5 5
     type: 'range',
6 6
     result: '',
7 7
     resultId: null,
8
-    options: [100, 500]
8
+    options: [1, 200]
9 9
   },
10 10
   {
11 11
     question: '房屋现状?',
@@ -132,7 +132,7 @@ const questions = [
132 132
       { name: '非常实用高效', id: 2 },
133 133
       { name: '会选择感兴趣部分', id: 3 },
134 134
       { name: '不会选择', id: 4 },
135
-      { name: '新奇多实用', id: 5 },
135
+      { name: '新奇多实用', id: 5 },
136 136
       { name: '暂时不了解智能家居', id: 6 },
137 137
       { name: '其他', id: 7 }
138 138
     ]

+ 6
- 6
src/pages/index/addedValueService/index.jsx 查看文件

@@ -34,16 +34,16 @@ export default function AddedValueService () {
34 34
     data = data || []
35 35
     let params = []
36 36
     data.map((item) => {
37
-      if(item.key === 'budget') {
38
-        params.push({...item, key: 'minPrice', result: item.options[0] * 10000})
39
-        params.push({...item, key: 'maxPrice', result: item.result !== '' ? item.result * 10000 : 5000000})
37
+      if (item.key === 'budget') {
38
+        params.push({ ...item, key: 'minPrice', result: item.options[0] * 10000 })
39
+        params.push({ ...item, key: 'maxPrice', result: item.result !== '' ? item.result * 10000 : 5000000 })
40 40
       } else {
41
-        if(item.result !== '' || item.resultId !== null) {
41
+        if (item.result !== '' || item.resultId !== null) {
42 42
           params.push(item)
43 43
         }
44 44
       }
45 45
     })
46
-    params.push({question: '创建人小程序人员', result: user?.userInfo?.person?.personId, key: 'personId' })
46
+    params.push({ question: '创建人小程序人员', result: user?.userInfo?.person?.personId, key: 'personId' })
47 47
     let payload = {}
48 48
     params.map((item) => {
49 49
       payload[item.key] = item.result || item.resultId
@@ -116,7 +116,7 @@ export default function AddedValueService () {
116 116
                         {
117 117
                           item.options.map((subItem, subIndex) => (
118 118
                             <view key={`${item.key}-${subIndex}`} className={item.resultId === subItem.id ? 'active' : ''} onClick={CutCheckbox(subItem, index)}>
119
-                              {subItem.name}
119
+                              <text>{subItem.name}</text>
120 120
                               <Image mode='heightFix' src={require('@/assets/findHouse-icon1.png')}></Image>
121 121
                             </view>
122 122
                           ))

+ 23
- 11
src/pages/index/addedValueService/index.scss 查看文件

@@ -71,24 +71,26 @@
71 71
             > view {
72 72
               display: inline-block;
73 73
               vertical-align: middle;
74
-              font-size: 30px;
75
-              font-weight: 600;
76
-              color: #333;
77
-              line-height: 40px;
78
-              padding: 20px 0;
79
-              min-width: 194px;
74
+              height: 80px;
75
+              width: 194px;
80 76
               box-sizing: border-box;
81
-              white-space: nowrap;
82
-              text-align: center;
83 77
               border: 2px solid #193c83;
84 78
               border-radius: 4px;
85 79
               margin-right: 54px;
86 80
               position: relative;
87 81
               overflow: hidden;
88 82
               margin-top: 20px;
89
-              // &:nth-child(3n + 3) {
90
-              //   margin-right: 0;
91
-              // }
83
+              text-align: center;
84
+              &::after {
85
+                content: '';
86
+                display: inline-block;
87
+                vertical-align: middle;
88
+                width: 0;
89
+                height: 100%;
90
+              }
91
+              &:nth-child(3n + 3) {
92
+                margin-right: 0;
93
+              }
92 94
               &.active {
93 95
                 > image {
94 96
                   display: block;
@@ -102,6 +104,16 @@
102 104
                 right: -2px;
103 105
                 bottom: -2px;
104 106
               }
107
+              > text {
108
+                font-size: 30px;
109
+                font-weight: 600;
110
+                color: #333;
111
+                display: inline-block;
112
+                max-width: 96%;
113
+                word-break: break-all;
114
+                line-height: 30px;
115
+                vertical-align: middle;
116
+              }
105 117
             }
106 118
           }
107 119
           > .RangeList {

+ 3
- 1
src/pages/index/brandList/index.jsx 查看文件

@@ -53,7 +53,9 @@ export default withLayout(() => {
53 53
                 <View className='city-initial'>{key}</View>
54 54
                 {list[key].map((item) => (
55 55
                   <View key={item.brandId} className='city-item' onClick={() => handleSelected(item)}>
56
-                    <Image mode='heightFix' src={getImgURL(item.brandLogo)}></Image>
56
+                    <view>
57
+                      <Image mode='scaleToFill' src={getImgURL(item.brandLogo)}></Image>
58
+                    </view>
57 59
                     <text>{item.brandName}</text>
58 60
                   </View>
59 61
                 ))}

+ 12
- 5
src/pages/index/brandList/index.scss 查看文件

@@ -14,16 +14,23 @@
14 14
   .city-item {
15 15
     padding: 30px 50px;
16 16
     background: white;
17
-
18
-    >image {
19
-      width: auto;
17
+    >view {
18
+      width: 100px;
20 19
       height: 44px;
20
+      position: relative;
21
+      overflow: hidden;
21 22
       margin-right: 10px;
22 23
       vertical-align: middle;
24
+      display: inline-block;
25
+
26
+      >image {
27
+        width: 100%;
28
+        height: 100%;
29
+      }
23 30
     }
24 31
     >text {
25
-      font-size: 34px;
26
-      font-weight: bold;
32
+      font-size: 32px;
33
+      // font-weight: bold;
27 34
       vertical-align: middle;
28 35
     }
29 36
   }

+ 1
- 1
src/pages/index/buildingAround/index.jsx 查看文件

@@ -182,7 +182,7 @@ export default withLayout((props) => {
182 182
             {
183 183
               NavList.map((item, inx) => (
184 184
                 <view className={inx === CurrentNavId ? 'flex-item active' : 'flex-item'} key={item.key}>
185
-                  <text onClick={CutNav(inx)}>{`${TypeCalc(item.key)}(${item.data.length})`}</text>
185
+                  <text onClick={CutNav(inx)}>{`${TypeCalc(item.key)}`}</text>
186 186
                 </view>
187 187
               ))
188 188
             }

+ 1
- 1
src/pages/index/buildingAround/index.scss 查看文件

@@ -113,7 +113,7 @@
113 113
             display: inline-block;
114 114
             position: relative;
115 115
             overflow: hidden;
116
-            font-size: 32px;
116
+            font-size: 30px;
117 117
             color: #666;
118 118
             line-height: 44px;
119 119
             padding-bottom: 8px;

+ 1
- 1
src/pages/index/buildingDetail/components/BasicInfo/index.jsx 查看文件

@@ -51,7 +51,7 @@ export default function BasicInfo (props) {
51 51
       {
52 52
         (Info.buildingProjectType || []).length > 0 &&
53 53
         <view className='ProjectList'>
54
-          <ScrollView scroll-x>
54
+          <ScrollView scroll-x show-scrollbar={false}>
55 55
             {
56 56
               (Info.buildingProjectType || []).map((item, index) => (
57 57
                 <view className='ListItem' key={`List-${index}`}>

+ 3
- 2
src/pages/index/buildingDetail/components/BasicInfo/index.scss 查看文件

@@ -1,6 +1,7 @@
1 1
 .components.BasicInfo {
2 2
   position: relative;
3 3
   overflow: hidden;
4
+  padding-bottom: 60px;
4 5
   >.Title {
5 6
     padding: 0 30px;
6 7
     position: relative;
@@ -14,6 +15,7 @@
14 15
         font-size: 40px;
15 16
         line-height: 56px;
16 17
         color: #333;
18
+        font-weight: bold;
17 19
       }
18 20
     }
19 21
     >.Collect {
@@ -176,7 +178,7 @@
176 178
         }
177 179
         >text {
178 180
           display: block;
179
-          font-size: 32px;
181
+          font-size: 26px;
180 182
           line-height: 44px;
181 183
           color: #999;
182 184
           overflow: hidden;
@@ -265,7 +267,6 @@
265 267
     font-size: 0;
266 268
     white-space: nowrap;
267 269
     margin-top: 30px;
268
-    margin-bottom: 40px;
269 270
     >text {
270 271
       display: inline-block;
271 272
       vertical-align: middle;

+ 2
- 2
src/pages/index/buildingDetail/components/Periphery/index.scss 查看文件

@@ -46,7 +46,7 @@
46 46
       >text {
47 47
         display: block;
48 48
         text-align: center;
49
-        font-size: 32px;
49
+        font-size: 30px;
50 50
         line-height: 44px;
51 51
         color: #666;
52 52
         margin-top: 12px;
@@ -58,7 +58,7 @@
58 58
         }
59 59
         &:last-child {
60 60
           margin-top: 0;
61
-          font-size: 28px;
61
+          font-size: 26px;
62 62
         }
63 63
       }
64 64
     }

+ 2
- 1
src/pages/index/buildingDetail/components/ProjectDynamic/index.jsx 查看文件

@@ -1,6 +1,7 @@
1 1
 // import React, { useState, useEffect } from 'react'
2 2
 import Taro from '@tarojs/taro'
3 3
 import '@/assets/css/iconfont.css'
4
+import { formatDate } from '@/utils/chatDate'
4 5
 import './index.scss'
5 6
 
6 7
 export default function ProjectDynamic (props) {
@@ -26,7 +27,7 @@ export default function ProjectDynamic (props) {
26 27
       </view>
27 28
 
28 29
       <view className='Info' onClick={handleClick}>
29
-        <text className='Time'>{info.trendTime}</text>
30
+        <text className='Time'>{formatDate(info.trendTime, 'yyyy-M-d')}</text>
30 31
         <text className='Title'>{info.trendTitle}</text>
31 32
         <text className='Desc'>{info.trendContent}</text>
32 33
       </view>

+ 11
- 11
src/pages/index/buildingDetail/components/ProjectDynamic/index.scss 查看文件

@@ -2,33 +2,33 @@
2 2
   position: relative;
3 3
   overflow: hidden;
4 4
   padding: 40px 30px;
5
-  >.Title {
5
+  > .Title {
6 6
     align-items: center;
7
-    >.flex-item {
8
-      >text {
7
+    > .flex-item {
8
+      > text {
9 9
         display: block;
10 10
         font-size: 34rpx;
11 11
         color: #333;
12 12
         line-height: 1;
13
-        letter-spacing: 4px;
14
-        font-weight: 500;
13
+        letter-spacing: 4rpx;
14
+        font-weight: bold;
15 15
       }
16 16
     }
17
-    >text {
17
+    > text {
18 18
       font-size: 26rpx;
19
-      color: #A1A1A1;
19
+      color: #a1a1a1;
20 20
     }
21 21
   }
22
-  >.Info {
22
+  > .Info {
23 23
     position: relative;
24 24
     overflow: hidden;
25
-    >text {
25
+    > text {
26 26
       display: block;
27 27
       &.Time {
28 28
         font-size: 28rpx;
29 29
         line-height: 40rpx;
30 30
         margin-top: 28rpx;
31
-        color: #1A3B83;
31
+        color: #1a3b83;
32 32
       }
33 33
       &.Title {
34 34
         font-size: 32rpx;
@@ -40,7 +40,7 @@
40 40
         font-size: 28rpx;
41 41
         line-height: 40rpx;
42 42
         margin-top: 20rpx;
43
-        color: #A1A1A1;
43
+        color: #a1a1a1;
44 44
         text-indent: 2em;
45 45
       }
46 46
     }

+ 1
- 1
src/pages/index/buildingDetail/components/SpecialPriceHouse/index.jsx 查看文件

@@ -34,7 +34,7 @@ export default function SpecialPriceHouse (props) {
34 34
           {
35 35
             List.map((item, index) => (
36 36
               <view className='ListItem' key={`List-${index}`}>
37
-                <text className='Tips'>{`${toW(item.thriftPrice)}`}</text>
37
+                <text className='Tips'>{`${toW(item.thriftPrice)}`}</text>
38 38
                 <view className='Price'>
39 39
                   <text>{toW(item.currentPrice)}</text>
40 40
                   <text>{toW(item.originalPrice)}</text>

+ 2
- 2
src/pages/index/buildingDetail/components/SpecialPriceHouse/index.scss 查看文件

@@ -67,7 +67,7 @@
67 67
             vertical-align: middle;
68 68
             font-size: 32px;
69 69
             font-weight: bold;
70
-            color: red;
70
+            color: #FC2C2C;
71 71
             line-height: 1;
72 72
             &:last-child {
73 73
               color: #ccc;
@@ -81,7 +81,7 @@
81 81
           display: block;
82 82
           padding: 0 20px;
83 83
           font-size: 20px;
84
-          color: red;
84
+          color: #FC2C2C;
85 85
           line-height: 1;
86 86
           margin-top: 20px;
87 87
         }

+ 2
- 2
src/pages/index/buildingInfo/index.scss 查看文件

@@ -24,7 +24,7 @@
24 24
             border-top: none;
25 25
           }
26 26
           >text {
27
-            font-size: 30px;
27
+            font-size: 28px;
28 28
             color: #999;
29 29
             padding: 36px 0;
30 30
             min-width: 120px;
@@ -34,7 +34,7 @@
34 34
           >view {
35 35
             >text {
36 36
               display: block;
37
-              font-size: 32px;
37
+              font-size: 28px;
38 38
               color: #333;
39 39
               line-height: 44px;
40 40
             }

+ 2
- 1
src/pages/index/buildingList/components/FilterForCityArea/index.scss 查看文件

@@ -21,9 +21,10 @@
21 21
         position: relative;
22 22
         overflow: hidden;
23 23
         > text {
24
-          font-size: 30px;
24
+          font-size: 28px;
25 25
           font-weight: bold;
26 26
           line-height: 80px;
27
+          color: #333;
27 28
         }
28 29
         > image {
29 30
           display: block;

+ 2
- 1
src/pages/index/buildingList/components/FilterForHouseSort/index.scss 查看文件

@@ -21,9 +21,10 @@
21 21
         position: relative;
22 22
         overflow: hidden;
23 23
         > text {
24
-          font-size: 30px;
24
+          font-size: 28px;
25 25
           font-weight: bold;
26 26
           line-height: 80px;
27
+          color: #333;
27 28
         }
28 29
         > image {
29 30
           display: block;

+ 2
- 1
src/pages/index/buildingList/components/FilterForHouseType/index.scss 查看文件

@@ -21,9 +21,10 @@
21 21
         position: relative;
22 22
         overflow: hidden;
23 23
         > text {
24
-          font-size: 30px;
24
+          font-size: 28px;
25 25
           font-weight: bold;
26 26
           line-height: 80px;
27
+          color: #333;
27 28
         }
28 29
         > image {
29 30
           display: block;

+ 2
- 1
src/pages/index/buildingList/components/FilterForMore/index.scss 查看文件

@@ -38,9 +38,10 @@
38 38
             position: relative;
39 39
             overflow: hidden;
40 40
             > text {
41
-              font-size: 30px;
41
+              font-size: 28px;
42 42
               font-weight: bold;
43 43
               line-height: 80px;
44
+              color: #333;
44 45
             }
45 46
             > image {
46 47
               display: block;

+ 5
- 4
src/pages/index/components/HotRecommend/index.scss 查看文件

@@ -11,7 +11,7 @@
11 11
       position: relative;
12 12
       overflow: hidden;
13 13
       align-items: center;
14
-      background: rgba(0, 0, 0, 0.08);
14
+      background: rgba(0, 0, 0, 0.056);
15 15
       > view {
16 16
         font-size: 28px;
17 17
         line-height: 70px;
@@ -31,7 +31,7 @@
31 31
         align-items: center;
32 32
         margin-top: 10px;
33 33
         > .flex-item {
34
-          font-size: 32px;
34
+          font-size: 30px;
35 35
           color: #193c83;
36 36
           font-weight: bold;
37 37
           white-space: nowrap;
@@ -39,7 +39,7 @@
39 39
           text-overflow: ellipsis;
40 40
           margin-right: 20px;
41 41
           & + text {
42
-            font-size: 30px;
42
+            font-size: 28px;
43 43
             color: #193c83;
44 44
             line-height: 56px;
45 45
             box-sizing: border-box;
@@ -51,12 +51,13 @@
51 51
         }
52 52
       }
53 53
       >text {
54
-        font-size: 28px;
54
+        font-size: 26px;
55 55
         line-height: 1;
56 56
         display: block;
57 57
         padding-bottom: 20px;
58 58
         margin-top: 6px;
59 59
         text-indent: 26px;
60
+        color: #7F7F7F;
60 61
       }
61 62
     }
62 63
   }

+ 2
- 2
src/pages/index/components/LiveSale/index.scss 查看文件

@@ -14,11 +14,11 @@
14 14
       > view {
15 15
         display: inline-block;
16 16
         vertical-align: middle;
17
-        font-size: 30px;
17
+        font-size: 28px;
18 18
         font-weight: bold;
19 19
         line-height: 70px;
20 20
         padding: 0 23px;
21
-        background: rgba(0, 0, 0, 0.08);
21
+        background: rgba(0, 0, 0, 0.056);
22 22
         border-radius: 8px;
23 23
         margin-right: 30px;
24 24
         color: #383838;

+ 3
- 3
src/pages/index/helpToFindHouse/components/BuyHouse/index.scss 查看文件

@@ -9,7 +9,7 @@
9 9
     > view {
10 10
       position: relative;
11 11
       overflow: hidden;
12
-      margin-top: 30px;
12
+      margin-top: 36px;
13 13
       > text {
14 14
         display: block;
15 15
         font-size: 34px;
@@ -21,7 +21,7 @@
21 21
       > view {
22 22
         position: relative;
23 23
         overflow: hidden;
24
-        margin-top: 20px;
24
+        margin-top: 30px;
25 25
       }
26 26
       > .Area {
27 27
         > view {
@@ -140,7 +140,7 @@
140 140
   }
141 141
   >.Btn {
142 142
     padding: 0 30px;
143
-    margin: 150px auto 60px;
143
+    margin: 74px auto 60px;
144 144
     > text {
145 145
       display: block;
146 146
       text-align: center;

+ 3
- 3
src/pages/index/helpToFindHouse/components/HousePurchasing/index.scss 查看文件

@@ -9,7 +9,7 @@
9 9
     > view {
10 10
       position: relative;
11 11
       overflow: hidden;
12
-      margin-top: 30px;
12
+      margin-top: 36px;
13 13
       > text {
14 14
         display: block;
15 15
         font-size: 34px;
@@ -21,7 +21,7 @@
21 21
       > view {
22 22
         position: relative;
23 23
         overflow: hidden;
24
-        margin-top: 20px;
24
+        margin-top: 30px;
25 25
       }
26 26
       > .Area {
27 27
         > view {
@@ -140,7 +140,7 @@
140 140
   }
141 141
   >.Btn {
142 142
     padding: 0 30px;
143
-    margin: 150px auto 60px;
143
+    margin: 74px auto 60px;
144 144
     > text {
145 145
       display: block;
146 146
       text-align: center;

+ 3
- 3
src/pages/index/helpToFindHouse/components/RentingHouse/index.scss 查看文件

@@ -9,7 +9,7 @@
9 9
     > view {
10 10
       position: relative;
11 11
       overflow: hidden;
12
-      margin-top: 30px;
12
+      margin-top: 36px;
13 13
       > text {
14 14
         display: block;
15 15
         font-size: 34px;
@@ -21,7 +21,7 @@
21 21
       > view {
22 22
         position: relative;
23 23
         overflow: hidden;
24
-        margin-top: 20px;
24
+        margin-top: 30px;
25 25
       }
26 26
       > .Area {
27 27
         > view {
@@ -140,7 +140,7 @@
140 140
   }
141 141
   >.Btn {
142 142
     padding: 0 30px;
143
-    margin: 150px auto 60px;
143
+    margin: 74px auto 60px;
144 144
     > text {
145 145
       display: block;
146 146
       text-align: center;

+ 1
- 1
src/pages/index/helpToFindHouse/components/SubmitBuyHouseResult/index.jsx 查看文件

@@ -56,7 +56,7 @@ export default function SubmitBuyHouseResult (props) {
56 56
                 {
57 57
                   List.slice(0, 1).map((item, index) => (
58 58
                     <Block key={`ListItem-${index}`}>
59
-                      <view className='PlanTitle'>“方案一”</view>
59
+                      {/* <view className='PlanTitle'>“方案一”</view> */}
60 60
                       <view className='RecommendBuildingItem' onClick={() => {Taro.navigateTo({ url: `/pages/index/buildingDetail/index?id=${item.buildingId}` })}}>
61 61
                         <view>
62 62
                           <view className='Img'>

+ 3
- 3
src/pages/index/helpToFindHouse/index.jsx 查看文件

@@ -17,9 +17,9 @@ export default withLayout(() => {
17 17
 
18 18
   const user = useSelector(state => state.user)
19 19
   const [DemandList] = useState([
20
-    { name: '我要买房', id: 1, icon: '', spell: 'MAI FANG' },
21
-    { name: '我要租房', id: 2, icon: '', spell: 'ZU FANG' },
22
-    { name: '海外置业', id: 3, icon: '', spell: 'ZHI YE' }
20
+    { name: '我要买房', id: 1, icon: require('@/assets/index-icon20.png'), spell: 'MAI FANG' },
21
+    { name: '我要租房', id: 2, icon: require('@/assets/index-icon21.png'), spell: 'ZU FANG' },
22
+    { name: '海外置业', id: 3, icon: require('@/assets/index-icon22.png'), spell: 'ZHI YE' }
23 23
   ])
24 24
   const [CurrentDemandId, setCurrentDemandId] = useState(1)
25 25
   const [ShowDemand, setShowDemand] = useState(true)

+ 4
- 1
src/pages/index/helpToFindHouse/index.scss 查看文件

@@ -26,6 +26,7 @@
26 26
           color: #333;
27 27
           line-height: 40px;
28 28
           text-indent: 30px;
29
+          letter-spacing: 4px;
29 30
         }
30 31
         > view {
31 32
           padding: 0 30px;
@@ -63,12 +64,14 @@
63 64
               display: block;
64 65
               text-align: center;
65 66
               margin-top: 10px;
67
+              letter-spacing: 4px;
66 68
               &:last-child {
67
-                font-size: 24px;
69
+                font-size: 22px;
68 70
                 font-weight: bold;
69 71
                 color: #ccc;
70 72
                 padding: 6px 0;
71 73
                 border-top: 2px solid #eee;
74
+                letter-spacing: 0;
72 75
               }
73 76
             }
74 77
           }

+ 1
- 1
src/pages/video/components/VideoListItem/index.jsx 查看文件

@@ -30,7 +30,7 @@ export default function VideoListItem (props) {
30 30
         <text className='iconfont icon-dingwei'></text>
31 31
         <view className='flex-item'>
32 32
           <view>
33
-            <text>{Data.cityName}</text>
33
+            <text>{Data.buildingName}</text>
34 34
           </view>
35 35
         </view>
36 36
       </view>

+ 1
- 1
src/pages/video/components/VideoListItem/index.scss 查看文件

@@ -28,7 +28,7 @@
28 28
     margin-top: 10px;
29 29
     >text {
30 30
       display: block;
31
-      font-size: 32px;
31
+      font-size: 30px;
32 32
       line-height: 40px;
33 33
       color: #333;
34 34
       font-weight: 600;