|
@@ -35,7 +35,7 @@ export default class Index extends Component {
|
35
|
35
|
</View>
|
36
|
36
|
<View className='item'>
|
37
|
37
|
<Text className='txt left-txt'>均价</Text>
|
38
|
|
- <Text className='txt right-txt'>{projectDetail.price}</Text>
|
|
38
|
+ <Text className='txt right-txt'>{projectDetail.price ? projectDetail.price :'待定'}</Text>
|
39
|
39
|
</View>
|
40
|
40
|
<View className='item'>
|
41
|
41
|
<Text className='txt left-txt'>销售状态</Text>
|
|
@@ -43,7 +43,7 @@ export default class Index extends Component {
|
43
|
43
|
</View>
|
44
|
44
|
<View className='item'>
|
45
|
45
|
<Text className='txt left-txt'>开盘日期</Text>
|
46
|
|
- <Text className='txt right-txt'>{projectDetail.openingDate || '暂无'}</Text>
|
|
46
|
+ <Text className='txt right-txt'>{projectDetail.openingDate ? dayjs(projectDetail.openingDate).format('YYYY-MM-DD HH:mm:ss') : '待定'}</Text>
|
47
|
47
|
</View>
|
48
|
48
|
<View className='item'>
|
49
|
49
|
<Text className='txt left-txt'>楼盘地址</Text>
|