index.js 813 Bytes
Newer Older
FE committed
1 2
import React, { Component } from 'react';
import { browser } from '@/utils';
wangshuo committed
3 4 5 6 7
import './index.scss'

export default class SharePopup extends Component {
  render() {
    return (
FE committed
8 9
      <div className="share__container">
        {
FE committed
10
          browser.isWeixin && 
FE committed
11 12 13 14
          <div className="share__row">
            <img src='https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/throw_icon.png' />
          </div>
        }
wangshuo committed
15
        <div className="share__content">
FE committed
16
          <p className="share__text">分享活动页到朋友圈、qq、微博分别</p>
wangshuo committed
17 18 19 20 21 22 23 24 25
          <div className='share__rule'>
            <img src='https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/add2.png' />
            <span>(每个平台每天一次)</span>
          </div>
        </div>
      </div>
    )
  }
}