Commit bfb965b9 by 青梅竹马

恢复修改文案前拼团版本

parent 2063a15a
...@@ -22,8 +22,6 @@ class ToGroup extends Component { ...@@ -22,8 +22,6 @@ class ToGroup extends Component {
isBuy: false, isBuy: false,
modal: false, modal: false,
pddOrderId: "", pddOrderId: "",
is_new_user: true,
user_info_sample_http: false,
} }
} }
...@@ -99,21 +97,6 @@ class ToGroup extends Component { ...@@ -99,21 +97,6 @@ class ToGroup extends Component {
}, 1000) }, 1000)
} }
}) })
if (!this.state.user_info_sample_http) {
http.get(`${API.home}/m/user_info_sample/0`).then((res) => {
if (res.data.code === 200) {
console.log("已经登录")
} else {
//为登录,去登录
console.log("去登录")
// this.props.history.push("/passport", { from: this.props.location })
}
this.setState({
is_new_user: res.data.data.is_new_user,
user_info_sample_http: true,
})
})
}
} }
toCourseDetail = (id) => { toCourseDetail = (id) => {
...@@ -163,7 +146,6 @@ class ToGroup extends Component { ...@@ -163,7 +146,6 @@ class ToGroup extends Component {
data: { course_id, course_title, simpledescription, price0, price1 }, data: { course_id, course_title, simpledescription, price0, price1 },
is_success, is_success,
course_list, course_list,
is_new_user,
} = this.state } = this.state
const Info = ( const Info = (
<div className="info"> <div className="info">
...@@ -267,7 +249,6 @@ class ToGroup extends Component { ...@@ -267,7 +249,6 @@ class ToGroup extends Component {
} }
function GorupContent(props) { function GorupContent(props) {
console.log("GorupContent------data:", props)
let tip, btn, dec, groupTip let tip, btn, dec, groupTip
const { const {
pdd_price, pdd_price,
...@@ -278,7 +259,6 @@ function GorupContent(props) { ...@@ -278,7 +259,6 @@ function GorupContent(props) {
share, share,
number, number,
countdown, countdown,
is_new_user,
} = props.data } = props.data
const { userInfo } = props const { userInfo } = props
let ary = [], let ary = [],
...@@ -325,13 +305,11 @@ function GorupContent(props) { ...@@ -325,13 +305,11 @@ function GorupContent(props) {
} }
}) })
if (flag) { if (flag) {
tip = is_new_user ? ( tip = (
<p className="tip">{`拼团省¥${Math.round( <p className="tip">{`拼团省¥${round(
data.price1 - pdd_price, data.price1 - pdd_price,
2 2
)}元`}</p> )}元`}</p>
) : (
<p>您已是七月用户无法参与该团,开新团邀请尚未注册七月的加入吧</p>
) )
btn = ( btn = (
<span className="group-btn" onClick={props.invitedFriends}> <span className="group-btn" onClick={props.invitedFriends}>
...@@ -341,15 +319,13 @@ function GorupContent(props) { ...@@ -341,15 +319,13 @@ function GorupContent(props) {
dec = <p className="dec">分享到3个群后,成团率高达98%</p> dec = <p className="dec">分享到3个群后,成团率高达98%</p>
} else { } else {
if (getParam("is_originator") == 1) { if (getParam("is_originator") == 1) {
tip = is_new_user ? ( tip = (
<p className="tip">{`拼团省¥${Math.round( <p className="tip">{`拼团省¥${round(
data.price1 - pdd_price, data.price1 - pdd_price,
2 2
)}元`}</p> )}元`}</p>
) : (
<p>您已是七月用户无法参与该团,开新团邀请尚未注册七月的加入吧</p>
) )
btn = is_new_user ? ( btn = (
<a <a
href="javascript:;" href="javascript:;"
className="group-btn" className="group-btn"
...@@ -357,23 +333,13 @@ function GorupContent(props) { ...@@ -357,23 +333,13 @@ function GorupContent(props) {
> >
一键参团 一键参团
</a> </a>
) : (
<a
href="javascript:;"
className="group-btn"
onClick={props.handleToGroup}
>
一键开团
</a>
) )
} else { } else {
tip = is_new_user ? ( tip = (
<p className="tip">{`拼团省¥${Math.round( <p className="tip">{`拼团省¥${round(
data.price1 - pdd_price, data.price1 - pdd_price,
2 2
)}元`}</p> )}元`}</p>
) : (
<p>您已是七月用户无法参与该团,开新团邀请尚未注册七月的加入吧</p>
) )
btn = ( btn = (
<span className="group-btn" onClick={props.invitedFriends}> <span className="group-btn" onClick={props.invitedFriends}>
......
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