Преглед на файлове

Merge branch 'dev' of http://git.ycjcjy.com/zhiyuxing/miniapp-v3 into dev

张延森 преди 5 години
родител
ревизия
296106b984

+ 1
- 1
src/onlineSelling/pages/houseList/index.js Целия файл

@@ -502,7 +502,7 @@ export default class HouseList extends Component {
502 502
                 <View className='construction__area'>
503 503
                   <Text>{apartmentItem.buildingArea ? '建筑面积约' + apartmentItem.buildingArea + 'm²' : '建筑面积待定'}</Text>
504 504
                   {
505
-                    apartmentItem.area2 ? <Text>使用面积约{apartmentItem.area2}m²</Text> : <Text>使用面积待定</Text>
505
+                    apartmentItem.insideArea ? <Text>使用面积约{apartmentItem.insideArea}m²</Text> : <Text>使用面积待定</Text>
506 506
                   }
507 507
                 </View>
508 508
               </View>

+ 0
- 1
src/onlineSelling/pages/houseList/index.scss Целия файл

@@ -186,7 +186,6 @@
186 186
         height: 80px;
187 187
         display: flex;
188 188
         flex-direction: column;
189
-        font-size: 28px;
190 189
         text-align: left;
191 190
 
192 191
       }

+ 3
- 4
src/onlineSelling/pages/records/index.js Целия файл

@@ -21,7 +21,7 @@ export default class Records extends Component {
21 21
   }
22 22
   componentWillMount() {
23 23
     ready.queue(() => {
24
-  
24
+
25 25
       const { userInfo: { person: { personId } } } = this.props
26 26
       const params = {
27 27
         personId,
@@ -29,12 +29,12 @@ export default class Records extends Component {
29 29
         pageSize: 999,
30 30
       }
31 31
       queryPreselectionRecord(params).then(res => {
32
+        const list = res.records
32 33
         this.setState({
33
-          recordList: res.records || []
34
+          recordList: list.filter(item => item.status == '1') || []
34 35
         })
35 36
       })
36 37
     })
37
-
38 38
   }
39 39
   toHouseDetail(item) {
40 40
     if (item.housingStatus == '0' || item.saleBatchStatus == '0') {
@@ -44,7 +44,6 @@ export default class Records extends Component {
44 44
         url: `/onlineSelling/pages/detail/index?id=${item.houseId}`
45 45
       })
46 46
     }
47
-
48 47
   }
49 48
 
50 49
   render() {

+ 1
- 1
src/pages/activity/detail/poster.js Целия файл

@@ -105,7 +105,7 @@ export default class Index extends Component {
105 105
         color: '#999',
106 106
         baseLine: 'middle',
107 107
         lineHeight: 48,
108
-        width: 50,
108
+        width: 450,
109 109
         zIndex: 11
110 110
       },
111 111
       // {

+ 1
- 1
src/pages/card/index.js Целия файл

@@ -620,7 +620,7 @@ export default class Index extends Component {
620 620
 
621 621
               {buildingId && (
622 622
                 <View className="pro__info">
623
-                  <View className='project__title'>{person.personId != cardInfo.id?'为您推荐':'项目信息'}</View>
623
+                  <View className='project__title'>{isSelf?'项目信息':'为您推荐'}</View>
624 624
                   <ProjectItem data={projectDetail} onClick={this.toProjectDetail.bind(this)} />
625 625
                 </View>
626 626
               )}

+ 1
- 1
src/pages/card/poster.js Целия файл

@@ -113,7 +113,7 @@ export default class Index extends Component {
113 113
         color: '#999',
114 114
         baseLine: 'middle',
115 115
         lineHeight: 48,
116
-        width: 50,
116
+        width: 450,
117 117
         zIndex: 100
118 118
       },
119 119
       // {

+ 1
- 1
src/pages/news/detail/poster.js Целия файл

@@ -105,7 +105,7 @@ export default class Index extends Component {
105 105
         color: '#999',
106 106
         baseLine: 'middle',
107 107
         lineHeight: 48,
108
-        width: 50,
108
+        width: 450,
109 109
         zIndex: 11
110 110
       },
111 111
       // {

+ 1
- 1
src/pages/person/myShare/index.js Целия файл

@@ -122,12 +122,12 @@ export default class Person extends Taro.Component {
122 122
                 {item.eventType == 'project' && <View className="price"> {item.price || '暂无均价'} </View>}
123 123
 
124 124
                 {item.eventType == 'h5' && <View className="num"> {item.drainageShareNum || '0'}人查看了分享 </View>}
125
+                {item.eventType == 'house' && <View className="num"> {item.houseShareNum || '0'}人查看了分享 </View>}
125 126
                 {item.eventType == 'project' && <View className="num"> {item.buildingNum || '0'}人查看了分享 </View>}
126 127
                 {item.eventType == 'group' && <View className="num"> {item.groupActivityShareNum || '0'}人查看了分享 </View>}
127 128
                 {item.eventType == 'help' && <View className="num"> {item.helpActivityShareNum || '0'}人查看了分享 </View>}
128 129
                 {item.eventType == 'activity' && <View className="num"> {item.activityShareNum || '0'}人查看了分享 </View>}
129 130
                 {item.eventType == 'news' && <View className="num"> {item.newsNum || '0'}人查看了分享 </View>}
130
-
131 131
                 {item.eventType == 'project' && <View className="address"> {item.address || ''} </View>}
132 132
               </View>
133 133
             ))

+ 1
- 1
src/pages/project/detail/poster.js Целия файл

@@ -132,7 +132,7 @@ export default class Index extends Component {
132 132
         color: '#999',
133 133
         baseLine: 'middle',
134 134
         lineHeight: 48,
135
-        width: 50,
135
+        width: 450,
136 136
         zIndex: 11
137 137
       },
138 138
       // {