|
@@ -44,7 +44,7 @@ export default class raiseMoney extends Component {
|
44
|
44
|
navigationBarTitleText: '认筹确认'
|
45
|
45
|
}
|
46
|
46
|
state = {
|
47
|
|
- current: 4,
|
|
47
|
+ current: 0,
|
48
|
48
|
inputName: '',
|
49
|
49
|
raiseProfile: undefined,
|
50
|
50
|
record: {},
|
|
@@ -60,6 +60,7 @@ export default class raiseMoney extends Component {
|
60
|
60
|
houseId, // 房源号, 从房源详情进入的
|
61
|
61
|
raiseRecordId, // 认筹单ID, // 从认筹列表进入
|
62
|
62
|
} = this.$router.params
|
|
63
|
+ console.log(this.state.record,"recordrecordrecordrecord")
|
63
|
64
|
|
64
|
65
|
if (houseId) {
|
65
|
66
|
this.loadHouseInfo(houseId, salesBatchId)
|
|
@@ -304,6 +305,7 @@ export default class raiseMoney extends Component {
|
304
|
305
|
data={consultant}
|
305
|
306
|
style="padding:30rpx 0;width:690rpx; border-bottom: 1px solid #dcdcdc;"
|
306
|
307
|
type="raiseMoney"
|
|
308
|
+ tips="show"
|
307
|
309
|
/>
|
308
|
310
|
</View>
|
309
|
311
|
</ScrollView >
|
|
@@ -420,6 +422,12 @@ export default class raiseMoney extends Component {
|
420
|
422
|
})
|
421
|
423
|
|
422
|
424
|
}
|
|
425
|
+ toRaiseProfile() {
|
|
426
|
+ const id = this.$router.params.raiseRecordId
|
|
427
|
+ Taro.navigateTo({
|
|
428
|
+ url: `/onlineSelling/pages/raiseProfile/index?raiseRecordId=${id}`
|
|
429
|
+ })
|
|
430
|
+ }
|
423
|
431
|
renderResult() {
|
424
|
432
|
return (
|
425
|
433
|
<View className="result">
|
|
@@ -431,7 +439,7 @@ export default class raiseMoney extends Component {
|
431
|
439
|
<View className="tip">支付结果请留意微信支付通知</View>
|
432
|
440
|
{/* <ContactConsultant buildingId={buildingId} style=" position: absolute;bottom: 8vh;" /> */}
|
433
|
441
|
<ContactConsultant style=" position: absolute;bottom: 11vh;" />
|
434
|
|
- <View className="look-btn">查看认筹单</View>
|
|
442
|
+ <View className="look-btn"onClick={()=>this.toRaiseProfile()}>查看认筹单</View>
|
435
|
443
|
</View>
|
436
|
444
|
|
437
|
445
|
);
|
|
@@ -450,7 +458,11 @@ export default class raiseMoney extends Component {
|
450
|
458
|
|
451
|
459
|
// 缴费
|
452
|
460
|
case 3:
|
453
|
|
- this.makePay().then()
|
|
461
|
+ this.makePay().then(() => {
|
|
462
|
+ this.setState({
|
|
463
|
+ current: current + 1
|
|
464
|
+ })
|
|
465
|
+ })
|
454
|
466
|
return;
|
455
|
467
|
|
456
|
468
|
//
|