|
@@ -15,6 +15,7 @@ import AskAdd from './components/AskAdd'
|
|
|
import { IArcticleInfo, MaterialService } from './Material.service'
|
|
|
import useTimeCount from './hooks/useTimeCount'
|
|
|
import { setWxShare } from 'utils/wxConfig'
|
|
|
+import { useMedia } from 'Context/Media/MediaContext'
|
|
|
import styles from './css/MaterialInfo.module.scss'
|
|
|
|
|
|
type IMaterialInfoProps = {
|
|
@@ -29,6 +30,7 @@ const MaterialInfo: React.FC<IMaterialInfoProps> = props => {
|
|
|
const [visibleAsk, setVisibleAsk] = useState(false)
|
|
|
const [specialType, setSpecialType] = useState<ISpecialType>(ISpecialType.NormalArticle)
|
|
|
const login2p = useLogin2p()
|
|
|
+ const media = useMedia()
|
|
|
|
|
|
// 拉取数据
|
|
|
const {
|
|
@@ -122,7 +124,7 @@ const MaterialInfo: React.FC<IMaterialInfoProps> = props => {
|
|
|
<ValidateEmpty loading={infoLoading} data={data}>
|
|
|
{data?.HasPermission && data?.HasPermission !== INewPermissionType.OK ? (
|
|
|
<div className={styles['art-nopower-bg']}>
|
|
|
- {data.IsShowWxPay ? (
|
|
|
+ {data.IsShowWxPay && !media.isSmallMax ? ( // 暂时这么写
|
|
|
<PayNoPermission
|
|
|
dataInfo={data as IArcticleInfo}
|
|
|
tryType={ITryType.Article}
|