349 lines
9.9 KiB
Vue
349 lines
9.9 KiB
Vue
<template>
|
||
<div class="pintuan">
|
||
<Card>
|
||
<Row>
|
||
<Form
|
||
ref="searchForm"
|
||
:model="searchForm"
|
||
inline
|
||
:label-width="70"
|
||
class="search-form"
|
||
>
|
||
<Form-item label="活动名称" prop="promotionName">
|
||
<Input
|
||
type="text"
|
||
v-model="searchForm.promotionName"
|
||
placeholder="请输入活动名称"
|
||
clearable
|
||
style="width: 200px"
|
||
/>
|
||
</Form-item>
|
||
<Form-item label="活动状态" prop="promotionStatus">
|
||
<Select
|
||
v-model="searchForm.promotionStatus"
|
||
placeholder="请选择"
|
||
clearable
|
||
style="width: 200px"
|
||
>
|
||
<Option value="NEW">未开始</Option>
|
||
<Option value="START">已开始/上架</Option>
|
||
<Option value="END">已结束/下架</Option>
|
||
<Option value="CLOSE">紧急关闭/作废</Option>
|
||
</Select>
|
||
</Form-item>
|
||
<Form-item label="活动时间">
|
||
<DatePicker
|
||
v-model="selectDate"
|
||
type="daterange"
|
||
clearable
|
||
placeholder="选择起始时间"
|
||
style="width: 200px"
|
||
></DatePicker>
|
||
</Form-item>
|
||
<Button
|
||
@click="handleSearch"
|
||
type="primary"
|
||
class="search-btn"
|
||
icon="ios-search"
|
||
>搜索</Button
|
||
>
|
||
<Button @click="handleReset" class="search-btn">重置</Button>
|
||
</Form>
|
||
</Row>
|
||
<Row class="operation padding-row">
|
||
<Button @click="newAct" type="primary">添加</Button>
|
||
</Row>
|
||
<Table :loading="loading" border :columns="columns" :data="data" ref="table">
|
||
<template slot-scope="{ row }" slot="action">
|
||
<div class="row">
|
||
<Button
|
||
type="default"
|
||
size="small"
|
||
v-if="row.promotionStatus == 'NEW'"
|
||
@click="edit(row)"
|
||
>编辑</Button
|
||
>
|
||
<Button
|
||
type="info"
|
||
v-if="row.promotionStatus == 'NEW'"
|
||
size="small"
|
||
@click="manage(row, 'manager')"
|
||
>管理</Button
|
||
>
|
||
<Button
|
||
type="info"
|
||
v-if="row.promotionStatus !== 'NEW'"
|
||
size="small"
|
||
@click="manage(row, 'view')"
|
||
>查看</Button
|
||
>
|
||
<Button
|
||
type="error"
|
||
size="small"
|
||
v-if="row.promotionStatus != 'START'"
|
||
@click="remove(row)"
|
||
>删除</Button
|
||
>
|
||
<Button
|
||
type="success"
|
||
v-if="row.promotionStatus == 'NEW' || row.promotionStatus == 'CLOSE'"
|
||
size="small"
|
||
@click="open(row)"
|
||
>开启</Button
|
||
>
|
||
<Button
|
||
type="warning"
|
||
v-if="row.promotionStatus == 'START'"
|
||
size="small"
|
||
@click="close(row)"
|
||
>关闭</Button
|
||
>
|
||
</div>
|
||
</template>
|
||
</Table>
|
||
<Row type="flex" justify="end" class="mt_10">
|
||
<Page
|
||
:current="searchForm.pageNumber + 1"
|
||
:total="total"
|
||
:page-size="searchForm.pageSize"
|
||
@on-change="changePage"
|
||
@on-page-size-change="changePageSize"
|
||
:page-size-opts="[10, 20, 50]"
|
||
size="small"
|
||
show-total
|
||
show-elevator
|
||
show-sizer
|
||
></Page>
|
||
</Row>
|
||
</Card>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { getPintuanList, deletePintuan, editPintuanStatus } from "@/api/promotion";
|
||
export default {
|
||
name: "pintuan",
|
||
data() {
|
||
return {
|
||
loading: true, // 表单加载状态
|
||
searchForm: {
|
||
// 搜索框初始化对象
|
||
pageNumber: 0, // 当前页数
|
||
pageSize: 10, // 页面大小
|
||
sort: "startTime", // 默认排序字段
|
||
order: "desc", // 默认排序方式
|
||
},
|
||
selectDate: null, // 选择的时间
|
||
columns: [
|
||
{
|
||
title: "活动名称",
|
||
key: "promotionName",
|
||
minWidth: 120,
|
||
},
|
||
{
|
||
title: "活动开始时间",
|
||
key: "startTime",
|
||
},
|
||
{
|
||
title: "活动结束时间",
|
||
key: "endTime",
|
||
},
|
||
{
|
||
title: "状态",
|
||
key: "promotionStatus",
|
||
width: 100,
|
||
render: (h, params) => {
|
||
let text = "未知",
|
||
color = "default";
|
||
if (params.row.promotionStatus == "NEW") {
|
||
text = "未开始";
|
||
color = "default";
|
||
} else if (params.row.promotionStatus == "START") {
|
||
text = "已开始";
|
||
color = "green";
|
||
} else if (params.row.promotionStatus == "END") {
|
||
text = "已结束";
|
||
color = "blue";
|
||
} else if (params.row.promotionStatus == "CLOSE") {
|
||
text = "已关闭";
|
||
color = "red";
|
||
}
|
||
return h("div", [h("Tag", { props: { color: color } }, text)]);
|
||
},
|
||
},
|
||
{
|
||
title: "操作",
|
||
slot: "action",
|
||
align: "center",
|
||
width: 250,
|
||
},
|
||
],
|
||
data: [], // 表单数据
|
||
total: 0, // 表单数据总数
|
||
};
|
||
},
|
||
methods: {
|
||
// 初始化数据
|
||
init() {
|
||
this.getDataList();
|
||
},
|
||
// 改变页码
|
||
changePage(v) {
|
||
this.searchForm.pageNumber = v - 1;
|
||
this.getDataList();
|
||
},
|
||
// 改变页数
|
||
changePageSize(v) {
|
||
this.searchForm.pageSize = v;
|
||
this.getDataList();
|
||
},
|
||
// 搜索
|
||
handleSearch() {
|
||
this.searchForm.pageNumber = 0;
|
||
this.searchForm.pageSize = 10;
|
||
this.getDataList();
|
||
},
|
||
// 重置
|
||
handleReset() {
|
||
this.searchForm = {};
|
||
this.selectDate = "";
|
||
this.searchForm.pageNumber = 0;
|
||
this.searchForm.pageSize = 10;
|
||
this.getDataList();
|
||
},
|
||
// 时间段分别赋值
|
||
selectDateRange(v) {
|
||
if (v) {
|
||
this.searchForm.startDate = v[0];
|
||
this.searchForm.endDate = v[1];
|
||
}
|
||
},
|
||
// 获取列表数据
|
||
getDataList() {
|
||
this.loading = true;
|
||
if (this.selectDate && this.selectDate[0] && this.selectDate[1]) {
|
||
this.searchForm.startTime = this.selectDate[0].getTime();
|
||
this.searchForm.endTime = this.selectDate[1].getTime();
|
||
} else {
|
||
this.searchForm.startTime = null;
|
||
this.searchForm.endTime = null;
|
||
}
|
||
getPintuanList(this.searchForm).then((res) => {
|
||
this.loading = false;
|
||
if (res.success) {
|
||
this.data = res.result.records;
|
||
this.total = res.result.total;
|
||
}
|
||
});
|
||
},
|
||
// 新建拼团
|
||
newAct() {
|
||
this.$router.push({ name: "pintuan-edit" });
|
||
},
|
||
// 编辑拼团
|
||
edit(v) {
|
||
this.$router.push({ name: "pintuan-edit", query: { id: v.id } });
|
||
},
|
||
// 管理拼团商品
|
||
manage(v, status) {
|
||
this.$router.push({ name: "pintuan-goods", query: { id: v.id, status: status } });
|
||
},
|
||
// 手动开启拼团活动
|
||
open(v) {
|
||
let sTime = new Date();
|
||
sTime.setMinutes(sTime.getMinutes() + 10);
|
||
let eTime = new Date(new Date().setHours(0, 0, 0, 0) + 24 * 60 * 60 * 1000 - 1);
|
||
this.openStartTime = sTime.getTime();
|
||
this.openEndTime = eTime.getTime();
|
||
this.$Modal.confirm({
|
||
title: "确认开启(默认为当前时间的十分钟之后)",
|
||
content: "您确认要开启此拼团活动?",
|
||
onOk: () => {
|
||
let params = {
|
||
startTime: this.openStartTime,
|
||
endTime: this.openEndTime,
|
||
};
|
||
editPintuanStatus(v.id, params).then((res) => {
|
||
this.$Modal.remove();
|
||
if (res.success) {
|
||
this.$Message.success("开启活动成功");
|
||
this.getDataList();
|
||
}
|
||
});
|
||
},
|
||
render: (h) => {
|
||
return h("div", [
|
||
h("DatePicker", {
|
||
props: {
|
||
type: "datetimerange",
|
||
placeholder: "请选择开始时间和结束时间",
|
||
value: [sTime, eTime],
|
||
},
|
||
style: {
|
||
width: "350px",
|
||
},
|
||
on: {
|
||
input: (val) => {
|
||
if (val[0]) {
|
||
this.openStartTime = val[0].getTime();
|
||
}
|
||
if (val[1]) {
|
||
this.openEndTime = val[1].getTime();
|
||
}
|
||
},
|
||
},
|
||
}),
|
||
]);
|
||
},
|
||
});
|
||
},
|
||
// 关闭拼团活动
|
||
close(v) {
|
||
this.$Modal.confirm({
|
||
title: "确认关闭",
|
||
content: "您确认要关闭此拼团活动?",
|
||
loading: true,
|
||
onOk: () => {
|
||
editPintuanStatus(v.id).then((res) => {
|
||
this.$Modal.remove();
|
||
if (res.success) {
|
||
this.$Message.success("关闭活动成功");
|
||
this.getDataList();
|
||
}
|
||
});
|
||
},
|
||
});
|
||
},
|
||
// 删除拼团活动
|
||
remove(v) {
|
||
this.$Modal.confirm({
|
||
title: "确认删除",
|
||
content: "您确认要删除此拼团活动?",
|
||
loading: true,
|
||
onOk: () => {
|
||
// 删除
|
||
deletePintuan(v.id).then((res) => {
|
||
this.$Modal.remove();
|
||
if (res.success) {
|
||
this.$Message.success("操作成功");
|
||
this.getDataList();
|
||
}
|
||
});
|
||
},
|
||
});
|
||
},
|
||
},
|
||
mounted() {
|
||
this.init();
|
||
},
|
||
// 页面缓存处理,从该页面离开时,修改KeepAlive为false,保证进入该页面是刷新
|
||
beforeRouteLeave(to, from, next) {
|
||
from.meta.keepAlive = false;
|
||
next();
|
||
},
|
||
};
|
||
</script>
|
||
<style lang="scss">
|
||
@import "@/styles/table-common.scss";
|
||
</style>
|