<template>
|
<div>
|
<Card>
|
<Form ref="form" :model="form" :label-width="120" :rules="formRule">
|
<div class="base-info-item">
|
<h4>活动信息</h4>
|
<div class="form-item-view">
|
<FormItem label="活动名称" prop="promotionName">
|
<Input
|
type="text"
|
v-model="form.promotionName"
|
placeholder="请填写活动名称"
|
clearable
|
style="width: 260px"
|
/>
|
</FormItem>
|
<FormItem label="活动时间">
|
<DatePicker
|
type="datetimerange"
|
:options="options"
|
v-model="rangeTime"
|
format="yyyy-MM-dd HH:mm:ss"
|
placeholder="请选择活动时间"
|
style="width: 260px"
|
>
|
</DatePicker>
|
</FormItem>
|
|
<FormItem label="优惠券活动类型" prop="couponActivityType">
|
<RadioGroup
|
type="button"
|
button-style="solid"
|
v-model="form.couponActivityType"
|
>
|
<Radio label="REGISTERED">新人发券</Radio>
|
<Radio label="SPECIFY">精确发券</Radio>
|
<Radio label="INVITE_NEW">邀新赠券</Radio>
|
<Radio label="AUTO_COUPON">自动赠券</Radio>
|
</RadioGroup>
|
</FormItem>
|
<FormItem
|
label="领取频率"
|
v-if="form.couponActivityType === 'AUTO_COUPON'"
|
>
|
<RadioGroup
|
type="button"
|
button-style="solid"
|
v-model="form.couponFrequencyEnum"
|
>
|
<Radio label="DAY">每日一次</Radio>
|
<Radio label="WEEK">每周一次</Radio>
|
<Radio label="MONTH">每月一次</Radio>
|
</RadioGroup>
|
</FormItem>
|
<FormItem
|
label="活动范围"
|
prop="activityScope"
|
v-if="form.couponActivityType === 'SPECIFY'"
|
>
|
<RadioGroup type="button" button-style="solid" v-model="form.activityScope">
|
<Radio label="ALL">全部会员</Radio>
|
<Radio label="DESIGNATED">指定会员</Radio>
|
</RadioGroup>
|
</FormItem>
|
<FormItem
|
label="选择会员"
|
prop="scopeType"
|
v-if="
|
form.couponActivityType === 'SPECIFY' &&
|
form.activityScope === 'DESIGNATED'
|
"
|
>
|
<Button type="primary" icon="ios-add" @click="addVip" ghost
|
>选择会员</Button
|
>
|
<div style="margin-top: 24px" v-if="form.activityScope == 'DESIGNATED'">
|
<Table border :columns="userColumns" :data="this.selectedMember"> </Table>
|
</div>
|
</FormItem>
|
</div>
|
<h4>配置优惠券</h4>
|
<div class="form-item-view">
|
<FormItem label="选择优惠券" prop="scopeType">
|
<Button type="primary" :loading="submitLoading" @click="showSelector"
|
>选择优惠券</Button
|
>
|
</FormItem>
|
<FormItem label="赠送配置" prop="scopeType">
|
<Table border :columns="columns" :data="this.selectCouponList">
|
<template slot="sendNum" slot-scope="scope">
|
<Input
|
type="text"
|
v-model="form.couponActivityItems[scope.index].num"
|
placeholder="赠送数量"
|
/>
|
<Input
|
type="text"
|
v-model="form.couponActivityItems[scope.index].couponId"
|
v-show="false"
|
/>
|
</template>
|
</Table>
|
</FormItem>
|
|
<div>
|
<Button type="text" @click="closeCurrentPage">返回</Button>
|
<Button type="primary" :loading="submitLoading" @click="handleSubmit"
|
>提交</Button
|
>
|
</div>
|
</div>
|
</div>
|
</Form>
|
</Card>
|
<Modal
|
@on-ok="
|
() => {
|
this.showCouponSelect = false;
|
}
|
"
|
@on-cancel="
|
() => {
|
this.showCouponSelect = false;
|
}
|
"
|
v-model="showCouponSelect"
|
width="80%"
|
>
|
<couponTemplate
|
:checked="true"
|
:selectedList="selectCouponList"
|
getType="ACTIVITY"
|
promotionStatus="START"
|
@selected="selectedCoupon"
|
/>
|
</Modal>
|
|
<Modal width="1200" v-model="checkUserList">
|
<userList
|
v-if="checkUserList"
|
@callback="callbackSelectUser"
|
:selectedList="selectedMember"
|
ref="memberLayout"
|
/>
|
</Modal>
|
</div>
|
</template>
|
|
<script>
|
import couponTemplate from "@/views/promotions/coupon/coupon";
|
import userList from "@/views/member/list/index";
|
import { saveActivityCoupon } from "@/api/promotion";
|
import { promotionsScopeTypeRender } from "@/utils/promotions";
|
|
export default {
|
name: "add-coupon-activity",
|
components: {
|
couponTemplate,
|
userList,
|
},
|
data() {
|
return {
|
options: {
|
disabledDate(date) {
|
return date && date.valueOf() < Date.now() - 86400000;
|
},
|
},
|
showCouponSelect: false, //显示优惠券选择框
|
rangeTime: "", //时间区间
|
checkUserList: false, //会员选择器
|
selectedMember: [], //选择的会员
|
form: {
|
promotionName: "", //活动名称
|
activityScope: "ALL", //活动范围 ,默认全体发券
|
couponActivityType: "REGISTERED", //触发活动方式 默认新人赠券
|
startTime: "", //开始时间
|
endTime: "", //结束时间
|
memberDTOS: [], //指定会员范围
|
couponActivityItems: [], //优惠券列表
|
couponFrequencyEnum:"", //选择周期
|
},
|
submitLoading: false, // 添加或编辑提交状态
|
selectCouponList: [], //选择的优惠券列表
|
formRule: {
|
promotionName: [{ required: true, message: "活动名称不能为空" }],
|
rangeTime: [{ required: true, message: "请选择活动有效期" }],
|
description: [{ required: true, message: "请输入范围描述" }],
|
},
|
// 用户表格
|
userColumns: [
|
{
|
title: "用户名称",
|
key: "nickName",
|
minWidth: 120,
|
},
|
{
|
title: "手机号",
|
key: "mobile",
|
render: (h, params) => {
|
return h("div", params.row.mobile || "暂未填写");
|
},
|
},
|
{
|
title: "最后登录时间",
|
key: "lastLoginDate",
|
},
|
{
|
title: "操作",
|
key: "action",
|
minWidth: 50,
|
align: "center",
|
render: (h, params) => {
|
return h(
|
"Button",
|
{
|
props: {
|
size: "small",
|
type: "error",
|
ghost: true,
|
},
|
on: {
|
click: () => {
|
this.delUser(params.index);
|
},
|
},
|
},
|
"删除"
|
);
|
},
|
},
|
],
|
//优惠券表格
|
columns: [
|
{
|
title: "优惠券名称",
|
key: "couponName",
|
minWidth: 120,
|
},
|
{
|
title: "品类描述",
|
key: "scopeType",
|
width: 120,
|
render: (h, params) => {
|
return promotionsScopeTypeRender(h, params);
|
},
|
},
|
{
|
title: "面额/折扣",
|
key: "couponName",
|
minWidth: 120,
|
render: (h, params) => {
|
if (params.row.price) {
|
return h("priceColorScheme", {props:{value:params.row.price,color:this.$mainColor}} );
|
|
} else {
|
return h("div", params.row.couponDiscount + "折");
|
}
|
},
|
},
|
|
{
|
title: "赠送数量",
|
type: "template",
|
slot: "sendNum",
|
minWidth: 120,
|
},
|
{
|
title: "操作",
|
key: "action",
|
minWidth: 50,
|
align: "center",
|
render: (h, params) => {
|
return h(
|
"Button",
|
{
|
props: {
|
size: "small",
|
type: "error",
|
ghost: true,
|
},
|
on: {
|
click: () => {
|
this.delCoupon(params.index);
|
},
|
},
|
},
|
"删除"
|
);
|
},
|
},
|
],
|
};
|
},
|
methods: {
|
// 返回已选择的用户
|
callbackSelectUser(val) {
|
// 每次将返回的数据回调判断
|
let findUser = this.selectedMember.find((item) => {
|
return item.id === val.id;
|
});
|
// 如果没有则添加
|
if (!findUser) {
|
this.selectedMember.push(val);
|
} else {
|
// 有重复数据就删除
|
this.selectedMember.map((item, index) => {
|
if (item.id === findUser.id) {
|
this.selectedMember.splice(index, 1);
|
}
|
});
|
}
|
this.reSelectMember();
|
},
|
|
// 删除选择的会员
|
delUser(index) {
|
this.selectedMember.splice(index, 1);
|
this.reSelectMember();
|
},
|
//更新选择的会员
|
reSelectMember() {
|
this.form.memberDTOS = this.selectedMember.map((item) => {
|
return {
|
nickName: item.nickName,
|
id: item.id,
|
};
|
});
|
},
|
/**
|
* 返回优惠券*/
|
selectedCoupon(val) {
|
this.selectCouponList = val;
|
this.reSelectCoupon();
|
},
|
// 删除选择的优惠券
|
delCoupon(index) {
|
this.selectCouponList.splice(index, 1);
|
this.reSelectCoupon();
|
},
|
reSelectCoupon() {
|
// 清空原有数据
|
this.form.couponActivityItems = this.selectCouponList.map((item) => {
|
return {
|
num: 1,
|
couponId: item.id,
|
};
|
});
|
},
|
// 添加指定用户
|
addVip() {
|
this.checkUserList = true;
|
this.$nextTick(() => {
|
this.$refs.memberLayout.selectedMember = true;
|
});
|
},
|
//显示优惠券选择框
|
showSelector() {
|
this.showCouponSelect = true;
|
},
|
/** 保存平台优惠券 */
|
handleSubmit() {
|
if(this.form.couponFrequencyEnum !== ''){
|
console.log(this.activityScope)
|
if(this.form.activityScope == 'ALL'){
|
this.form.startTime = this.$options.filters.unixToDate(this.rangeTime[0] / 1000);
|
this.form.endTime = this.$options.filters.unixToDate(this.rangeTime[1] / 1000);
|
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
const params = JSON.parse(JSON.stringify(this.form));
|
this.submitLoading = true;
|
// 添加 避免编辑后传入id等数据 记得删除
|
delete params.id;
|
saveActivityCoupon(params).then((res) => {
|
this.submitLoading = false;
|
if (res.success) {
|
this.$Message.success("优惠券活动创建成功");
|
this.closeCurrentPage();
|
}
|
});
|
}
|
});
|
}else {
|
this.$Message.info('自动发券只能全用户发送')
|
this.form.couponActivityType = 'SPECIFY'
|
this.form.activityScope = 'ALL'
|
}
|
}else{
|
this.form.startTime = this.$options.filters.unixToDate(this.rangeTime[0] / 1000);
|
this.form.endTime = this.$options.filters.unixToDate(this.rangeTime[1] / 1000);
|
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
const params = JSON.parse(JSON.stringify(this.form));
|
this.submitLoading = true;
|
// 添加 避免编辑后传入id等数据 记得删除
|
delete params.id;
|
saveActivityCoupon(params).then((res) => {
|
this.submitLoading = false;
|
if (res.success) {
|
this.$Message.success("优惠券活动创建成功");
|
this.closeCurrentPage();
|
}
|
});
|
}
|
});
|
}
|
|
},
|
// 关闭当前页面
|
closeCurrentPage() {
|
this.$store.commit("removeTag", "add-platform-coupon");
|
localStorage.pageOpenedList = JSON.stringify(this.$store.state.app.pageOpenedList);
|
this.$router.go(-1);
|
},
|
},
|
};
|
</script>
|
|
<style lang="scss" scpoed>
|
h4 {
|
margin-bottom: 10px;
|
padding: 0 10px;
|
border: 1px solid #ddd;
|
background-color: #f8f8f8;
|
font-weight: bold;
|
color: #333;
|
font-size: 14px;
|
line-height: 40px;
|
text-align: left;
|
}
|
|
.describe {
|
font-size: 12px;
|
margin-left: 10px;
|
color: #999;
|
}
|
|
.effectiveDays {
|
font-size: 12px;
|
color: #999;
|
|
> * {
|
margin: 0 4px;
|
}
|
}
|
</style>
|