|
@@ -50,6 +50,20 @@
|
|
|
<JyIcon name="icon-more" classPrefix=""></JyIcon>
|
|
|
</div>
|
|
|
<div class="cell-line" v-if="hasMoreIdentitys"></div>
|
|
|
+ <template>
|
|
|
+ <div class="cell-item" @click="goToAccountAndSafePage">
|
|
|
+ <JyIcon size="18px" style="margin-right: 4px" name="icon-hui7" classPrefix=""></JyIcon>
|
|
|
+ <span class="cell-label">账号与安全</span>
|
|
|
+ </div>
|
|
|
+ <div class="cell-line"></div>
|
|
|
+ </template>
|
|
|
+ <template>
|
|
|
+ <div class="cell-item" @click="goToIdentityInfoPage">
|
|
|
+ <JyIcon size="18px" style="margin-right: 4px" name="icon-shenfenweihu" classPrefix=""></JyIcon>
|
|
|
+ <span class="cell-label">身份信息维护</span>
|
|
|
+ </div>
|
|
|
+ <div class="cell-line"></div>
|
|
|
+ </template>
|
|
|
<div class="cell-item" @click="doSignOut">
|
|
|
<JyIcon size="18px" style="margin-right: 4px" name="icon-icon" classPrefix=""></JyIcon>
|
|
|
<span class="cell-label">退出登录</span>
|
|
@@ -156,6 +170,24 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
},
|
|
|
+ goToAccountAndSafePage () {
|
|
|
+ this.$BRACE.methods.open({
|
|
|
+ route: {
|
|
|
+ link: '/big/set-account-info',
|
|
|
+ appName: 'bigMemberSubApp',
|
|
|
+ appType: 'qiankun'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ goToIdentityInfoPage () {
|
|
|
+ this.$BRACE.methods.open({
|
|
|
+ route: {
|
|
|
+ link: '/big/set-identity-info',
|
|
|
+ appName: 'bigMemberSubApp',
|
|
|
+ appType: 'qiankun'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
/**
|
|
|
* 退出登录
|
|
|
*/
|