1007395918@qq.com 5 年前
父节点
当前提交
ca1ed187cc
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/pages/project/detail/index.js

+ 2
- 2
src/pages/project/detail/index.js 查看文件

@@ -1155,9 +1155,9 @@ export default class Index extends Component {
1155 1155
                       <View className="rest-info">
1156 1156
                         <View className='house-type__name'>{item.apartmentName || ''}</View>
1157 1157
                         <View className='construction__area'>
1158
-                          <Text>建面{item.buildingArea ? item.buildingArea + 'm²' : '待定'}</Text>
1158
+                          <Text>{item.buildingArea ? '建筑面积约' + item.buildingArea + 'm²' : '建筑面积待定'}</Text>
1159 1159
                           {
1160
-                            item.insideArea ? <Text>套内{item.insideArea}m²</Text> : <Text>套内待定</Text>
1160
+                            item.insideArea ? <Text>使用面积约{item.insideArea}m²</Text> : <Text>使用面积待定</Text>
1161 1161
                           }
1162 1162
                         </View>
1163 1163
                       </View>