123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <div class="me-container">
- <div class="user-info" @click="showUserInfo">
- <image class="portrait" :src="user.portrait"></image>
- <text class="name">{{ user.displayName }}</text>
- <i></i>
- </div>
- <div class="about" @click="showAbout">
- <text>关于</text>
- <i></i>
- </div>
- <div class="about" @click="showApiTest">
- <text>API测试</text>
- <i></i>
- </div>
- <div class="about" @click="showConferencePortal">
- <text>打开会议入口</text>
- <i></i>
- </div>
- <button class="logout-button" @click="logout">退出登录</button>
- </div>
- </template>
- <script>
- import wfc from "../../wfc/client/wfc";
- import wfcUIKit from "../../wfc/uikit/wfcUIKit";
- import {clear} from "../util/storageHelper";
- import store from "../../store";
- export default {
- name: "MePage",
- data() {
- return {
- user: store.state.contact.selfUserInfo,
- }
- },
- methods: {
- showUserInfo() {
- store.setCurrentFriend(this.user)
- uni.navigateTo({
- url: '/pages/contact/UserDetailPage',
- success: () => {
- console.log('nav to UserDetailPage success');
- },
- fail: (err) => {
- console.log('nav to UserDetailPage err', err);
- }
- })
- },
- logout() {
- wfc.disconnect();
- clear();
- uni.reLaunch(
- {
- url:'/pages/login/login'
- }
- );
- },
- showAbout() {
- uni.navigateTo({
- url: '/pages/misc/WebViewPage?url=https://wildfirechat.cn/',
- fail: (e) => {
- console.log(e)
- }
- });
- },
- showApiTest(){
- uni.navigateTo({
- url: '/pages/misc/ApiTestPage',
- fail: (e) => {
- console.log(e)
- }
- });
- },
- showConferencePortal(){
- if (wfcUIKit.isSupportConference()){
- wfcUIKit.showConferencePortal();
- } else {
- uni.showToast({
- title: '当前插件,只支持音视频通话,不支持会议功能,请联系开发者',
- icon: 'none',
- });
- }
- }
- }
- }
- </script>
- <style scoped>
- .me-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- height: 100vh;
- background: #fafafa;
- }
- .user-info {
- width: 100%;
- padding: 10px;
- height: 80px;
- display: flex;
- background: white;
- align-items: center;
- flex-direction: row;
- margin-bottom: 10px;
- }
- .user-info:active {
- background: #d6d6d6;
- }
- .user-info .portrait {
- width: 60px;
- height: 60px;
- border-radius: 5px;
- }
- .user-info .name {
- margin-left: 10px;
- }
- .about {
- width: 100%;
- padding: 15px 10px;
- background: white;
- }
- .about:active {
- background: #d6d6d6;
- }
- .logout-button {
- margin-top: 20px;
- }
- </style>
|