| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <template>
- <FlexCol :padding="[40,30,50,30]">
- <Touchable
- direction="column"
- justify="center"
- align="center"
- touchable
- :gap="25"
- @click="goUserProfile"
- >
- <Image
- :src="userInfo?.avatar || UserHead"
- mode="aspectFill"
- class="avatar"
- width="100rpx"
- height="100rpx"
- round
- />
- <H4>{{ userInfo?.nickname || '请登录' }}</H4>
- <H4>{{ userInfo?.mobile }}</H4>
- </Touchable>
- <Height :height="50" />
- <CellGroup round>
- <Cell icon="/static/images/user/icon-edit.png" title="我的投稿" showArrow touchable @click="$emit('goSubmit')" />
- <Cell icon="/static/images/user/icon-profile.png" title="编辑资料" showArrow touchable @click="goUserProfile" />
- <Cell icon="/static/images/user/icon-function.png" title="关于我们" showArrow touchable />
- <Cell icon="/static/images/user/icon-chat.png" title="商务合作" showArrow touchable />
- <Cell v-if="userInfo" icon="/static/images/user/icon-quit.png" title="退出登录" showArrow touchable @click="doLogout" />
- </CellGroup>
- </FlexCol>
- </template>
- <script setup lang="ts">
- import { useAuthStore } from '@/store/auth';
- import { computed } from 'vue';
- import UserHead from '@/static/images/user/avatar.png';
- import CellGroup from '@/components/basic/CellGroup.vue';
- import Cell from '@/components/basic/Cell.vue';
- import FlexRow from '@/components/layout/FlexRow.vue';
- import Image from '@/components/basic/Image.vue';
- import Icon from '@/components/basic/Icon.vue';
- import H4 from '@/components/typography/H4.vue';
- import Width from '@/components/layout/space/Width.vue';
- import Height from '@/components/layout/space/Height.vue';
- import { confirm } from '@/components/utils/DialogAction';
- import { navTo } from '@/components/utils/PageAction';
- import Touchable from '@/components/feedback/Touchable.vue';
- import FlexCol from '@/components/layout/FlexCol.vue';
- const authStore = useAuthStore();
- const userInfo = computed(() => authStore.userInfo);
- function goUserProfile() {
- userInfo.value ? navTo('/pages/user/update/profile') : navTo('/pages/user/login');
- }
- function doLogout() {
- confirm({
- content: '您确定要退出登录吗?',
- }).then((res) => {
- if (res)
- authStore.logout();
- });
- }
- </script>
|