| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345 |
- <template>
- <view class="seckill-product-wrap">
- <!--活动广告-->
- <view class="top-box">
- <!--活动类别-->
- <view class="active-top-tab">
- <scroll-view scroll-X="true" show-scrollbar="false" class="scroll-X mb30">
- <view class="tab-list d-s-c">
- <view class="tab-item" :class="{ active: type_active == index }" v-for="(item, index) in activeList" :key="index"
- @click="tabTypeFunc(index)">
- {{ item.title }}
- </view>
- </view>
- </scroll-view>
- <view class="ad-activity" v-if="listData.detail">
- <image :src="listData.detail.file_path" mode=""></image>
- </view>
- <!--活动时间-->
- <view class="ad-datetime ww100 pt40 pb10 d-c-c" v-if="listData.detail">
- <Countdown ref='countdown' :config="countdownConfig" @returnVal="returnValFunc"></Countdown>
- </view>
- <view class="every-day-time d-c-c mb20">
- <text>每日活动时间:{{currActive.day_start_time}}至{{currActive.day_end_time}}</text>
- </view>
- </view>
- </view>
- <view class="seckill-list-wrap" v-if="!loading">
- <scroll-view scroll-y="true" class="scroll-Y" :style="'height:' + scrollviewHigh + 'px;'" lower-threshold="50">
- <!--列表-->
- <view class="list p-0-20">
- <view class="item d-stretch" v-for="(item, index) in listData.list" :key="index">
- <view class="product-cover">
- <image :src="item.product.file_path" mode="aspectFit"></image>
- </view>
- <view class="d-b-c d-c flex-1 ml26">
- <view class="product-title ww100">{{ item.product.product_name }}</view>
- <view class="price ww100 red">
- <text class="f24">秒杀价:¥</text>
- <text class="num f36 fb">{{ item.seckill_price }}</text>
- <text class="ml20 text-d-line gray9 f24">¥{{ item.product_price }}</text>
- </view>
- <view class="slider-box ww100 d-b-c">
- <view class="left flex-1">
- <text class="already-sale">已抢购{{ item.product_sales }}件</text>
- <view class="slider">
- <view class="slider-inner" :style="'width:' + (item.product_sales / (item.product_sales + item.stock)) * 100 + '%;'"></view>
- </view>
- </view>
- <view class="right-btn ml30"><button type="primary" @click="gotoDetail(item.seckill_product_id)">马上抢</button></view>
- </view>
- </view>
- </view>
- </view>
- <!-- 没有记录 -->
- <view class="d-c-c p30" v-if="listData.length == 0 && !loading">
- <text class="iconfont icon-wushuju"></text>
- <text class="cont">亲,暂无相关记录哦</text>
- </view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- import Countdown from '@/components/countdown/countdown.vue';
- export default {
- components: {
- Countdown
- },
- data() {
- return {
- /*手机高度*/
- phoneHeight: 0,
- /*可滚动视图区域高度*/
- scrollviewHigh: 0,
- /*活动列表*/
- activeList: [],
- /*当前活动角标*/
- type_active: 0,
- /*类别选中*/
- currActive: {},
- /*产品列表*/
- listData: [],
- /*活动详情*/
- detailData: {},
- /*是否正在加载*/
- loading: true,
- /*倒计时配置*/
- countdownConfig: {
- /*开始时间*/
- startstamp: 0,
- /*结束时间*/
- endstamp: 0
- }
- };
- },
- computed: {},
- onShow() {
- this.getActive();
- },
- mounted() {
- this.init();
- },
- onPullDownRefresh() {},
- methods: {
- /*初始化*/
- init() {
- let _this = this;
- uni.getSystemInfo({
- success(res) {
- _this.phoneHeight = res.windowHeight;
- // 计算组件的高度
- let view = uni.createSelectorQuery().select('.top-box');
- view.boundingClientRect(data => {
- let h = _this.phoneHeight - data.height + 43;
- _this.scrollviewHigh = h;
- }).exec();
- }
- });
- },
- /*类别切换*/
- tabTypeFunc(e) {
- this.type_active = e;
- this.currActive = this.activeList[e];
- this.getData();
- },
- goback() {
- uni.navigateBack({
- })
- },
- /*获取活动类别*/
- getActive() {
- let self = this;
- let param = {};
- self.loading = true;
- self._get(
- 'plus.seckill.product/active', {
- param
- },
- function(res) {
- self.activeList = res.data.list;
- if (self.activeList && self.activeList.length > 0) {
- self.currActive = self.activeList[0];
- self.getData();
- }
- }
- );
- },
- /*获取数据*/
- getData() {
- let self = this;
- self.loading = true;
- self._get(
- 'plus.seckill.product/product', {
- seckill_activity_id: self.currActive.seckill_activity_id
- },
- function(res) {
- self.listData = res.data;
- self.countdownConfig.endstamp = res.data.detail.end_time;
- self.countdownConfig.startstamp = res.data.detail.start_time;
- uni.hideLoading();
- self.loading = false;
- }
- );
- },
- /*跳转产品详情*/
- gotoDetail(e) {
- this.$refs.countdown.clear();
- this.gotoPage('/pages/plus/seckill/detail/detail?seckill_product_id=' + e);
- },
- /*跳转搜索页面*/
- gotoSearch() {
- this.getData();
- },
- /*倒计时返回值*/
- returnValFunc(e) {
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: #F2F2F2;
- }
- .top-box {
- position: relative;
- }
- .seckill-product-wrap .tab-item {
- flex: 0;
- padding: 0 30rpx;
- font-size: 33rpx;
- height: 86rpx;
- line-height: 86rpx;
- white-space: nowrap;
- color: #333333;
- }
- .seckill-product-wrap .tab-item.active {
- color: #F6220C;
- font-size: 33rpx;
- opacity: 1;
- position: relative;
- }
- .seckill-product-wrap .tab-item.active::after {
- content: "";
- width: 120rpx;
- height: 4rpx;
- background: #F6220C;
- border-radius: 2rpx;
- position: absolute;
- border: 30rpx;
- }
- .seckill-product-wrap .every-day-time text {
- padding: 8rpx 16rpx;
- font-size: 26rpx;
- color: #333;
- opacity: 0.5;
- }
- .seckill-product-wrap .ad-activity {
- position: relative;
- overflow: hidden;
- }
- .seckill-product-wrap .ad-activity image {
- width: 750rpx;
- height: 367rpx;
- border-radius: 12rpx;
- }
- .seckill-list-wrap {}
- .seckill-list-wrap .list .item {
- padding: 30rpx;
- display: flex;
- border-radius: 16rpx;
- margin-bottom: 20rpx;
- background: #ffffff;
- }
- .seckill-list-wrap .product-cover,
- .seckill-list-wrap .product-cover image {
- width: 200rpx;
- height: 200rpx;
- }
- .active-top-tab .ad-datetime::v-deep .box {
- height: 40rpx;
- padding: 4rpx;
- line-height: 40rpx;
- text-align: center;
- border-radius: 8rpx;
- font-size: 28rpx;
- background: #F6220C;
- color: #FFFFFF;
- }
- .active-top-tab .ad-datetime::v-deep text {
- color: #333;
- font-size: 28rpx;
- }
- .seckill-list-wrap .product-title {
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- font-size: 26rpx;
- }
- .seckill-list-wrap .already-sale {
- padding: 4rpx 0;
- color: #8228EB;
- font-size: 22rpx;
- }
- .seckill-list-wrap .slider-box .slider {
- margin-top: 11rpx;
- height: 8rpx;
- background: #F2F2F2;
- border-radius: 5rpx;
- }
- .seckill-list-wrap .slider-box .slider-inner {
- height: 8rpx;
- background: linear-gradient(-90deg, #CB2BFF 0%, #7727E7 100%);
- border-radius: 4rpx;
- }
- .seckill-list-wrap .right-btn button {
- background: linear-gradient(90deg, #FF6B6B 4%, #F6220C 100%);
- color: #ffffff;
- height: 60rpx;
- border-radius: 30rpx;
- line-height: 60rpx;
- }
- .reg180 {
- padding-right: 20rpx;
- text-align: right;
- transform: rotateY(180deg);
- position: absolute;
- bottom: 0;
- }
- .icon-jiantou {
- color: #FFFFFF;
- font-size: 30rpx;
- }
- .head_top {
- position: absolute;
- top: 0;
- z-index: 20;
- padding-top: var(--status-bar-height);
- height: 30px;
- line-height: 30px;
- color: #FFFFFF;
- font-size: 28rpx;
- }
- .tab-item.active::after {
- content: '';
- width: 60%;
- height: 4rpx;
- background: #F2F2F2;
- border-radius: 2rpx;
- position: absolute;
- bottom: 5rpx;
- }
- </style>
|