feat: first commit
This commit is contained in:
40
src/fragments/user/anchor/index.tsx
Normal file
40
src/fragments/user/anchor/index.tsx
Normal file
@ -0,0 +1,40 @@
|
||||
import { Image } from '@tarojs/components';
|
||||
|
||||
import { Cell } from '@taroify/core';
|
||||
import { useCallback } from 'react';
|
||||
|
||||
import MaterialCard from '@/components/material-card';
|
||||
import WechatCell from '@/components/wx-cell';
|
||||
import { RoleType, PageUrl } from '@/constants/app';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { navigateTo } from '@/utils/route';
|
||||
|
||||
import './index.less';
|
||||
|
||||
const PREFIX = 'user-fragment-anchor';
|
||||
|
||||
export default function AnchorFragment() {
|
||||
const handleClickMyDeclaration = useCallback(() => navigateTo(PageUrl.MyDeclaration), []);
|
||||
|
||||
const handleClickSwitch = useCallback(() => switchRoleType(RoleType.Company), []);
|
||||
|
||||
return (
|
||||
<div className={PREFIX}>
|
||||
<MaterialCard />
|
||||
<WechatCell className={`${PREFIX}__cell`} />
|
||||
<Cell
|
||||
isLink
|
||||
align="center"
|
||||
title="我联系的通告"
|
||||
className={`${PREFIX}__cell`}
|
||||
onClick={handleClickMyDeclaration}
|
||||
/>
|
||||
<Image
|
||||
mode="widthFix"
|
||||
className={`${PREFIX}__switch-to-company`}
|
||||
src="https://neighbourhood.cn/zhao_zhubo_1.png"
|
||||
onClick={handleClickSwitch}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user