add logo & version in user page
parent
dd07c1da10
commit
b603ad24b3
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
|
|
@ -1,11 +1,12 @@
|
||||||
import { AtList, AtListItem } from 'taro-ui';
|
import { AtList, AtListItem } from 'taro-ui';
|
||||||
import { Component, ReactNode } from 'react';
|
import { Component, ReactNode } from 'react';
|
||||||
import { View, Picker } from '@tarojs/components';
|
import { View, Picker, Image, Text } from '@tarojs/components';
|
||||||
import Taro from '@tarojs/taro';
|
import Taro from '@tarojs/taro';
|
||||||
import type CustomTabBar from '@/custom-tab-bar';
|
import type CustomTabBar from '@/custom-tab-bar';
|
||||||
import PageFooter from '@/components/PageFooter/PageFooter';
|
import PageFooter from '@/components/PageFooter/PageFooter';
|
||||||
import aboutIcon from '@/assets/icons/AboutPage/about.svg';
|
import aboutIcon from '@/assets/icons/AboutPage/about.svg';
|
||||||
import pt, { Lang } from '@/plain-text';
|
import pt, { Lang } from '@/plain-text';
|
||||||
|
import logo from '@/assets/images/UserPage/logo.png';
|
||||||
import './user.scss';
|
import './user.scss';
|
||||||
|
|
||||||
export default class UserPage extends Component {
|
export default class UserPage extends Component {
|
||||||
|
|
@ -67,6 +68,18 @@ export default class UserPage extends Component {
|
||||||
render(): ReactNode {
|
render(): ReactNode {
|
||||||
return (
|
return (
|
||||||
<View>
|
<View>
|
||||||
|
<View
|
||||||
|
className='at-row at-row__justify--center at-row__align--end'
|
||||||
|
style='height:110px;'
|
||||||
|
>
|
||||||
|
<Image style='width: 100px;height: 100px;' src={logo} />
|
||||||
|
</View>
|
||||||
|
<View
|
||||||
|
className='at-row at-row__justify--center at-row__align--center'
|
||||||
|
style='height:60px;color:#696969;'
|
||||||
|
>
|
||||||
|
<Text> EVA Notify v0.0.1</Text>
|
||||||
|
</View>
|
||||||
<AtList>
|
<AtList>
|
||||||
<AtListItem
|
<AtListItem
|
||||||
title={pt.get().userPage.ticketColumn.title}
|
title={pt.get().userPage.ticketColumn.title}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue