feat: 补充秒杀页面活动已结束/已开始判断以及页面交互

merge-requests/27/head
xiaoguang 3 years ago
parent 1f305f8721
commit bb4cd7749f

@ -9,9 +9,9 @@
<div class="seckill"> <div class="seckill">
<div v-show="isSticky" class="seckill-header-sticky"> <div v-show="isSticky" class="seckill-header-sticky">
<TabBar <TabBar
v-model="query.activityTimeId" :tab-id="query.activityTimeId"
:list="tabList" :list="tabList"
@tab-click="getGoodsList" @tab-change="handleTabChange"
/> />
</div> </div>
<!-- 秒杀时间段 --> <!-- 秒杀时间段 -->
@ -21,9 +21,9 @@
> >
<div class="seckill-header-tabbar"> <div class="seckill-header-tabbar">
<TabBar <TabBar
v-model="query.activityTimeId" :tab-id="query.activityTimeId"
:list="tabList" :list="tabList"
@tab-click="getGoodsList" @tab-change="handleTabChange"
/> />
</div> </div>
</div> </div>
@ -85,6 +85,7 @@
</el-pagination> </el-pagination>
<el-button class="btn-confirm">确定</el-button> <el-button class="btn-confirm">确定</el-button>
</div> </div>
<DialogEnd :visible="seckillEndVisible" @close="handleClose" />
</div> </div>
</template> </template>
<script> <script>
@ -93,11 +94,14 @@ import {
ApiGetSeckillGoods, ApiGetSeckillGoods,
ApiGetCurrentTime, ApiGetCurrentTime,
} from "@/plugins/api/seckill"; } from "@/plugins/api/seckill";
import { SECKILL_STATUS } from "@/constants";
import TabBar from "./module/TabBar.vue"; import TabBar from "./module/TabBar.vue";
import DialogEnd from "./module/DialogEnd.vue";
const PAGE_SIZE = 16;
export default { export default {
name: "Sckill", name: "Sckill",
components: { TabBar }, components: { TabBar, DialogEnd },
data() { data() {
return { return {
bkgSckill: require("~/assets/img/sckill/bkg-large.png"), bkgSckill: require("~/assets/img/sckill/bkg-large.png"),
@ -108,15 +112,16 @@ export default {
loading: false, loading: false,
query: { query: {
pageIndex: 1, pageIndex: 1,
length: 16, length: PAGE_SIZE,
activityTimeId: 0, activityTimeId: 0,
}, },
ticking: false, ticking: false,
isSticky: false, isSticky: false,
currentTabItem: null, //
timeInterval: null, // timeInterval: null, //
seckillTip: "", // seckillTip: "", //
seckillTime: 0, // seckillTime: 0, //
seckillEndVisible: false, //
seckillStatus: SECKILL_STATUS.NOT_START, //
}; };
}, },
computed: { computed: {
@ -133,6 +138,7 @@ export default {
}, },
}, },
watch: { watch: {
//
"query.activityTimeId": { "query.activityTimeId": {
immediate: true, immediate: true,
handler(val) { handler(val) {
@ -142,7 +148,6 @@ export default {
clearImmediate(this.timeInterval); clearImmediate(this.timeInterval);
const tabItem = this.tabList.find((item) => item.id === val); const tabItem = this.tabList.find((item) => item.id === val);
if (tabItem) { if (tabItem) {
this.currentTabItem = tabItem;
const { activityStartTime, activityEndTime } = tabItem; const { activityStartTime, activityEndTime } = tabItem;
this.setTimerInterval({ this.setTimerInterval({
startTime: activityStartTime, startTime: activityStartTime,
@ -198,6 +203,8 @@ export default {
// //
async setTimerInterval({ startTime, endTime }) { async setTimerInterval({ startTime, endTime }) {
clearInterval(this.timeInterval);
// //
const { result } = await ApiGetCurrentTime(); const { result } = await ApiGetCurrentTime();
const current = result || Date.now(); const current = result || Date.now();
@ -207,27 +214,50 @@ export default {
if (current > endTime) { if (current > endTime) {
// //
this.getSeckillTimes(); this.getSeckillTimes();
this.queryDataReset();
return; return;
} }
if (startTime < current && endTime > current) { if (startTime < current && endTime > current) {
// //
this.seckillTime = endTime - current; this.seckillTime = endTime - current;
this.seckillTip = "本场正在秒杀中,好物转瞬即逝,不要错过哦~距结束仅剩"; this.seckillTip = "本场正在秒杀中,好物转瞬即逝,不要错过哦~距结束仅剩";
this.seckillStatus = SECKILL_STATUS.GOING;
} else { } else {
// //
this.seckillTime = startTime - current; this.seckillTime = startTime - current;
this.seckillTip = "本场秒杀即将开抢,距开始还剩"; this.seckillTip = "本场秒杀即将开抢,距开始还剩";
this.seckillStatus = SECKILL_STATUS.NOT_START;
} }
this.timeInterval = setInterval(() => { this.timeInterval = setInterval(() => {
if (this.seckillTime <= 0) { if (this.seckillTime <= 0) {
clearInterval(this.timeInterval); clearInterval(this.timeInterval);
//
if (
this.tabList.length === 1 &&
this.seckillStatus === SECKILL_STATUS.GOING
) {
this.seckillEndVisible = true;
return;
}
// activityTimeIdwatch
this.query.activityTimeId = 0;
this.getSeckillTimes(); this.getSeckillTimes();
return; return;
} }
this.seckillTime -= 1e3; this.seckillTime -= 1e3;
}, 1e3); }, 1e3);
}, },
//
queryDataReset() {
Object.assign(this.query, {
pageIndex: 1,
length: PAGE_SIZE,
});
},
onJumpGoodsDetail(id) { onJumpGoodsDetail(id) {
this.$router.push(`/goods/detail/${id}`); this.$router.push(`/goods/detail/${id}`);
}, },
@ -239,14 +269,16 @@ export default {
this.query.pageIndex = page; this.query.pageIndex = page;
this.getGoodsList(); this.getGoodsList();
}, },
handleTabSelect(id) { handleTabChange(id) {
this.query.activityTimeId = id; this.query.activityTimeId = id;
Object.assign(this.query, { this.queryDataReset();
pageIndex: 1,
length: 16,
});
this.getGoodsList(); this.getGoodsList();
}, },
//
handleClose() {
this.$router.push("/");
},
}, },
}; };
</script> </script>
@ -308,7 +340,7 @@ export default {
.seckill-products-wrap { .seckill-products-wrap {
width: 24%; width: 24%;
background: #ffffff; background: #ffffff;
margin: 15px 0 60px 0; margin-bottom: 16px;
cursor: pointer; cursor: pointer;
&:not(:nth-child(4n)) { &:not(:nth-child(4n)) {
margin-right: calc(4% / 3); margin-right: calc(4% / 3);

@ -0,0 +1,71 @@
<template>
<el-dialog
center
width="17%"
:visible.sync="dialogVisible"
:show-close="false"
:close-on-press-escape="false"
:close-on-click-modal="false"
>
<div class="flex flex-column flex-middle">
<div class="dialog-body-wrap">
<p>本期秒杀活动已结束</p>
<p>感谢你的参与</p>
</div>
<UiButton type="yellow_gradual" :radius="true" @click="onClose"
>好的</UiButton
>
</div>
</el-dialog>
</template>
<script>
import UiButton from "@/components/UiButton";
export default {
name: "SeckillDialogEnd",
components: { UiButton },
props: {
visible: {
type: Boolean,
default: false,
},
},
computed: {
dialogVisible: {
get() {
return this.visible;
},
set(val) {
this.$emit("update:visible", val);
},
},
},
methods: {
onClose() {
this.$emit("close");
this.dialogVisible = false;
},
},
};
</script>
<style lang="scss" scoped>
/deep/.el-dialog {
.el-dialog__header {
display: none;
}
.el-dialog__body {
padding: 41px 0;
.dialog-body-wrap {
width: 145px;
font-size: 16px;
line-height: 20px;
text-align: center;
color: rgba(0, 0, 0, 0.9);
margin-bottom: 20px;
}
.ui-button {
width: 164px;
height: 30px;
}
}
}
</style>

@ -6,7 +6,7 @@
@click="onTabClick(item.id)" @click="onTabClick(item.id)"
class="sckill-header-tabbar__item flex flex-middle flex-center" class="sckill-header-tabbar__item flex flex-middle flex-center"
:class="{ :class="{
'sckill-header-tabbar__item--active': item.id === value, 'sckill-header-tabbar__item--active': item.id === tabId,
}" }"
> >
<strong class="header-tabbar-item__time">{{ item.timeName }}</strong> <strong class="header-tabbar-item__time">{{ item.timeName }}</strong>
@ -24,7 +24,7 @@ export default {
type: Array, type: Array,
default: () => [], default: () => [],
}, },
value: { tabId: {
type: Number, type: Number,
default: 0, default: 0,
}, },
@ -32,11 +32,10 @@ export default {
methods: { methods: {
onTabClick(id) { onTabClick(id) {
// tab // tab
if (id === this.value) { if (id === this.tabId) {
return; return;
} }
this.$emit("input", id); this.$emit("tab-change", id);
this.$emit("tab-click");
}, },
}, },
}; };

Loading…
Cancel
Save