xujing 5 years ago
parent
commit
ac65f90e1a
1 changed files with 3 additions and 0 deletions
  1. 3
    0
      src/pages/activity/detail/index.js

+ 3
- 0
src/pages/activity/detail/index.js View File

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