import React, { useEffect, useState } from 'react' import { Link, useHistory, useLocation } from 'react-router-dom' import useRequest from '@ahooksjs/use-request' import { Avatar, Button, Col, Row, message } from 'antd' import QrcodeIcon from 'assets/qrcode-icon.svg' import AppletImg from 'assets/applet.png' import OfficialImg from 'assets/official.png' import VipDay from 'assets/vipday.png' import VipMonth from 'assets/vipmonth.png' // import LogoImg from 'assets/logo.png' import MySetPassword from 'SetPassword/mySet.password' import ModifyPassword from 'SetPassword/modify.password' import { useLogin2p } from './Login2p/Login2pContext' import { useMedia } from 'Context/Media/MediaContext' import ApplyPermission from 'Material/components/ApplyPermission' import HeadSearch from 'Search/components/HeadSearch' import { INewPermissionType, ITryType } from 'Material/components/NoPermission' import { MaterialService } from 'Material/Material.service' import styles from './styles/NewPage.module.scss' // 凡是vmp.tsx中Route的key={'new'},都来一套 const urlList = [ { path: '/column', key: 'community' }, { path: '/community', key: 'community' }, { path: '/activity', key: 'activity' }, { path: '/indepth', key: 'indepth' }, { path: '/material', key: 'material' }, { path: '/my', key: 'newest' }, { path: '/search', key: 'newest' }, { path: '/', key: 'newest' } ] const NewPage: React.FC = props => { const location = useLocation() const history = useHistory() const media = useMedia() // const personalized = usePersonalized() const login2p = useLogin2p() const [activityKey, setActivityKey] = useState('newest') const [hoverKey, setHoverKey] = useState('newest') const [searchWord, setSearchWord] = useState() const [visibleApply, setVisibleApply] = useState(false) const [visiblePassword, setVisiblePassword] = useState(false) const [visibleModifyPassword, setVisibleModifyPassword] = useState(false) const [isShowMenu, setIsShowMenu] = useState(false) const [isShowMobileMenu, setIsShowMobileMenu] = useState(false) // 识别报告详情页+活动详情页,适配移动菜单 const handleToMy = () => { history.push(`/my${login2p.inviteCode ? '?invite_code=' + login2p.inviteCode : ''}`) } // const headMenu = [ // { key: 'newest', path: '/', label: '最新' }, // { key: 'material', path: '/material', label: '素材库' }, // { key: 'indepth', path: '/indepth', label: '深度研究' }, // { key: 'activity', path: '/activity', label: '活动' }, // { key: 'community', path: '/community', label: '研选社区' } // ] const { run: applyTry } = useRequest(MaterialService.postApplyTry, { manual: true, onSuccess: res => { res.data.Success ? message.success('已提交给您的对口销售,请耐心等待。') : message.info(res.data.Msg || res.data.ErrMsg) } }) useEffect(() => { handleChangeMenuKey(location) history.listen(location => { window.scrollTo(0, 0) handleChangeMenuKey(location) }) // eslint-disable-next-line react-hooks/exhaustive-deps }, []) // eslint-disable-next-line @typescript-eslint/no-explicit-any const handleChangeMenuKey = (location: any) => { if (location.pathname.includes('/search')) { const searchArr = location.pathname.split('/') setSearchWord(searchArr[2]) } else { setSearchWord(undefined) } const findKey = urlList.find(item => location.pathname.includes(item.path))?.key setActivityKey(findKey ? findKey : 'newest') setHoverKey(findKey ? findKey : 'newest') // 识别报告详情页+活动详情页,适配移动菜单 if (media.isSmallMax) { const routhStr = [ '/material/info', '/activity/info', '/activity/detail', '/internal/article', '/column/detail', '/activity/medium/detail' ] let flag = false routhStr.forEach(item => { if (location.pathname.includes(item)) { setIsShowMobileMenu(true) flag = true } }) if (!flag) { setIsShowMobileMenu(false) } } else { setIsShowMobileMenu(false) } } // const handleClickMenu = (item: { key: string; path: string; label: string }) => { // setActivityKey(item.key) // setHoverKey(item.key) // setSearchWord(undefined) // history.push(item.path) // } // const handleMenuOver = (key: string) => { // setHoverKey(key) // } /** 搜索框的事件 */ const handleToDoSearch = (value: string) => { setSearchWord(value) history.push(`/search/${value}${login2p.inviteCode ? '?invite_code=' + login2p.inviteCode : ''}`) } const handleMobileLogout = () => { localStorage.removeItem('token') localStorage.removeItem('smtoken') window.location.reload() } // 提交申请权限 const handleToApplyPower = () => { if (!login2p.jwt) return // HasPermission=2,4,6,已提交过申请的,提示:您已提交过申请,请等待销售与您联系。 if ( login2p.userInfo?.HasPermission === INewPermissionType.HasApplyQY || login2p.userInfo?.HasPermission === INewPermissionType.HasApplyFICC || login2p.userInfo?.HasPermission === INewPermissionType.HasApplyPotential ) { message.info('您已提交过申请,请等待销售与您联系。') return } // HasPermission=3,5,不弹表单,直接提交申请 if ( login2p.userInfo?.HasPermission === INewPermissionType.NoApplyQY || login2p.userInfo?.HasPermission === INewPermissionType.NoApplyFICC ) { applyTry({ ApplyMethod: 1 }) return } // HasPermission=7,弹表单填写,提交申请 setVisibleApply(true) } const handleOKApply = () => { setVisibleApply(false) } // 设置修改密码 const handlePassword = () => { // eslint-disable-next-line @typescript-eslint/no-unused-expressions login2p.userInfo?.IsSetPassword ? setVisibleModifyPassword(true) : setVisiblePassword(true) } return (
{isShowMobileMenu ? (
logo {login2p.jwt ? ( 头像 setIsShowMenu(!isShowMenu)} /> ) : ( )} {/* setIsShowMenu(!isShowMenu)} /> */}
{isShowMenu ? (
{/*
{login2p.jwt ? ( <>
setIsOpen(!isOpen)}>
头像
{login2p.userInfo?.UserName || auth.userInfo?.name}
{isOpen ? : }
{isOpen ? (
{login2p.userInfo?.Mobile || auth.userInfo?.phone_number}
{login2p.userInfo?.CompanyName || '弘则研究'}
{login2p.userInfo?.PermissionName?.map((item, index) => (
{item}
))}
) : null} ) : null} {headMenu.map(item => (
{item.label}
))}
个人中心
*/} {login2p.jwt ? (
{login2p.userInfo?.Mobile}
退出
) : null} {/* (
) */}
) : null}
) : ( logo {/* 查研观向 */} {/*
setHoverKey(activityKey)}> {headMenu.map(item => (
{item.label}
))}
*/} {/* */}
图片
二维码
手机扫码
体验微信小程序功能
二维码
关注【买方研选】公众号 及时获取报告和活动通知
{login2p.jwt ? (
头像
{login2p.userInfo?.UserName || '--'}
{login2p.userInfo?.Mobile}
{login2p.userInfo?.CompanyName || '--'}
{login2p.userInfo?.HasPermission === INewPermissionType.OK ? (
{login2p.userInfo?.PermissionStatus && (
{login2p.userInfo?.PermissionStatus}
)}
{login2p.userInfo?.StartDate && login2p.userInfo?.EndDate && (
{login2p.userInfo?.StartDate}~{login2p.userInfo?.EndDate}
)} {login2p.userInfo?.PermissionStatus.includes('试用') ? null : (
剩余研选点数: {login2p.userInfo?.CompanyPointsNum || 0}
)}
) : (
暂无权限,可点击
申请
)}
{login2p.userInfo?.UserCardType !== 0 ? (
{login2p.userInfo?.UserCardType === 1 ? ( vip ) : ( vip )} 有效期至{login2p.userInfo?.UserCardEndDate}
) : null} {/*
{login2p.userInfo?.PermissionName?.map((item, index) => (
{item}
))}
*/}
个人中心
{login2p.userInfo && login2p.userInfo.IsAuthor && (
{login2p.userInfo?.IsSetPassword ? '修改登录密码' : '设置登录密码'}
)}
退出
) : ( )} )} { setVisiblePassword(false) }} /> { setVisibleModifyPassword(false) }} />
) } export default NewPage