Browse Source

Merge branch 'dev' of http://git.ycjcjy.com/zhiyuxing/miniapp-v3 into dev

xujing 5 years ago
parent
commit
4c9571cbcd
1 changed files with 6 additions and 1 deletions
  1. 6
    1
      src/onlineSelling/pages/raiseMoney/index.js

+ 6
- 1
src/onlineSelling/pages/raiseMoney/index.js View File

@@ -458,9 +458,14 @@ export default class raiseMoney extends Component {
458 458
   }
459 459
 
460 460
   validRaise = () => {
461
-    // const { record, raiseProfile, preselectList } = this.state
461
+    const { record } = this.state
462 462
     const { house } = this.props
463 463
 
464
+    // 从认筹单页面进来, 不验证
465
+    if (record.raiseRecordId) {
466
+      return Promise.resolve()
467
+    }
468
+
464 469
     // 当前选中房源
465 470
     const houseList = house.raiseCart || []
466 471