xujing 5 年 前
コミット
ac65f90e1a
共有1 個のファイルを変更した3 個の追加0 個の削除を含む
  1. 3
    0
      src/pages/activity/detail/index.js

+ 3
- 0
src/pages/activity/detail/index.js ファイルの表示

@@ -12,6 +12,7 @@ import { getQrCodeParams } from '@utils/qrcode'
12 12
 import { getCardDetail } from '@services/card'
13 13
 import { ROLE_CODE } from '@constants/user'
14 14
 import Consultant from '@components/consultant'
15
+import AuthorizationComponent from '@components/authorizationComponent'
15 16
 import {
16 17
   addActivityShareNum,
17 18
   signupActivity,
@@ -390,6 +391,7 @@ export default class Detail extends Component {
390 391
     const { userInfo: { person: { phone, personId, nickname, name } } } = this.props
391 392
     return (
392 393
       <Block>
394
+        <AuthorizationComponent>
393 395
         {/* 生成海报 */}
394 396
         {posterVisible && (<Poster data={posterData} toggle={this.togglePosterStatus}></Poster>)}
395 397
 
@@ -502,6 +504,7 @@ export default class Detail extends Component {
502 504
             </View>
503 505
           )
504 506
         }
507
+      </AuthorizationComponent>
505 508
       </Block>
506 509
     )
507 510
   }