浏览代码

静态页面

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

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

9
   const { Data = {} } = props
9
   const { Data = {} } = props
10
   const { uvList = [] } = Data
10
   const { uvList = [] } = Data
11
   return (
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
       <view className='Img'>
13
       <view className='Img'>
14
         <view>
14
         <view>
15
           <Image mode='aspectFill' className='centerLabel' src={getImgURL(Data.buildingListImg?.length ? Data.buildingListImg[0].url : null)} />
15
           <Image mode='aspectFill' className='centerLabel' src={getImgURL(Data.buildingListImg?.length ? Data.buildingListImg[0].url : null)} />
29
             <text>{Data.buildingName}</text>
29
             <text>{Data.buildingName}</text>
30
           </view>
30
           </view>
31
           <text></text>
31
           <text></text>
32
-          <text>{Data.price}</text>
33
         </view>
32
         </view>
33
+        <text className='Price'>{Data.price}</text>
34
         <text className='Address'>{Data.address}</text>
34
         <text className='Address'>{Data.address}</text>
35
         <view className='Tags'>
35
         <view className='Tags'>
36
           {
36
           {

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

48
           text-overflow: ellipsis;
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
     > .Address {
57
     > .Address {
61
       display: block;
58
       display: block;
65
       white-space: nowrap;
62
       white-space: nowrap;
66
       overflow: hidden;
63
       overflow: hidden;
67
       text-overflow: ellipsis;
64
       text-overflow: ellipsis;
68
-      margin-top: 16px;
65
+      margin-top: 10px;
69
     }
66
     }
70
     > .Tags {
67
     > .Tags {
71
       font-size: 0;
68
       font-size: 0;
72
       white-space: nowrap;
69
       white-space: nowrap;
73
-      margin-top: 12px;
70
+      margin-top: 16px;
74
       > text {
71
       > text {
75
         display: inline-block;
72
         display: inline-block;
76
         vertical-align: middle;
73
         vertical-align: middle;
78
         padding: 0 10px;
75
         padding: 0 10px;
79
         line-height: 36px;
76
         line-height: 36px;
80
         background: rgba(251, 171, 87, 0.3);
77
         background: rgba(251, 171, 87, 0.3);
81
-        color: #333;
78
+        color: #666;
82
         margin-left: 20px;
79
         margin-left: 20px;
83
         &:first-child {
80
         &:first-child {
84
           margin-left: 0;
81
           margin-left: 0;

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

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

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

34
     data = data || []
34
     data = data || []
35
     let params = []
35
     let params = []
36
     data.map((item) => {
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
       } else {
40
       } else {
41
-        if(item.result !== '' || item.resultId !== null) {
41
+        if (item.result !== '' || item.resultId !== null) {
42
           params.push(item)
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
     let payload = {}
47
     let payload = {}
48
     params.map((item) => {
48
     params.map((item) => {
49
       payload[item.key] = item.result || item.resultId
49
       payload[item.key] = item.result || item.resultId
116
                         {
116
                         {
117
                           item.options.map((subItem, subIndex) => (
117
                           item.options.map((subItem, subIndex) => (
118
                             <view key={`${item.key}-${subIndex}`} className={item.resultId === subItem.id ? 'active' : ''} onClick={CutCheckbox(subItem, index)}>
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
                               <Image mode='heightFix' src={require('@/assets/findHouse-icon1.png')}></Image>
120
                               <Image mode='heightFix' src={require('@/assets/findHouse-icon1.png')}></Image>
121
                             </view>
121
                             </view>
122
                           ))
122
                           ))

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

71
             > view {
71
             > view {
72
               display: inline-block;
72
               display: inline-block;
73
               vertical-align: middle;
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
               box-sizing: border-box;
76
               box-sizing: border-box;
81
-              white-space: nowrap;
82
-              text-align: center;
83
               border: 2px solid #193c83;
77
               border: 2px solid #193c83;
84
               border-radius: 4px;
78
               border-radius: 4px;
85
               margin-right: 54px;
79
               margin-right: 54px;
86
               position: relative;
80
               position: relative;
87
               overflow: hidden;
81
               overflow: hidden;
88
               margin-top: 20px;
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
               &.active {
94
               &.active {
93
                 > image {
95
                 > image {
94
                   display: block;
96
                   display: block;
102
                 right: -2px;
104
                 right: -2px;
103
                 bottom: -2px;
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
           > .RangeList {
119
           > .RangeList {

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

53
                 <View className='city-initial'>{key}</View>
53
                 <View className='city-initial'>{key}</View>
54
                 {list[key].map((item) => (
54
                 {list[key].map((item) => (
55
                   <View key={item.brandId} className='city-item' onClick={() => handleSelected(item)}>
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
                     <text>{item.brandName}</text>
59
                     <text>{item.brandName}</text>
58
                   </View>
60
                   </View>
59
                 ))}
61
                 ))}

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

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

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

182
             {
182
             {
183
               NavList.map((item, inx) => (
183
               NavList.map((item, inx) => (
184
                 <view className={inx === CurrentNavId ? 'flex-item active' : 'flex-item'} key={item.key}>
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
                 </view>
186
                 </view>
187
               ))
187
               ))
188
             }
188
             }

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

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

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

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

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

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

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

46
       >text {
46
       >text {
47
         display: block;
47
         display: block;
48
         text-align: center;
48
         text-align: center;
49
-        font-size: 32px;
49
+        font-size: 30px;
50
         line-height: 44px;
50
         line-height: 44px;
51
         color: #666;
51
         color: #666;
52
         margin-top: 12px;
52
         margin-top: 12px;
58
         }
58
         }
59
         &:last-child {
59
         &:last-child {
60
           margin-top: 0;
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
 // import React, { useState, useEffect } from 'react'
1
 // import React, { useState, useEffect } from 'react'
2
 import Taro from '@tarojs/taro'
2
 import Taro from '@tarojs/taro'
3
 import '@/assets/css/iconfont.css'
3
 import '@/assets/css/iconfont.css'
4
+import { formatDate } from '@/utils/chatDate'
4
 import './index.scss'
5
 import './index.scss'
5
 
6
 
6
 export default function ProjectDynamic (props) {
7
 export default function ProjectDynamic (props) {
26
       </view>
27
       </view>
27
 
28
 
28
       <view className='Info' onClick={handleClick}>
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
         <text className='Title'>{info.trendTitle}</text>
31
         <text className='Title'>{info.trendTitle}</text>
31
         <text className='Desc'>{info.trendContent}</text>
32
         <text className='Desc'>{info.trendContent}</text>
32
       </view>
33
       </view>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

17
 
17
 
18
   const user = useSelector(state => state.user)
18
   const user = useSelector(state => state.user)
19
   const [DemandList] = useState([
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
   const [CurrentDemandId, setCurrentDemandId] = useState(1)
24
   const [CurrentDemandId, setCurrentDemandId] = useState(1)
25
   const [ShowDemand, setShowDemand] = useState(true)
25
   const [ShowDemand, setShowDemand] = useState(true)

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

26
           color: #333;
26
           color: #333;
27
           line-height: 40px;
27
           line-height: 40px;
28
           text-indent: 30px;
28
           text-indent: 30px;
29
+          letter-spacing: 4px;
29
         }
30
         }
30
         > view {
31
         > view {
31
           padding: 0 30px;
32
           padding: 0 30px;
63
               display: block;
64
               display: block;
64
               text-align: center;
65
               text-align: center;
65
               margin-top: 10px;
66
               margin-top: 10px;
67
+              letter-spacing: 4px;
66
               &:last-child {
68
               &:last-child {
67
-                font-size: 24px;
69
+                font-size: 22px;
68
                 font-weight: bold;
70
                 font-weight: bold;
69
                 color: #ccc;
71
                 color: #ccc;
70
                 padding: 6px 0;
72
                 padding: 6px 0;
71
                 border-top: 2px solid #eee;
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
         <text className='iconfont icon-dingwei'></text>
30
         <text className='iconfont icon-dingwei'></text>
31
         <view className='flex-item'>
31
         <view className='flex-item'>
32
           <view>
32
           <view>
33
-            <text>{Data.cityName}</text>
33
+            <text>{Data.buildingName}</text>
34
           </view>
34
           </view>
35
         </view>
35
         </view>
36
       </view>
36
       </view>

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

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