|
@@ -9,6 +9,7 @@ import dayjs from 'dayjs'
|
9
|
9
|
import { transferImage } from '@/utils/tools'
|
10
|
10
|
import Blank from '../../components/Blank'
|
11
|
11
|
import * as noticeType from '@/constants/common.js'
|
|
12
|
+import Statement from '../../components/Statement'
|
12
|
13
|
|
13
|
14
|
@connect(
|
14
|
15
|
({ user }) => ({ ...user })
|
|
@@ -136,7 +137,7 @@ export default class Index extends Component {
|
136
|
137
|
}
|
137
|
138
|
|
138
|
139
|
}
|
139
|
|
- toRaiseMoney(){
|
|
140
|
+ toRaiseMoney() {
|
140
|
141
|
Taro.navigateTo({ url: `/onlineSelling/pages/raiseMoney/index` })
|
141
|
142
|
}
|
142
|
143
|
|
|
@@ -200,13 +201,12 @@ export default class Index extends Component {
|
200
|
201
|
<View className="date">
|
201
|
202
|
预选时间:{dayjs(houseDetail.preselectionStartTime).format('MM/DD HH:mm:ss')}--{dayjs(houseDetail.preselectionEndTime).format('MM/DD HH:mm:ss')}
|
202
|
203
|
</View>
|
203
|
|
- {/* <View className="date">
|
204
|
|
- 认筹时间:2/12 12:23:33--2/13 12:23:34
|
205
|
|
- </View> */}
|
|
204
|
+ <View className="date">认筹时间:2/12 12:23:33--2/13 12:23:34</View>
|
206
|
205
|
</View>
|
207
|
206
|
<View className="num">
|
208
|
207
|
已有{houseDetail.realHeat + houseDetail.heat + 0}人预选此房源,快快预选认筹~
|
209
|
208
|
</View>
|
|
209
|
+ <Statement style="margin: 104rpx 0 30rpx 0" />
|
210
|
210
|
<View style="padding: 0 30rpx;">
|
211
|
211
|
{!houseDetail.isPreselect ?
|
212
|
212
|
<View className="choose-btn" onClick={() => this.open()}>
|
|
@@ -215,7 +215,7 @@ export default class Index extends Component {
|
215
|
215
|
取消预选
|
216
|
216
|
</View>
|
217
|
217
|
}
|
218
|
|
- <View className="close-btn" onClick={() => this.toRaiseMoney()}>
|
|
218
|
+ <View className="raise-btn" onClick={() => this.toRaiseMoney()}>
|
219
|
219
|
认筹此房源
|
220
|
220
|
</View>
|
221
|
221
|
</View>
|