singleSuccess.js 9.95 KB
Newer Older
FE committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
import React, { Component } from 'react'
import './index.scss'
import { getParam, http, browser } from "@/utils";
import { Toast } from 'antd-mobile';
import { Link, withRouter } from "react-router-dom";
import { compose } from "redux";
import { connect } from "react-redux";
import { differenceInHours, differenceInMinutes, differenceInSeconds } from "date-fns";


class Single extends Component {
    constructor(props) {
        super(props)
        this.state = {
            // status: 1,
            orderId: '',
            nowPrice: '',
            laterPrice: '',
            hour: '',
            min: '',
            sec: '',
            endTime: '',
            groupOrderId: '',
            payType: '0',  // 1支付宝 0微信
            // singleBox: false,
        }
    }

    componentDidMount() {
wangshuo committed
30

FE committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    }

    componentWillReceiveProps(nextProps, nextContext) {
        // console.log(nextProps);
        // this.setState({
        //     singleBox: nextProps.singleBox
        // })
    }

    // 选择支付方式
    check = (type) => {
        this.setState({
            payType: type
        })
    }

    // 确定购买
    toBuy = () => {
wangshuo committed
49 50
        const videoID = this.props.data.video_id || this.props.data.id;
        http.get(`${API.home}/sys/createClassOrder/${videoID}`).then((res) => {
FE committed
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
            if (res.data.code === 200) {
                this.setState({
                    orderId: res.data.data.order_id
                })
                this.state.payType === '1' ? this.alipayPay(res.data.data.order_id) : this.weixinPay(res.data.data.order_id)
            } else {
                Toast.info(res.data.msg, 2)
            }
        })
    }
    // 微信支付
    weixinPay = (orderId) => {
        // 微信内部-支付
        if (browser.isWeixin) {
            window.location.href = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx23dac6775ac82877&redirect_uri=" + encodeURIComponent(window.location.href + "&aa=bb&oid=" + orderId).toLowerCase() + "&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect";
        } else {
            // 微信外部-支付
            http.get(`${API['base-api']}/pay/wxpay/wap_charge/oid/${orderId}`).then((res) => {
                if (res.data.errno === 0) {
                    window.location.href = res.data.data.url + "&redirect_url=" + encodeURIComponent(window.location.href + "&weixinpay=1&oid=" + orderId).toLowerCase();
                } else {
                    Toast.info(res.data.msg, 2)
                }
            })
        }
    }
    // 支付宝支付
    alipayPay = (orderId) => {
        const courseId = getParam('id');
        http.get(`${API['base-api']}/pay/alipay/wap_charge_new/oid/${orderId}`).then((res) => {
            if (res.data.errno === 0) {
                window.location = res.data.data.url;
                courseId && window.localStorage.setItem('payCourse', courseId);
            } else {
                Toast.info(res.data.msg, 2)
            }
        })
    }

    // 特价购买全集
wangshuo committed
91
    toBuyAll = (vcourseId) => {
wangshuo committed
92 93 94 95 96 97 98 99 100 101 102 103
        if(Number(this.props.isPdd) === 1) {
            this.props.history.push(`/order?id=${this.props.courseId}`, {group: 1})
        }else{
            let cidArr = JSON.stringify([Number(vcourseId)]);
            http.get(`${API['base-api']}/m/cart/addtopreorder/${cidArr}`).then((res) => {
                if (res.data.errno === 0) {
                    this.props.history.push("/order?id=" + res.data.data[0], {simple: 1});
                } else {
                    Toast.info(res.data.msg, 2);
                }
            })
        }
FE committed
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
    }
    // 0元购买全集
    zerobuyReceive = () => {
        Toast.success('购买全集成功', 3)
        this.colse()
    }
    // 0元参团
    zerogroupBuy = () => {
        this.getOrderId()
    }

    // 获取订单号-0元参团
    getOrderId = () => {
        let data = {
            course_id: getParam('id')
        }
        http.post(`${API['base-api']}/pdd/sys`, data).then((res) => {
            if (res.data.errno === 0) {
                this.setState({
                    groupOrderId: res.data.data.order_id
                })
                this.getOrderStatus(res.data.data.order_id)
            } else {
                Toast.info(res.data.msg, 2)
            }
        })
    }

    // 获取订单状态-0元参团
    getOrderStatus = (id) => {
        http.get(`${API.home}/m/pdd/order_status/${id}`).then((res) => {
            if (res.data.code === 200) {
                this.getTime(res.data.data.pdd_order_id)
            } else {
                Toast.info(res.data.msg, 2)
            }
        })
    }
    // 获取倒计时-0元参团
    getTime = (id) => {
        http.get(`${API.home}/m/pdd_order_end_time/${id}`).then((res) => {
            if (res.data.code === 200) {
                this.setState({
                    endTime: res.data.data.end_time,
                    status: 7
                })
            } else {
                Toast.info(res.data.msg, 2)
            }
        })
    }

    // 邀请好友参团
    toGroup = () => {
        this.props.history.push(`/togroup?id=${this.state.groupOrderId}`)
    }

wangshuo committed
161 162 163 164 165 166
    toLearn = (vcourseId, videoID) => {
        this.props.boxHide(false);
        this.props.history.push(`/play/video?id=${vcourseId}&video_id=${videoID}`);
    }


FE committed
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
    // 关闭弹窗
    colse = () => {
        this.props.boxHide(false);
        this.setState({
            status: 1
        })
    }

    render() {
        let {singleBox} = this.state;
        if (this.state.endTime) {
            let date = this.state.endTime * 1000
            let now = Date.now()
            setInterval(() => {
                date -= 1000
                let s = differenceInSeconds(new Date(date), now) % 60,
                    m = differenceInMinutes(new Date(date), now) % 60,
                    h = differenceInHours(new Date(date), now) % 24
                this.setState({
                    hour: h,
                    min: m,
                    sec: s,
                })
            }, 1000)
        }
        const { singleType } = this.props;
193
        // console.log(this.props);
wangshuo committed
194
        const videoID = this.props.data.video_id || this.props.data.id;
FE committed
195 196 197 198 199 200 201 202 203
        return (
          <div className='popup-box'>
          {
              singleType === 2 &&
              <div className='content payment-success'>
                  <div className="header">
                      <i className='iconfont icondanseshixintubiao-5'></i>
                      <span>购买成功</span>
                  </div>
wangshuo committed
204 205
                  <div className="dec">· 3天内购买全集,可直接抵扣该集费用,{this.props.nowPrice}元购买。</div>
                  <div className="dec">· 超过3天,按照未购集数/全部集数等比例计费,{this.props.laterPrice}元购买全集。</div>
wangshuo committed
206
                  <span onClick={()=>this.toLearn(this.props.vcourseId,videoID)} className='btn btn-18B4ED'>开始学习</span>
wangshuo committed
207
                  <div className='btn btn-FF4000' onClick={()=>{this.toBuyAll(this.props.courseId)}}>{this.props.nowPrice}购买全集
FE committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
                  </div>
              </div>
          }
          {
              singleType === 3 &&
              <div className='content zero'>
                  <div className="header">
                      <i className='iconfont icondanseshixintubiao-5'></i>
                      <span>购买成功</span>
                  </div>
                  <div className="dec">· 恭喜您获得0元拼团购买剩余课时的机会。</div>
                  <div className='btn btn-FF4000' onClick={this.zerogroupBuy}>0元参团</div>
              </div>
          }
          {
              singleType === 4 &&
              <div className='content zero'>
                  <div className="header">
                      <i className='iconfont icondanseshixintubiao-5'></i>
                      <span>购买成功</span>
                  </div>
                  <div className="dec">· 恭喜您获得0元购买剩余课时的机会。</div>
                  <div className='btn btn-FF4000' onClick={this.zerobuyReceive}>0元购</div>
              </div>
          }
          {
              singleType === 6 &&
              <div className='content zero'>
                  <div className="header">
                      <i className='iconfont icondanseshixintubiao-5'></i>
                      <span>购买成功</span>
                  </div>
wangshuo committed
240 241
                  {/*<Link to={`/play/video?id=${this.props.vcourseId}&video_id=${videoID}`} className='btn btn-18B4ED'>去学习</Link>*/}
                  <span onClick={()=>this.toLearn(this.props.vcourseId,videoID)} className='btn btn-18B4ED'>去学习</span>
FE committed
242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
              </div>
          }
          {
              singleType === 7 &&
              <div className='content group'>
                  <div className="header">
                      <i className='iconfont icondanseshixintubiao-5'></i>
                      <span>参团成功</span>
                  </div>
                  <div className='group-img'>
                      <img src={this.props.user.data.avatar} alt=""/>
                      <img
                          src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/images/weekend/train7/ellipsis.png"
                          alt=""/>
                      <img
                          src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/images/weekend/train7/ellipsis.png"
                          alt=""/>

                  </div>
                  <div className='btn-l btn-FF4000' onClick={this.toGroup}>
                      剩余{String(this.state.hour).padStart(2, 0)}{String(this.state.min).padStart(2, 0)}{String(this.state.sec).padStart(2, 0)}
                      邀请好友参团
                  </div>
              </div>
          }
          <i onClick={this.colse} className={'iconfont iconiconfront-2 close'}></i>
      </div>

        );
    }

}

export default compose(
    connect(
        state => ({user: state.user}),
        null
    ),
    withRouter
)(Single)