Commit ab39c9c8 by zhanghaozhe

可关闭弹框通用组件

parent ddc804c5
import React, { Component } from 'react'
import './index.scss'
import classnames from 'classnames'
class ClosablePopup extends Component {
state = {
visible: this.props.visible
}
close = () => {
const {close} = this.props
close ? close() : this.setState({visible: false})
}
render() {
const {title, className, children, closable = true} = this.props
return (
this.state.visible
?
<div className={'closable-popup-mask'}>
<div className={classnames(['popup-container', className])}>
<div className="title">{title}</div>
<div className="content">
{children}
</div>
{
closable && <i className={'close iconfont iconiconfront-2'} onClick={this.close}/>
}
</div>
</div>
: null
)
}
}
/*
function ClosablePopup({title}) {
return (
<div className={'closable-popup-mask'}>
<div className="popup-container">
<div className="title">{title}</div>
</div>
</div>
)
}
*/
export default ClosablePopup
.closable-popup-mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
.popup-container {
position: absolute;
top: 165px;
left: 50%;
transform: translateX(-50%);
width: 300px;
padding: 20px 10px;
border-radius: 10px;
background: #fff;
.title {
font-size: 16px;
color: #525C65;
text-align: center;
}
.close {
position: absolute;
bottom: -88px;
left: 50%;
transform: translateX(-50%);
font-size: 36px;
color: #fff;
}
}
}
...@@ -5,8 +5,9 @@ export { default as OrderItem } from './OrderList' ...@@ -5,8 +5,9 @@ export { default as OrderItem } from './OrderList'
export { default as HeaderBar } from './HeaderBar' export { default as HeaderBar } from './HeaderBar'
export { default as CallApp } from './CallApp' export { default as CallApp } from './CallApp'
export { default as Captcha } from './Captcha' export { default as Captcha } from './Captcha'
export { default as ClearableInput } from "./ClearableInput"; export { default as ClearableInput } from "./ClearableInput"
export { default as Loading } from './Loading' export { default as Loading } from './Loading'
export { default as RenderTabBar } from './renderTabBar' export { default as RenderTabBar } from './renderTabBar'
export { default as Popup } from './closable-popup'
import React, { Component } from 'react'; import React, { Component } from 'react'
import RulePopup from './rulePopup/index'; import RulePopup from './rulePopup/index'
import CoursePopup from './coursePopup/index'; import CoursePopup from './coursePopup/index'
import './index.scss'; import './index.scss'
import { Popup } from '@/common'
class BlessingPreheat extends Component { class BlessingPreheat extends Component {
constructor(props) { constructor(props) {
super(props); super(props)
this.state = { this.state = {
isRule: false, isRule: false,
isCourse: true isCourse: false,
}; inviteVisible: true
}
} }
handleToHide = (key) => { handleToHide = (key) => {
let obj = {}; let obj = {}
obj[key] = false; obj[key] = false
this.setState({ this.setState({
...obj ...obj
}); })
} }
render() { render() {
const { isRule, isCourse } = this.state; const {isRule, isCourse, inviteVisible} = this.state
return ( return (
<div> <div id={'blessing-preheat'}>
22222 22222
{ {
isRule && isRule &&
<RulePopup handleToHide={() => this.handleToHide('isRule')} /> <RulePopup handleToHide={() => this.handleToHide('isRule')}/>
} }
{ {
isCourse && isCourse &&
<CoursePopup handleToHide={() => this.handleToHide('isCourse')} /> <CoursePopup handleToHide={() => this.handleToHide('isCourse')}/>
} }
<Popup visible={inviteVisible}
title={'扫码邀请好友注册+10点福气值'}
className={'invite-popup'}
>
<img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/tinypng-common/right_weixin.png" alt="" className="qr-code"/>
<button>一键复制网址</button>
</Popup>
</div> </div>
); )
} }
} }
export default BlessingPreheat; export default BlessingPreheat
#blessing-preheat {
.invite-popup {
.content {
display: flex;
flex-flow: column;
align-items: center;
margin-top: 29px;
.qr-code {
width: 120px;
height: 120px;
margin-bottom: 20px;
}
button {
width: 133px;
height: 30px;
background: rgba(83, 39, 250, 1);
border-radius: 15px;
font-size: 14px;
color: #fff;
-webkit-appearance: none;
outline: none;
border: none;
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment