Commit 1973c2b2 by xuzhenghua

登录问题

parent 58085a3d
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
text-align: center; text-align: center;
#to-square { #to-square {
position: relative; position: fixed;
width: 100%; width: 100%;
height: 30px; height: 30px;
background: #FF2121; background: #FF2121;
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
font-size: 14px; font-size: 14px;
line-height: 30px; line-height: 30px;
text-align: center; text-align: center;
z-index: 10; z-index: 21;
} }
.box-container { .box-container {
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
.snow-deco { .snow-deco {
position: absolute; position: absolute;
top: 0; top: 30px;
left: 0; left: 0;
display: block; display: block;
width: 100%; width: 100%;
......
...@@ -327,11 +327,11 @@ class YearCourse extends Component { ...@@ -327,11 +327,11 @@ class YearCourse extends Component {
isFollow = (id, key) => { isFollow = (id, key) => {
const _this = this const _this = this
http.get(`${API.home}/m/live/isFollow`).then(res => { http.get(`${API.home}/sys/user/isFollowWeChat`).then(res => {
const {code, data, msg} = res.data const {code, data, msg} = res.data
if (code === 200) { if (code === 200) {
_this.setState({ _this.setState({
isshowFollow: data.status == 0 ? true : false isshowFollow: !data.is_follow
}) })
if (!_this.state.isshowFollow) { if (!_this.state.isshowFollow) {
......
...@@ -10,11 +10,14 @@ import {setCurrentUser, startFetchUser} from "@/store/userAction" ...@@ -10,11 +10,14 @@ import {setCurrentUser, startFetchUser} from "@/store/userAction"
import {SendMessageToApp, getParam, http} from '@/utils' import {SendMessageToApp, getParam, http} from '@/utils'
import {addDays} from "date-fns" import {addDays} from "date-fns"
import {connect} from "react-redux" import {connect} from "react-redux"
import { Toast } from 'antd-mobile'; import {Toast} from 'antd-mobile'
import {compose} from "redux"
@connect(state => ({ @connect(state => ({
user: state.user user: state.user
})) }),
{setCurrentUser, startFetchUser}
)
export default class index extends Component { export default class index extends Component {
state = { state = {
...@@ -35,8 +38,7 @@ export default class index extends Component { ...@@ -35,8 +38,7 @@ export default class index extends Component {
window['loginInfo'] = result => { window['loginInfo'] = result => {
_this.loginInfo(result) _this.loginInfo(result)
} }
_this.getStage()
_this.getStage();
} }
// 获取app登录数据 // 获取app登录数据
...@@ -107,10 +109,10 @@ export default class index extends Component { ...@@ -107,10 +109,10 @@ export default class index extends Component {
// 跳转到我的宝箱列表页 // 跳转到我的宝箱列表页
toBoxList = () => { toBoxList = () => {
const isLogin = !this.props.user.hasError const isLogin = !this.props.user.hasError
const {currentOpenId} = this.state; const {currentOpenId} = this.state
let search = ''; let search = ''
if(currentOpenId) { if (currentOpenId) {
search = `?id=${currentOpenId}`; search = `?id=${currentOpenId}`
} }
if (isLogin) { if (isLogin) {
this.props.history.push(`/year/yearTreasure${search}`) this.props.history.push(`/year/yearTreasure${search}`)
...@@ -126,16 +128,16 @@ export default class index extends Component { ...@@ -126,16 +128,16 @@ export default class index extends Component {
// 获取活动以及宝箱的阶段 // 获取活动以及宝箱的阶段
getStage = () => { getStage = () => {
http.get(`${API.home}/activity/stage`).then(res => { http.get(`${API.home}/activity/stage`).then(res => {
const { code, data, msg } = res.data; const {code, data, msg} = res.data
if(code === 200) { if (code === 200) {
// treasure_stage,宝箱阶段,0-不在活动时间,1-活动时间内 // treasure_stage,宝箱阶段,0-不在活动时间,1-活动时间内
this.setState({ this.setState({
treasure_stage: data.treasure_stage treasure_stage: data.treasure_stage
}) })
}else{ } else {
Toast.info(msg, 2); Toast.info(msg, 2)
} }
}); })
} }
toYearWish = () => { toYearWish = () => {
...@@ -152,9 +154,9 @@ export default class index extends Component { ...@@ -152,9 +154,9 @@ export default class index extends Component {
} }
sonToPar(e){ sonToPar(e) {
this.setState({ this.setState({
txt1:e txt1: e
}) })
} }
...@@ -192,7 +194,7 @@ export default class index extends Component { ...@@ -192,7 +194,7 @@ export default class index extends Component {
{/* 组队开宝箱 */} {/* 组队开宝箱 */}
{ {
treasure_stage === 1 && <TreasureBox getRemovable={this.getRemovable} /> treasure_stage === 1 && <TreasureBox getRemovable={this.getRemovable}/>
} }
{/*课程*/} {/*课程*/}
......
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