update 活动移至首页
parent
2b0a5953ce
commit
dc55deda6f
|
|
@ -359,7 +359,6 @@ function SpPage (props, ref) {
|
||||||
"--nav-height": `${gNavbarH}px`,
|
"--nav-height": `${gNavbarH}px`,
|
||||||
"--status-bar-height": `${gStatusBarHeight}px`,
|
"--status-bar-height": `${gStatusBarHeight}px`,
|
||||||
"--area-bottom-height": `${gAreaH}rpx`,
|
"--area-bottom-height": `${gAreaH}rpx`,
|
||||||
"$page-ipx-footer-height": `${gAreaH}px`,
|
|
||||||
})}
|
})}
|
||||||
ref={wrapRef}
|
ref={wrapRef}
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -183,6 +183,44 @@ page {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.item-btns {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
position: absolute;
|
||||||
|
left: 66px;
|
||||||
|
bottom: 170px;
|
||||||
|
z-index: 10;
|
||||||
|
// justify-content: flex-start;
|
||||||
|
.item-tit {
|
||||||
|
font-size: 42px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 36px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.item-btn {
|
||||||
|
// width: 180px;
|
||||||
|
// height: 56px;
|
||||||
|
padding: 30px 70px 30px 90px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 28px;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: #00000085;
|
||||||
|
border-width: 2px;
|
||||||
|
border-style: solid;
|
||||||
|
border-color: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 22px;
|
||||||
|
line-height: 1;
|
||||||
|
.icon-my {
|
||||||
|
font-size: 28px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-left: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.shop-box {
|
.shop-box {
|
||||||
height: 520px;
|
height: 520px;
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,8 @@ const initialState = {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
goodList: [],
|
goodList: [],
|
||||||
recommend: []
|
recommend: [],
|
||||||
|
activeInfo: {}
|
||||||
}
|
}
|
||||||
|
|
||||||
function Home () {
|
function Home () {
|
||||||
|
|
@ -238,6 +239,12 @@ function Home () {
|
||||||
}
|
}
|
||||||
|
|
||||||
const getSwiperList = async () => {
|
const getSwiperList = async () => {
|
||||||
|
const { status, activity_info = {}, total_count } = await api.user.registrationActivity({ activity_id: 1 })
|
||||||
|
const activeSwiper = activity_info.pics.map(item => ({
|
||||||
|
type: 'image',
|
||||||
|
src: item,
|
||||||
|
goods: []
|
||||||
|
}))
|
||||||
const res = await api.shop.homeSwiperList({ page: 1, pageSize: 999 })
|
const res = await api.shop.homeSwiperList({ page: 1, pageSize: 999 })
|
||||||
const list = res?.list?.map((item) => {
|
const list = res?.list?.map((item) => {
|
||||||
return {
|
return {
|
||||||
|
|
@ -258,8 +265,13 @@ function Home () {
|
||||||
}
|
}
|
||||||
}) || []
|
}) || []
|
||||||
setState((draft) => {
|
setState((draft) => {
|
||||||
draft.swiperList = list
|
draft.swiperList = [...activeSwiper, ...list]
|
||||||
draft.goodList = list[0].goods || []
|
draft.goodList = list[0].goods || []
|
||||||
|
draft.activeInfo = {
|
||||||
|
...activity_info,
|
||||||
|
total_count,
|
||||||
|
status
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -353,6 +365,7 @@ function Home () {
|
||||||
const deltaX = clientX - startX
|
const deltaX = clientX - startX
|
||||||
if (Math.abs(deltaY) < 50) return
|
if (Math.abs(deltaY) < 50) return
|
||||||
|
|
||||||
|
console.log("🚀 ~ deltaY:", deltaY)
|
||||||
if (deltaY > 0) {
|
if (deltaY > 0) {
|
||||||
// 下滑操作
|
// 下滑操作
|
||||||
setState((draft) => {
|
setState((draft) => {
|
||||||
|
|
@ -367,6 +380,7 @@ function Home () {
|
||||||
}, 500)
|
}, 500)
|
||||||
}
|
}
|
||||||
} else if (deltaY < 0) {
|
} else if (deltaY < 0) {
|
||||||
|
if (currentIndex === 0) return
|
||||||
// 上滑操作
|
// 上滑操作
|
||||||
setState((draft) => {
|
setState((draft) => {
|
||||||
draft.showBottom = true
|
draft.showBottom = true
|
||||||
|
|
@ -396,7 +410,17 @@ function Home () {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const { activeInfo = {}, currentIndex } = state
|
||||||
|
|
||||||
|
const handleApply = () => {
|
||||||
|
let url = '/pages/recommend/detail?id='
|
||||||
|
if (activeInfo.total_count) {
|
||||||
|
url = `/pages/recommend/status?id=`
|
||||||
|
}
|
||||||
|
Taro.navigateTo({
|
||||||
|
url: url + activeInfo.activity_id
|
||||||
|
})
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<SpPage
|
<SpPage
|
||||||
className='page-index'
|
className='page-index'
|
||||||
|
|
@ -507,15 +531,23 @@ function Home () {
|
||||||
</SwiperItem>
|
</SwiperItem>
|
||||||
))}
|
))}
|
||||||
</Swiper>
|
</Swiper>
|
||||||
{!isUpOperation && <View className="item-img-box">
|
{!isUpOperation && <>
|
||||||
<View className="item-img-txt">滑 动 探 索</View>
|
{currentIndex === 0 ? <View className="item-btns">
|
||||||
<Image className="item-img" height="62" src={require('../assets/i-sou.gif')} isShowMenuByLongpress={false} lazyLoad isNew={false} />
|
<View className="item-tit">{activeInfo.activity_name}</View>
|
||||||
</View>}
|
{activeInfo.end_time * 1000 >= Date.now() && <View className="item-btn" onClick={handleApply}>
|
||||||
{!isUpOperation && <View className='spot-pagination'>
|
<View className="item-btn-txt">{activeInfo.total_count ? '已报名' : '活动申请'}</View>
|
||||||
{swiperList.map((_, index) => (
|
</View>}
|
||||||
<View key={index} className={'spot-pagination-bullet ' + ((state.currentIndex == index) ? 'spot-pagination-bullet-active' : "")} style={{ width: 1 / state.length * 100 + '%' }}></View>
|
</View> :
|
||||||
))}
|
<View className="item-img-box">
|
||||||
</View>}
|
<View className="item-img-txt">滑 动 探 索</View>
|
||||||
|
<Image className="item-img" height="62" src={require('../assets/i-sou.gif')} isShowMenuByLongpress={false} lazyLoad isNew={false} />
|
||||||
|
</View>}
|
||||||
|
<View className='spot-pagination'>
|
||||||
|
{swiperList.map((_, index) => (
|
||||||
|
<View key={index} className={'spot-pagination-bullet ' + ((state.currentIndex == index) ? 'spot-pagination-bullet-active' : "")} style={{ width: 1 / state.length * 100 + '%' }}></View>
|
||||||
|
))}
|
||||||
|
</View>
|
||||||
|
</>}
|
||||||
{isUpOperation && <View className="icon-kf">
|
{isUpOperation && <View className="icon-kf">
|
||||||
<SpChat><SpImage height="62" src='index/kf.png' isShowMenuByLongpress={false} lazyLoad isNew /></SpChat>
|
<SpChat><SpImage height="62" src='index/kf.png' isShowMenuByLongpress={false} lazyLoad isNew /></SpChat>
|
||||||
</View>}
|
</View>}
|
||||||
|
|
|
||||||
|
|
@ -96,17 +96,17 @@ export default class RecommendList extends Component {
|
||||||
// this.setState({
|
// this.setState({
|
||||||
// list: []
|
// list: []
|
||||||
// })
|
// })
|
||||||
// setTimeout(() => {
|
setTimeout(() => {
|
||||||
// // this.nextPage()
|
// this.nextPage()
|
||||||
// // Taro.hideLoading()
|
// Taro.hideLoading()
|
||||||
// this.setState({
|
this.setState({
|
||||||
// page: {
|
page: {
|
||||||
// isLoading: false
|
isLoading: false
|
||||||
// }
|
}
|
||||||
// })
|
})
|
||||||
// }, 200)
|
}, 300)
|
||||||
// this.praiseNum()
|
// this.praiseNum()
|
||||||
this.getActiveDetail()
|
// this.getActiveDetail()
|
||||||
}
|
}
|
||||||
|
|
||||||
onShareAppMessage () {
|
onShareAppMessage () {
|
||||||
|
|
@ -642,7 +642,7 @@ export default class RecommendList extends Component {
|
||||||
const height = windowWidth * 9 / 17
|
const height = windowWidth * 9 / 17
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<SpPage renderFooter={<SpTabbar />} loading={page.isLoading} className='has-nav' title="" isBlack isTop>
|
<SpPage renderFooter={<SpTabbar />} loading={page.isLoading} className='has-nav' title="" isBlack >
|
||||||
<View className='page-recommend-list'>
|
<View className='page-recommend-list'>
|
||||||
{false && <>
|
{false && <>
|
||||||
<View className='recommend-list__toolbar'>
|
<View className='recommend-list__toolbar'>
|
||||||
|
|
@ -777,7 +777,9 @@ export default class RecommendList extends Component {
|
||||||
)}
|
)}
|
||||||
</ScrollView>
|
</ScrollView>
|
||||||
</>}
|
</>}
|
||||||
{/* {page.isLoading ? <Loading></Loading> :
|
|
||||||
|
{/* 鞋床故事 */}
|
||||||
|
{page.isLoading ? <Loading></Loading> :
|
||||||
<View className="recommend-content">
|
<View className="recommend-content">
|
||||||
<Video
|
<Video
|
||||||
id="recommend-video"
|
id="recommend-video"
|
||||||
|
|
@ -817,8 +819,10 @@ export default class RecommendList extends Component {
|
||||||
<SpImage height={height * 2} width={windowWidth * 2} mode="aspectFill" src='recommend/09.jpg' isShowMenuByLongpress={false} lazyLoad isNew />
|
<SpImage height={height * 2} width={windowWidth * 2} mode="aspectFill" src='recommend/09.jpg' isShowMenuByLongpress={false} lazyLoad isNew />
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
} */}
|
}
|
||||||
{page.isLoading ? <Loading></Loading> :
|
|
||||||
|
{/* 活动部分 */}
|
||||||
|
{/* {page.isLoading ? <Loading></Loading> :
|
||||||
<View className="active-content">
|
<View className="active-content">
|
||||||
<Swiper
|
<Swiper
|
||||||
className={classNames('swiper')}
|
className={classNames('swiper')}
|
||||||
|
|
@ -880,7 +884,7 @@ export default class RecommendList extends Component {
|
||||||
))}
|
))}
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
}
|
} */}
|
||||||
<BackToTop show={showBackToTop} onClick={this.scrollBackToTop} />
|
<BackToTop show={showBackToTop} onClick={this.scrollBackToTop} />
|
||||||
|
|
||||||
</View>
|
</View>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue