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 { Component, ReactNode } from 'react';
|
||||
import { View, Picker } from '@tarojs/components';
|
||||
import { View, Picker, Image, Text } from '@tarojs/components';
|
||||
import Taro from '@tarojs/taro';
|
||||
import type CustomTabBar from '@/custom-tab-bar';
|
||||
import PageFooter from '@/components/PageFooter/PageFooter';
|
||||
import aboutIcon from '@/assets/icons/AboutPage/about.svg';
|
||||
import pt, { Lang } from '@/plain-text';
|
||||
import logo from '@/assets/images/UserPage/logo.png';
|
||||
import './user.scss';
|
||||
|
||||
export default class UserPage extends Component {
|
||||
|
|
@ -67,6 +68,18 @@ export default class UserPage extends Component {
|
|||
render(): ReactNode {
|
||||
return (
|
||||
<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>
|
||||
<AtListItem
|
||||
title={pt.get().userPage.ticketColumn.title}
|
||||
|
|
|
|||
Loading…
Reference in New Issue