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.
|
|
<template> <view> <lf-nav title="秒杀专场" :showIcon="true" bgColor="#fff"></lf-nav> <view class="content"> <view class="card" v-for="(item, index) in list" :key="index" @click="$url('/pages/shop/goodsdetail?type=seckill&id='+ item.goods.id)"> <view class="goods-img"> <image class="img" :src="item.goods.img"></image> <view class="tips">TODO已有0人购买</view> </view> <view class="goods-info"> <view> <view class="lf-line-2 title">{{ item.goods.name }}</view> <view class="desc">距离开始还剩余 20:34:18</view> </view> <view class="lf-row-between"> <view class="price"> <text>¥{{ item.goods.max_price }}</text> <text>¥{{ item.goods.market_price }}</text> </view> <view class="btn" hover-class="lf-opacity">立即秒杀</view> </view> </view> </view> <lf-nocontent src="/static/images/empty.png" v-if="list.length <= 0"></lf-nocontent> </view> <u-back-top :scrollTop="pageScrollTop"></u-back-top> </view></template>
<script> export default { data(){ return { list: [] } }, onLoad(){ this.getSeckillList(); }, methods: { getSeckillList(){ this.$http.get({ api: 'api/seckill/all' }).then(res => { console.log("----", res); this.list = res.data.data; }) } } }</script>
<style> page{ background-color: #F8F8F8; }</style><style lang="scss" scoped="scoped"> .content{ padding: 30rpx 32rpx; width: 750rpx; height: max-content; box-sizing: border-box; .card{ width: 686rpx; height: 260rpx; background: #FFFFFF; border-radius: 20rpx; box-sizing: border-box; padding: 30rpx; display: flex; &:nth-child(n+2){ margin-top: 30rpx; } .goods-img{ width: 200rpx; height: 200rpx; border-radius: 10rpx; overflow: hidden; position: relative; margin-right: 15rpx; .img{ width: 100%; height: 100%; background-color: #EEEEEE; } .tips{ position: absolute; bottom: 0; left: 0; width: 100%; height: 37rpx; background-color: rgba(0,0,0,0.5); color: #FFFFFF; font-size: 22rpx; display: flex; justify-content: center; align-items: center; } } .goods-info{ width: 410rpx; height: 200rpx; display: flex; flex-direction: column; justify-content: space-between; .title{ font-size: 28rpx; color: #222222; font-weight: bold; } .desc{ width: 281rpx; height: 35rpx; border-radius: 3rpx; background-color: #E9F2F2; font-size: 24rpx; color: #15716E; display: flex; justify-content: center; align-items: center; margin-top: 10rpx; } .price>text:nth-child(1){ font-size: 36rpx; color: #F63434; font-weight: bold; } .price>text:nth-child(2){ font-size: 24rpx; color: #777777; margin-left: 20rpx; text-decoration: line-through; } .btn{ width: 142rpx; height: 60rpx; background: rgba(21, 113, 110, 0.05); border-radius: 36rpx; border: 2rpx solid #15716E; font-size: 26rpx; color: #15716E; display: flex; justify-content: center; align-items: center; } } } }</style>
|