|
@@ -2,8 +2,8 @@ import React, { useEffect, useState } from 'react'
|
|
|
import useRequest from '@ahooksjs/use-request/es'
|
|
|
import { useLocation, useHistory } from 'react-router-dom'
|
|
|
|
|
|
-import { Modal, Input, message, Tooltip, Radio, RadioChangeEvent, Space } from 'antd'
|
|
|
-import TipsSvg from 'assets/tips.svg'
|
|
|
+import { Modal, Input, message, Tooltip, Radio, RadioChangeEvent } from 'antd'
|
|
|
+// import TipsSvg from 'assets/tips.svg'
|
|
|
|
|
|
import {
|
|
|
ActivityService,
|
|
@@ -25,8 +25,6 @@ import Picture from './Picture'
|
|
|
import { MaterialService } from 'Material/Material.service'
|
|
|
import { INewestItem } from 'Newest/Newest.service'
|
|
|
import { IMyActivityItem } from 'Personal/Personal.service'
|
|
|
-import YiDongModel from './YiDongModel'
|
|
|
-import PayProcessModel from 'Material/components/PayProcessModel'
|
|
|
import styles from '../css/ActivityCard.module.scss'
|
|
|
|
|
|
export enum IActivityBtnType {
|
|
@@ -67,9 +65,18 @@ export interface IActivityBtnComponent {
|
|
|
btnClass?: 'act-btn-sm' | 'research-btn-sm' // 按钮的自定义样式
|
|
|
btnGrous?: 'smcard' | 'detail' | 'bigcard' // smcard-如首页的小卡片,detail-如活动详情页,bigcard-如列表的大卡片
|
|
|
onChangeSomething?: (activityId?: number) => void // 子组件变更后的操作
|
|
|
+ onNeedToDoSome?: () => void // 父组件的操作
|
|
|
}
|
|
|
const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
- const { item, isSpecial = false, selfChange = false, btnClass, btnGrous = 'smcard', onChangeSomething } = props
|
|
|
+ const {
|
|
|
+ item,
|
|
|
+ isSpecial = false,
|
|
|
+ selfChange = false,
|
|
|
+ btnClass,
|
|
|
+ btnGrous = 'smcard',
|
|
|
+ onChangeSomething,
|
|
|
+ onNeedToDoSome
|
|
|
+ } = props
|
|
|
|
|
|
const [visible, setVisible] = useState(false)
|
|
|
const [callVisible, setCallVisible] = useState(false) // 报名方式选择的弹框
|
|
@@ -83,9 +90,7 @@ const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
const [emailVisible, setEmailVisible] = useState<boolean>() // 含有邮箱填写的弹框
|
|
|
const [actionType, setActionType] = useState<IActivityBtnType | IActivitySpecialBtnType>() // 记录点击了哪个按钮操作
|
|
|
const [resourceCountData, setResourceCountData] = useState({ CompanyPoints: '0', ActivityPoints: '0' }) // 记录活动扣点数据
|
|
|
- const [openYidongModel, setOpenYidongModel] = useState(false) // 易懂支付弹框提示
|
|
|
// const [visibleApply, setVisibleApply] = useState(false) // 普通申请权限弹框
|
|
|
- const [visibleBuyCard, setVisibleBuyCard] = useState(false) // 购买畅读卡弹框
|
|
|
|
|
|
const login2p = useLogin2p()
|
|
|
const location = useLocation()
|
|
@@ -354,10 +359,6 @@ const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
|
|
|
return { title: title[type] }
|
|
|
}
|
|
|
- // 关闭易懂支付提示弹框
|
|
|
- const handleCloseYidong = () => {
|
|
|
- setOpenYidongModel(true)
|
|
|
- }
|
|
|
// 权限判断
|
|
|
const handleCheckPower = (HasPermission: INewPermissionType, isResearch: boolean, isResearchSpecial: boolean) => {
|
|
|
// 如果接口没返回权限则跳过
|
|
@@ -365,12 +366,6 @@ const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
|
|
|
// 1.先判断权限,无权限则弹框
|
|
|
if (HasPermission !== INewPermissionType.OK) {
|
|
|
- // 如果是易懂活动,无权限时,弹框
|
|
|
- // todo 缺个字段判断是否进入支付流程
|
|
|
- if (btnGrous !== 'detail' && (item as IActivityTypeListItem)?.IsYidongActivity) {
|
|
|
- setOpenYidongModel(true)
|
|
|
- return false
|
|
|
- }
|
|
|
// 列表的按钮点击,无权限时,需要进入详情页
|
|
|
if (btnGrous !== 'detail') {
|
|
|
isSpecial
|
|
@@ -722,53 +717,58 @@ const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
}
|
|
|
// 3.研选扣点
|
|
|
if (!res.CheckPoints) {
|
|
|
- // todo 如果需要付费
|
|
|
- Modal.warning({
|
|
|
- title: '提示',
|
|
|
- content: (
|
|
|
- <div className="reset-pm">
|
|
|
- <p>
|
|
|
- <span>点数不足,您可以通过单场付费 ¥1299 参与或者联系销售机构充值</span>
|
|
|
- </p>
|
|
|
- <div>
|
|
|
- 当前剩余点数:<span className={styles['link-text']}>{res.CompanyPoints}</span>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- 本次会议扣除点数:<span className={styles['link-text']}>{res.ActivityPoints}</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- ),
|
|
|
- cancelText: '取消',
|
|
|
- okText: '付费报名',
|
|
|
- onOk: () => {
|
|
|
- setVisibleBuyCard(true)
|
|
|
- },
|
|
|
- width: 520,
|
|
|
- centered: true
|
|
|
- })
|
|
|
-
|
|
|
- Modal.warning({
|
|
|
- title: '点数不足',
|
|
|
- content: (
|
|
|
- <div className="reset-pm">
|
|
|
- <p>
|
|
|
- <span>您的研选服务点数不足,若想报名,请联系对口销售升级套餐</span>
|
|
|
- {/* <img src={TipsSvg} alt="icon" className={styles['link-tips-icon']} /> */}
|
|
|
- </p>
|
|
|
- <div>
|
|
|
- 当前剩余点数:<span className={styles['link-text']}>{res.CompanyPoints}</span>
|
|
|
+ // todo 如果需要付费 需要判断一下(需要加字段,是否需要支付,提示文案里的价格需要替换)
|
|
|
+ if (true) {
|
|
|
+ Modal.warning({
|
|
|
+ title: '提示',
|
|
|
+ content: (
|
|
|
+ <div className="reset-pm">
|
|
|
+ <p>
|
|
|
+ <span>点数不足,您可以通过单场付费 ¥1299 参与或者联系销售机构充值</span>
|
|
|
+ </p>
|
|
|
+ <div>
|
|
|
+ 当前剩余点数:<span className={styles['link-text']}>{res.CompanyPoints}</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ 本次会议扣除点数:<span className={styles['link-text']}>{res.ActivityPoints}</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- <div>
|
|
|
- 本次会议扣除点数:<span className={styles['link-text']}>{res.ActivityPoints}</span>
|
|
|
+ ),
|
|
|
+ cancelText: '取消',
|
|
|
+ okText: '付费报名',
|
|
|
+ onOk: () => {
|
|
|
+ onNeedToDoSome && onNeedToDoSome()
|
|
|
+ },
|
|
|
+ width: 520,
|
|
|
+ centered: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ } else {
|
|
|
+ // 常规提示(不需要支付的)
|
|
|
+ Modal.warning({
|
|
|
+ title: '点数不足',
|
|
|
+ content: (
|
|
|
+ <div className="reset-pm">
|
|
|
+ <p>
|
|
|
+ <span>您的研选服务点数不足,若想报名,请联系对口销售升级套餐</span>
|
|
|
+ {/* <img src={TipsSvg} alt="icon" className={styles['link-tips-icon']} /> */}
|
|
|
+ </p>
|
|
|
+ <div>
|
|
|
+ 当前剩余点数:<span className={styles['link-text']}>{res.CompanyPoints}</span>
|
|
|
+ </div>
|
|
|
+ <div>
|
|
|
+ 本次会议扣除点数:<span className={styles['link-text']}>{res.ActivityPoints}</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- ),
|
|
|
- okText: '知道了',
|
|
|
- width: 520,
|
|
|
- centered: true
|
|
|
- })
|
|
|
- return
|
|
|
+ ),
|
|
|
+ okText: '知道了',
|
|
|
+ width: 520,
|
|
|
+ centered: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
setResourceCountData({ CompanyPoints: res.CompanyPoints, ActivityPoints: res.ActivityPoints })
|
|
|
// 4.邮箱绑定
|
|
|
if (!res.CheckEmail) {
|
|
@@ -886,14 +886,6 @@ const ActivityBtnComponent: React.FC<IActivityBtnComponent> = props => {
|
|
|
onCloseModel={handleOKApply}
|
|
|
/>
|
|
|
<Picture visible={!!bigImg} imgSrc={bigImg} onClose={handleToCloseBigImg} />
|
|
|
- {/* <YiDongModel visible={openYidongModel} handleClose={handleCloseYidong} /> */}
|
|
|
- {/* <PayProcessModel
|
|
|
- dataInfo={dataInfo}
|
|
|
- tryType={ITryType.Activity}
|
|
|
- open={visibleBuyCard}
|
|
|
- // applyTrial={visibleApply}
|
|
|
- // onRefresh={onRefresh}
|
|
|
- /> */}
|
|
|
{isSpecial ? (
|
|
|
<>
|
|
|
<NButton
|