Browse Source

merge 3.0 最新版

张延森 5 years ago
parent
commit
f99b5b7fc5
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      src/pages/card/index.js
  2. 2
    2
      src/pages/project/floor/index.js

+ 2
- 2
src/pages/card/index.js View File

472
                 <View className='mycard__work'>
472
                 <View className='mycard__work'>
473
                   <View className='row mycard__work-department'>{cardInfo.department}<Text className='txt'>部门</Text></View>
473
                   <View className='row mycard__work-department'>{cardInfo.department}<Text className='txt'>部门</Text></View>
474
                   <View className='row mycard__work-position'>{cardInfo.post}<Text className='txt'>职位</Text></View>
474
                   <View className='row mycard__work-position'>{cardInfo.post}<Text className='txt'>职位</Text></View>
475
-                  <View className='row mycard__work-company'>{cardInfo.company}<Text className='txt'>楼盘</Text></View>
475
+                  <View className='row mycard__work-company'>{projectDetail.buildingName}<Text className='txt'>楼盘</Text></View>
476
                 </View>
476
                 </View>
477
 
477
 
478
                 {/* 人气 */}
478
                 {/* 人气 */}
549
       </Block>
549
       </Block>
550
     )
550
     )
551
   }
551
   }
552
-}
552
+}

+ 2
- 2
src/pages/project/floor/index.js View File

39
           </View>
39
           </View>
40
           <View className='item'>
40
           <View className='item'>
41
             <Text className='txt left-txt'>销售状态</Text>
41
             <Text className='txt left-txt'>销售状态</Text>
42
-            <Text className='txt right-txt'>{this.state.statusOpts[projectDetail.status - 1]}</Text>
42
+            <Text className='txt right-txt'>{projectDetail.marketStatus ? projectDetail.marketStatus :'待定'}</Text>
43
           </View>
43
           </View>
44
           <View className='item'>
44
           <View className='item'>
45
             <Text className='txt left-txt'>开盘日期</Text>
45
             <Text className='txt left-txt'>开盘日期</Text>
89
       </View >
89
       </View >
90
     );
90
     );
91
   }
91
   }
92
-}
92
+}