|
@@ -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
|
}
|