You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong_qianduan/pages/activity/charts.vue

369 lines
7.8 KiB

10 months ago
<template>
<view class="newGoods">
<view>
9 months ago
<u-navbar title="排行榜" back-icon-color="#fff" :border-bottom="false" title-color="#fff" :background="background"></u-navbar>
10 months ago
</view>
9 months ago
<view class="main">
10 months ago
<view class="head">
<view class="ranking">
-好物排行榜-
</view>
<view class="headTitle">
{{name}}热销榜
10 months ago
</view>
<view class="ques">
根据商品销量等级排序|每日更新
</view>
</view>
9 months ago
<view class="rule" @click="openPage(1)">入会规则</view>
<view class="all" @click="openPage(2)">全部榜单</view>
10 months ago
<view class="hb">
9 months ago
<view class="goodsList" v-for="(item,index) in jingList" :key="index" @click="goDetail(item.goods_id)">
10 months ago
<view class="goodsDetail">
9 months ago
<image :src="$picUrl+'/static/rank/topOne.png'" mode="" v-if="index==0" class="topOne"></image>
9 months ago
<image :src="$picUrl+'/static/rank/topTwo.png'" mode="" v-if="index==1" class="topOne"></image>
<image :src="$picUrl+'/static/rank/topThree.png'" mode="" v-if="index==2" class="topOne"></image>
10 months ago
<view class="goodsInfo">
<image :src="item.goods_image" mode="" class="goodsImg"></image>
10 months ago
<view class="goodsName">
<view class="name">
{{item.goods_name}}
10 months ago
</view>
<view class="hot">
<text class="hotTitle">HOT</text>
<text class="zs">综合热卖指数{{item.remaizhishu}}</text>
10 months ago
</view>
</view>
</view>
</view>
<view class="opera">
<view class="price">
<text>{{item.goods_price_min}}</text>
10 months ago
</view>
9 months ago
<view class="look">
10 months ago
去看看
9 months ago
<image :src="$picUrl+'/static/rank/right.png'" mode="" class="right"></image>
10 months ago
</view>
</view>
</view>
</view>
</view>
</view>
</template>
<script>
import * as Api from '@/api/activity'
10 months ago
export default {
data() {
9 months ago
let img = 'https://www.royaum.com.cn/static/rank/top.png'
10 months ago
return {
background: {
10 months ago
background: 'url(' + img + ') center top no-repeat',
backgroundSize: '100% auto',
10 months ago
},
chosed: 0,
backgroundImg: '',
jingList: [],
categoryId: '',
name:''
10 months ago
}
},
onLoad(op) {
this.categoryId = op.categoryId;
9 months ago
this.name= decodeURIComponent(op.name)
},
onShow() {
9 months ago
// this.getCarouselList()
this.getListJingData(this.categoryId)
},
methods: {
9 months ago
// // 获取背景图
// getCarouselList(category_id) {
// const app = this;
// Api.getImage({
// type: 3
// })
// .then(result => {
// app.backgroundImg = result.data.imgurl;
//
// })
// .finally(() => app.isLoading = false)
// },
getListJingData(categoryId) {
let app = this;
let pamars = {
store_id: 10001,
categoryId: categoryId,
}
Api.chartsGoodsList(pamars)
.then(result => {
app.jingList = result.data.data;
})
.finally(() => app.isLoading = false)
},
goDetail(orderId) {
uni.navigateTo({
9 months ago
url: '/pages/goods/detail?goodsId=' + orderId
})
},
9 months ago
openPage(index) {
if(index == 1){
uni.navigateTo({
url: '/pages/activity/presaleRule?type=6'
})
}else{
uni.navigateBack({
delta:1
})
}
},
10 months ago
}
}
</script>
<style lang="scss" scoped>
.newGoods {
width: 100%;
position: relative;
min-height: 100vh;
9 months ago
background: #251a16 url(https://www.royaum.com.cn/static/rank/top.png) center top no-repeat;
background-size: 100% auto;
10 months ago
}
.main {
width: 100%;
position: relative;
9 months ago
.rule{
width: 130rpx;
height: 50rpx;
background-color: rgba(0, 0, 0, 0.3);
font-size: 24rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 50rpx;
text-align: center;
position: absolute;
right: 0;
top: 60rpx;
z-index: 22;
border-radius: 50rpx 0 0 50rpx;
}
.all{
width: 130rpx;
height: 50rpx;
background-color: rgba(0, 0, 0, 0.3);
font-size: 24rpx;
font-weight: 400;
color: #FFFFFF;
line-height: 50rpx;
text-align: center;
position: absolute;
right: 0;
top: 120rpx;
border-radius: 50rpx 0 0 50rpx;
z-index: 22;
}
10 months ago
.bgImg {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: -10;
}
.head {
width: 100%;
9 months ago
height: 320rpx;
overflow: hidden;
10 months ago
}
}
.title {
margin-top: 58rpx;
width: 128rpx;
height: 44rpx;
font-size: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #fff;
line-height: 44rpx;
left: 0;
right: 0;
margin: auto;
}
.headTitle {
width: 100%;
text-align: center;
height: 98rpx;
font-size: 60rpx;
color: #FFFFFF;
line-height: 98rpx;
9 months ago
margin-top: -20rpx;
10 months ago
}
.ranking {
width: 430rpx;
9 months ago
height: 120rpx;
background: url('https://www.royaum.com.cn/static/rank/timeRank.png') center top no-repeat;
background-size: 100% auto;
10 months ago
text-align: center;
9 months ago
line-height: 100rpx;
10 months ago
font-size: 36rpx;
font-weight: 500;
color: #FFFFFF;
9 months ago
margin: 0 auto;
margin-top: 20rpx;
10 months ago
}
.ques {
width: 100%;
text-align: center;
height: 40rpx;
font-size: 28rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
color: #FFFFFF;
line-height: 40rpx;
margin-top: 6rpx;
}
.hb {
9 months ago
background-image: url('https://www.royaum.com.cn/static/rank/mainbg.png');
10 months ago
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
padding-top: 30rpx;
.goodsList {
width: 700rpx;
height: 440rpx;
background: #FCE5C6;
border-radius: 18rpx 18rpx 18rpx 18rpx;
margin-bottom: 42rpx;
10 months ago
.goodsDetail {
width: 700rpx;
height: 336rpx;
padding: 54rpx 0 0 52rpx;
background: #FFFFFF;
border-radius: 18rpx 18rpx 18rpx 18rpx;
opacity: 1;
position: relative;
.topOne {
width: 73rpx;
10 months ago
height: 100rpx;
position: absolute;
left: 36rpx;
top: -8rpx;
}
10 months ago
.goodsInfo {
display: flex;
.goodsImg {
10 months ago
width: 224rpx;
height: 224rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
opacity: 1;
margin-right: 16rpx;
}
.goodsName {
.name {
10 months ago
width: 396rpx;
height: 132rpx;
font-size: 32rpx;
font-weight: 400;
color: #0E0E0E;
9 months ago
line-height: 44rpx;
word-break: break-all;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
10 months ago
}
.hot {
10 months ago
width: 336rpx;
height: 60rpx;
background: linear-gradient(90deg, #FCE5C6 0%, #FFFFFF 100%);
9 months ago
border-radius: 70rpx;
10 months ago
opacity: 1;
9 months ago
margin-top: 26rpx;
.hotTitle {
10 months ago
margin-right: 8rpx;
width: 68rpx;
height: 42rpx;
font-size: 32rpx;
line-height: 60rpx;
margin-left: 8rpx;
background: -webkit-linear-gradient(180deg, #FFA621 0%, #F34A40 100%);
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
10 months ago
}
.zs {
10 months ago
height: 44rpx;
font-size: 32rpx;
font-weight: 400;
color: #9F6516;
line-height: 60rpx;
}
}
}
}
}
.opera {
10 months ago
display: flex;
justify-content: space-between;
width: 100%;
align-items: center;
height: 104rpx;
.price {
10 months ago
font-size: 32rpx;
font-weight: 400;
color: #301F14;
line-height: 44rpx;
9 months ago
margin-left: 30rpx;
text {
10 months ago
font-size: 48rpx;
font-weight: 600;
color: #301F14;
line-height: 68rpx;
}
}
.look {
10 months ago
width: 202rpx;
height: 60rpx;
background: linear-gradient(180deg, #FF7E6A 0%, #FB322A 100%);
9 months ago
border-radius: 70rpx;
10 months ago
margin-right: 22rpx;
text-align: center;
line-height: 60rpx;
9 months ago
color: #FFFFFF;
font-size: 32rpx;
display: flex;
align-items: center;
justify-content: center;
.right {
9 months ago
width: 18rpx;
height: 27rpx;
margin-left: 12rpx;
10 months ago
}
}
}
10 months ago
}
}
</style>