增加用户信息页面
parent
ae4600bb94
commit
cdf75c92c3
@ -0,0 +1,27 @@
|
|||||||
|
import { Descriptions, Space, Form, Col, Row, Typography, App } from 'antd';
|
||||||
|
import { useStore } from '@/stores/StoreContext.js';
|
||||||
|
|
||||||
|
const { Title } = Typography;
|
||||||
|
|
||||||
|
function Profile() {
|
||||||
|
|
||||||
|
const { authStore } = useStore();
|
||||||
|
const { notification } = App.useApp();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Row>
|
||||||
|
<Col span={12} offset={6}>
|
||||||
|
<Descriptions title="User Profile" layout="vertical" column={2}>
|
||||||
|
<Descriptions.Item label="Username">Bruce Li</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="Telephone">Tel:029-85360679 Mobile:13991970308/13310981198</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="Email">lizhi@citsxa.com</Descriptions.Item>
|
||||||
|
<Descriptions.Item label="Company" span={2}>
|
||||||
|
XIAN CITS
|
||||||
|
</Descriptions.Item>
|
||||||
|
</Descriptions>
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Profile;
|
Loading…
Reference in New Issue