|
@@ -5,21 +5,13 @@
|
|
|
:class="['TUI-profile-basic', !isPC && 'TUI-profile-h5-basic']"
|
|
|
>
|
|
|
<img
|
|
|
- :class="[
|
|
|
- 'TUI-profile-basic-avatar',
|
|
|
- !isPC && 'TUI-profile-h5-basic-avatar',
|
|
|
- ]"
|
|
|
+ :class="['TUI-profile-basic-avatar', !isPC && 'TUI-profile-h5-basic-avatar']"
|
|
|
:src="
|
|
|
userProfile.avatar ||
|
|
|
- 'https://web.sdk.qcloud.com/component/TUIKit/assets/avatar_21.png'
|
|
|
+ 'https://bucket.sxdirectpurchase.com/wx/static/img/ImAvatar.png'
|
|
|
"
|
|
|
- >
|
|
|
- <div
|
|
|
- :class="[
|
|
|
- 'TUI-profile-basic-info',
|
|
|
- !isPC && 'TUI-profile-h5-basic-info',
|
|
|
- ]"
|
|
|
- >
|
|
|
+ />
|
|
|
+ <div :class="['TUI-profile-basic-info', !isPC && 'TUI-profile-h5-basic-info']">
|
|
|
<div
|
|
|
:class="[
|
|
|
'TUI-profile-basic-info-nick',
|
|
@@ -29,17 +21,15 @@
|
|
|
{{ userProfile.nick || "-" }}
|
|
|
</div>
|
|
|
<div
|
|
|
- :class="[
|
|
|
- 'TUI-profile-basic-info-id',
|
|
|
- !isPC && 'TUI-profile-h5-basic-info-id',
|
|
|
- ]"
|
|
|
+ :class="['TUI-profile-basic-info-id', !isPC && 'TUI-profile-h5-basic-info-id']"
|
|
|
>
|
|
|
<label
|
|
|
:class="[
|
|
|
'TUI-profile-basic-info-id-label',
|
|
|
!isPC && 'TUI-profile-h5-basic-info-id-label',
|
|
|
]"
|
|
|
- >{{ "用户ID" }}:</label>
|
|
|
+ >{{ "用户ID" }}:</label
|
|
|
+ >
|
|
|
<div
|
|
|
:class="[
|
|
|
'TUI-profile-basic-info-id-value',
|
|
@@ -77,9 +67,7 @@
|
|
|
{{ item.label }}
|
|
|
</div>
|
|
|
<div
|
|
|
- v-if="
|
|
|
- item.children && !isPC && item.childrenShowType === 'switch'
|
|
|
- "
|
|
|
+ v-if="item.children && !isPC && item.childrenShowType === 'switch'"
|
|
|
:class="['label-desc']"
|
|
|
>
|
|
|
{{ item.value }}
|
|
@@ -89,9 +77,9 @@
|
|
|
<div
|
|
|
v-if="
|
|
|
!isPC &&
|
|
|
- item.children &&
|
|
|
- item.selectedChild &&
|
|
|
- item.childrenShowType === 'bottomPopup'
|
|
|
+ item.children &&
|
|
|
+ item.selectedChild &&
|
|
|
+ item.childrenShowType === 'bottomPopup'
|
|
|
"
|
|
|
:class="[
|
|
|
'TUI-profile-setting-item-label-value',
|
|
@@ -111,9 +99,7 @@
|
|
|
</div>
|
|
|
<!-- 移动端 children显示,分多个类型 -->
|
|
|
<BottomPopup
|
|
|
- v-if="
|
|
|
- item.children && !isPC && item.childrenShowType === 'bottomPopup'
|
|
|
- "
|
|
|
+ v-if="item.children && !isPC && item.childrenShowType === 'bottomPopup'"
|
|
|
:show="item.showChildren"
|
|
|
@onClose="bottomPopupOnClose(item)"
|
|
|
>
|
|
@@ -138,24 +124,24 @@ import TUIChatEngine, {
|
|
|
TUIStore,
|
|
|
StoreName,
|
|
|
TUIChatService,
|
|
|
-} from '@tencentcloud/chat-uikit-engine';
|
|
|
-import { TUILogin } from '@tencentcloud/tui-core';
|
|
|
-import { TUIGlobal } from '@tencentcloud/universal-api';
|
|
|
-import { ref, defineProps, onMounted } from '../../TUIKit/adapter-vue';
|
|
|
-import { isPC } from '../../TUIKit/utils/env';
|
|
|
-import { Toast, TOAST_TYPE } from '../../TUIKit/components/common/Toast/index';
|
|
|
-import BottomPopup from '../../TUIKit/components/common/BottomPopup/index.vue';
|
|
|
-import Icon from '../../TUIKit/components/common/Icon.vue';
|
|
|
-import rightArrowIcon from '../../TUIKit/assets/icon/right-icon.svg';
|
|
|
-import { IUserProfile } from '../../TUIKit/interface';
|
|
|
-import { onHide } from '@dcloudio/uni-app';
|
|
|
-import { translator } from '../../TUIKit/components/TUIChat/utils/translation';
|
|
|
-import { removeTokenStorage } from '../../utils/token';
|
|
|
+} from "@tencentcloud/chat-uikit-engine";
|
|
|
+import { TUILogin } from "@tencentcloud/tui-core";
|
|
|
+import { TUIGlobal } from "@tencentcloud/universal-api";
|
|
|
+import { ref, defineProps, onMounted } from "../../TUIKit/adapter-vue";
|
|
|
+import { isPC } from "../../TUIKit/utils/env";
|
|
|
+import { Toast, TOAST_TYPE } from "../../TUIKit/components/common/Toast/index";
|
|
|
+import BottomPopup from "../../TUIKit/components/common/BottomPopup/index.vue";
|
|
|
+import Icon from "../../TUIKit/components/common/Icon.vue";
|
|
|
+import rightArrowIcon from "../../TUIKit/assets/icon/right-icon.svg";
|
|
|
+import { IUserProfile } from "../../TUIKit/interface";
|
|
|
+import { onHide } from "@dcloudio/uni-app";
|
|
|
+import { translator } from "../../TUIKit/components/TUIChat/utils/translation";
|
|
|
+import { removeTokenStorage } from "../../utils/token";
|
|
|
|
|
|
const props = defineProps({
|
|
|
displayType: {
|
|
|
type: String,
|
|
|
- default: 'all', // "profile"/"setting"/"all"
|
|
|
+ default: "all", // "profile"/"setting"/"all"
|
|
|
},
|
|
|
showSetting: {
|
|
|
type: Boolean,
|
|
@@ -184,17 +170,17 @@ const settingList = ref<{
|
|
|
};
|
|
|
}>({
|
|
|
editProfile: {
|
|
|
- value: 'editProfile',
|
|
|
- label: '编辑资料(暂未开放)',
|
|
|
+ value: "editProfile",
|
|
|
+ label: "编辑资料(暂未开放)",
|
|
|
onClick: (item: any) => {
|
|
|
- console.warn('编辑资料功能努力开发中,敬请期待');
|
|
|
+ console.warn("编辑资料功能努力开发中,敬请期待");
|
|
|
},
|
|
|
},
|
|
|
allowType: {
|
|
|
- value: 'allowType',
|
|
|
- label: '加我为好友时',
|
|
|
- selectedChild: '',
|
|
|
- childrenShowType: 'bottomPopup',
|
|
|
+ value: "allowType",
|
|
|
+ label: "加我为好友时",
|
|
|
+ selectedChild: "",
|
|
|
+ childrenShowType: "bottomPopup",
|
|
|
showChildren: false,
|
|
|
onClick: (item: any) => {
|
|
|
if (!isPC) {
|
|
@@ -204,21 +190,21 @@ const settingList = ref<{
|
|
|
children: {
|
|
|
[TUIChatEngine.TYPES.ALLOW_TYPE_ALLOW_ANY]: {
|
|
|
value: TUIChatEngine.TYPES.ALLOW_TYPE_ALLOW_ANY,
|
|
|
- label: '同意任何用户加好友',
|
|
|
+ label: "同意任何用户加好友",
|
|
|
onClick: (item: any) => {
|
|
|
updateMyProfile({ allowType: item.value });
|
|
|
},
|
|
|
},
|
|
|
[TUIChatEngine.TYPES.ALLOW_TYPE_NEED_CONFIRM]: {
|
|
|
value: TUIChatEngine.TYPES.ALLOW_TYPE_NEED_CONFIRM,
|
|
|
- label: '需要验证',
|
|
|
+ label: "需要验证",
|
|
|
onClick: (item: any) => {
|
|
|
updateMyProfile({ allowType: item.value });
|
|
|
},
|
|
|
},
|
|
|
[TUIChatEngine.TYPES.ALLOW_TYPE_DENY_ANY]: {
|
|
|
value: TUIChatEngine.TYPES.ALLOW_TYPE_DENY_ANY,
|
|
|
- label: '拒绝任何人加好友',
|
|
|
+ label: "拒绝任何人加好友",
|
|
|
onClick: (item: any) => {
|
|
|
updateMyProfile({ allowType: item.value });
|
|
|
},
|
|
@@ -226,10 +212,10 @@ const settingList = ref<{
|
|
|
},
|
|
|
},
|
|
|
displayMessageReadReceipt: {
|
|
|
- value: 'displayMessageReadReceipt',
|
|
|
- label: '消息阅读状态',
|
|
|
- selectedChild: 'userLevelReadReceiptOpen',
|
|
|
- childrenShowType: 'bottomPopup',
|
|
|
+ value: "displayMessageReadReceipt",
|
|
|
+ label: "消息阅读状态",
|
|
|
+ selectedChild: "userLevelReadReceiptOpen",
|
|
|
+ childrenShowType: "bottomPopup",
|
|
|
showChildren: false,
|
|
|
onClick(item: any) {
|
|
|
if (!isPC) {
|
|
@@ -238,15 +224,15 @@ const settingList = ref<{
|
|
|
},
|
|
|
children: {
|
|
|
userLevelReadReceiptOpen: {
|
|
|
- value: 'userLevelReadReceiptOpen',
|
|
|
- label: '开启',
|
|
|
+ value: "userLevelReadReceiptOpen",
|
|
|
+ label: "开启",
|
|
|
onClick() {
|
|
|
switchEnabelUserLevelReadRecript(true);
|
|
|
},
|
|
|
},
|
|
|
userLevelReadReceiptClose: {
|
|
|
- value: 'userLevelReadReceiptClose',
|
|
|
- label: '关闭',
|
|
|
+ value: "userLevelReadReceiptClose",
|
|
|
+ label: "关闭",
|
|
|
onClick() {
|
|
|
switchEnabelUserLevelReadRecript(false);
|
|
|
},
|
|
@@ -254,10 +240,10 @@ const settingList = ref<{
|
|
|
},
|
|
|
},
|
|
|
displayOnlineStatus: {
|
|
|
- value: 'displayOnlineStatus',
|
|
|
- label: '显示在线状态',
|
|
|
- selectedChild: 'userLevelOnlineStatusOpen',
|
|
|
- childrenShowType: 'bottomPopup',
|
|
|
+ value: "displayOnlineStatus",
|
|
|
+ label: "显示在线状态",
|
|
|
+ selectedChild: "userLevelOnlineStatusOpen",
|
|
|
+ childrenShowType: "bottomPopup",
|
|
|
showChildren: false,
|
|
|
onClick(item: any) {
|
|
|
if (!isPC) {
|
|
@@ -266,15 +252,15 @@ const settingList = ref<{
|
|
|
},
|
|
|
children: {
|
|
|
userLevelOnlineStatusOpen: {
|
|
|
- value: 'userLevelOnlineStatusOpen',
|
|
|
- label: '开启',
|
|
|
+ value: "userLevelOnlineStatusOpen",
|
|
|
+ label: "开启",
|
|
|
onClick() {
|
|
|
switchUserLevelOnlineStatus(true);
|
|
|
},
|
|
|
},
|
|
|
userLevelOnlineStatusClose: {
|
|
|
- value: 'userLevelOnlineStatusClose',
|
|
|
- label: '关闭',
|
|
|
+ value: "userLevelOnlineStatusClose",
|
|
|
+ label: "关闭",
|
|
|
onClick() {
|
|
|
switchUserLevelOnlineStatus(false);
|
|
|
},
|
|
@@ -282,10 +268,10 @@ const settingList = ref<{
|
|
|
},
|
|
|
},
|
|
|
translateLanguage: {
|
|
|
- value: 'translateLanguage',
|
|
|
- label: '翻译语言',
|
|
|
- selectedChild: 'zh',
|
|
|
- childrenShowType: 'bottomPopup',
|
|
|
+ value: "translateLanguage",
|
|
|
+ label: "翻译语言",
|
|
|
+ selectedChild: "zh",
|
|
|
+ childrenShowType: "bottomPopup",
|
|
|
showChildren: false,
|
|
|
onClick(item: any) {
|
|
|
if (!isPC) {
|
|
@@ -294,46 +280,46 @@ const settingList = ref<{
|
|
|
},
|
|
|
children: {
|
|
|
zh: {
|
|
|
- value: 'zh',
|
|
|
- label: '中文',
|
|
|
+ value: "zh",
|
|
|
+ label: "中文",
|
|
|
onClick() {
|
|
|
- switchTranslationTargetLanguage('zh');
|
|
|
+ switchTranslationTargetLanguage("zh");
|
|
|
},
|
|
|
},
|
|
|
en: {
|
|
|
- value: 'en',
|
|
|
- label: 'English',
|
|
|
+ value: "en",
|
|
|
+ label: "English",
|
|
|
onClick() {
|
|
|
- switchTranslationTargetLanguage('en');
|
|
|
+ switchTranslationTargetLanguage("en");
|
|
|
},
|
|
|
},
|
|
|
jp: {
|
|
|
- value: 'jp',
|
|
|
- label: '日本語',
|
|
|
+ value: "jp",
|
|
|
+ label: "日本語",
|
|
|
onClick() {
|
|
|
- switchTranslationTargetLanguage('jp');
|
|
|
+ switchTranslationTargetLanguage("jp");
|
|
|
},
|
|
|
},
|
|
|
kr: {
|
|
|
- value: 'kr',
|
|
|
- label: '한국인',
|
|
|
+ value: "kr",
|
|
|
+ label: "한국인",
|
|
|
onClick() {
|
|
|
- switchTranslationTargetLanguage('kr');
|
|
|
+ switchTranslationTargetLanguage("kr");
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
},
|
|
|
exit: {
|
|
|
- value: 'exit',
|
|
|
- label: '退出登录',
|
|
|
+ value: "exit",
|
|
|
+ label: "退出登录",
|
|
|
onClick: (item: any) => {
|
|
|
TUILogin.logout().then(() => {
|
|
|
uni.removeStorage({
|
|
|
- key: 'userInfo',
|
|
|
+ key: "userInfo",
|
|
|
});
|
|
|
removeTokenStorage();
|
|
|
TUIGlobal?.reLaunch({
|
|
|
- url: '/pages/views/login',
|
|
|
+ url: "/pages/views/login",
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -341,7 +327,7 @@ const settingList = ref<{
|
|
|
});
|
|
|
|
|
|
const handleSettingListItemOnClick = (item: any) => {
|
|
|
- if (item?.onClick && typeof item?.onClick === 'function') {
|
|
|
+ if (item?.onClick && typeof item?.onClick === "function") {
|
|
|
item.onClick(item);
|
|
|
}
|
|
|
};
|
|
@@ -358,18 +344,18 @@ const updateMyProfile = (props: object) => {
|
|
|
TUIUserService.updateMyProfile(props)
|
|
|
.then((res: any) => {
|
|
|
Toast({
|
|
|
- message: '更新用户资料成功',
|
|
|
+ message: "更新用户资料成功",
|
|
|
type: TOAST_TYPE.SUCCESS,
|
|
|
duration: 0,
|
|
|
});
|
|
|
- if ('allowType' in props) {
|
|
|
- settingList.value['allowType'].showChildren = false;
|
|
|
+ if ("allowType" in props) {
|
|
|
+ settingList.value["allowType"].showChildren = false;
|
|
|
}
|
|
|
})
|
|
|
.catch((err: any) => {
|
|
|
- console.warn('更新用户资料失败', err);
|
|
|
+ console.warn("更新用户资料失败", err);
|
|
|
Toast({
|
|
|
- message: '更新用户资料失败',
|
|
|
+ message: "更新用户资料失败",
|
|
|
type: TOAST_TYPE.ERROR,
|
|
|
duration: 0,
|
|
|
});
|
|
@@ -384,13 +370,14 @@ TUIStore.watch(StoreName.USER, {
|
|
|
}
|
|
|
},
|
|
|
displayMessageReadReceipt(isDisplay: boolean) {
|
|
|
- settingList.value.displayMessageReadReceipt.selectedChild
|
|
|
- = isDisplay ? 'userLevelReadReceiptOpen' : 'userLevelReadReceiptClose';
|
|
|
+ settingList.value.displayMessageReadReceipt.selectedChild = isDisplay
|
|
|
+ ? "userLevelReadReceiptOpen"
|
|
|
+ : "userLevelReadReceiptClose";
|
|
|
},
|
|
|
displayOnlineStatus(isOnlineStatusDisplay: boolean) {
|
|
|
settingList.value.displayOnlineStatus.selectedChild = isOnlineStatusDisplay
|
|
|
- ? 'userLevelOnlineStatusOpen'
|
|
|
- : 'userLevelOnlineStatusClose';
|
|
|
+ ? "userLevelOnlineStatusOpen"
|
|
|
+ : "userLevelOnlineStatusClose";
|
|
|
},
|
|
|
});
|
|
|
|
|
@@ -405,20 +392,20 @@ onMounted(() => {
|
|
|
// tabbar 切换其他tab,关闭profile已经打开的设置弹窗
|
|
|
onHide(() => {
|
|
|
for (const settingItemKey in settingList.value) {
|
|
|
- if (settingList?.value[settingItemKey]?.hasOwnProperty('showChildren')) {
|
|
|
+ if (settingList?.value[settingItemKey]?.hasOwnProperty("showChildren")) {
|
|
|
settingList.value[settingItemKey].showChildren = false;
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
|
|
|
function switchEnabelUserLevelReadRecript(status: boolean) {
|
|
|
- TUIStore.update(StoreName.USER, 'displayMessageReadReceipt', status);
|
|
|
- settingList.value['displayMessageReadReceipt'].showChildren = false;
|
|
|
+ TUIStore.update(StoreName.USER, "displayMessageReadReceipt", status);
|
|
|
+ settingList.value["displayMessageReadReceipt"].showChildren = false;
|
|
|
}
|
|
|
|
|
|
function switchUserLevelOnlineStatus(status: boolean) {
|
|
|
TUIUserService.switchUserStatus({ displayOnlineStatus: status });
|
|
|
- settingList.value['displayOnlineStatus'].showChildren = false;
|
|
|
+ settingList.value["displayOnlineStatus"].showChildren = false;
|
|
|
}
|
|
|
|
|
|
function switchTranslationTargetLanguage(lang: string) {
|