|
|
<template>
|
|
|
<i-modal v-model="visiable" :loading="posting" :title="allreadonly ? '查看优惠券' : '创建/编辑优惠券'" @on-ok="onOk" width="600">
|
|
|
<i-modal
|
|
|
v-model="visiable"
|
|
|
:loading="posting"
|
|
|
:title="allreadonly ? '查看优惠券' : '创建/编辑优惠券'"
|
|
|
@on-ok="onOk"
|
|
|
width="600"
|
|
|
>
|
|
|
<i-spin v-if="loading"></i-spin>
|
|
|
<i-form v-else ref="formCoupon" :rules="ruleValidate" :model="formData" :label-width="80">
|
|
|
<i-form-item class="form-group" label="优惠券类型"></i-form-item>
|
...
|
...
|
@@ -12,26 +18,53 @@ |
|
|
</i-form-item>
|
|
|
|
|
|
<i-form-item class="form-group" label="基本信息"></i-form-item>
|
|
|
<i-form-item label="Token" v-if="couponToken">
|
|
|
{{couponToken}}
|
|
|
</i-form-item>
|
|
|
<i-form-item label="Token" v-if="couponToken">{{couponToken}}</i-form-item>
|
|
|
<i-form-item label="名称" prop="couponName">
|
|
|
<i-input placeholder="名称建议30字以内" v-model="formData.couponName" :disabled="allreadonly" style="width: 200px"></i-input>
|
|
|
<i-input
|
|
|
placeholder="名称建议30字以内"
|
|
|
v-model="formData.couponName"
|
|
|
:disabled="allreadonly"
|
|
|
style="width: 200px"
|
|
|
></i-input>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="数量" prop="couponNum">
|
|
|
<i-input-number placeholder="数量" v-model="formData.couponNum" :disabled="allreadonly" style="width: 100px;"></i-input-number>
|
|
|
<i-input-number
|
|
|
placeholder="数量"
|
|
|
v-model="formData.couponNum"
|
|
|
:disabled="allreadonly"
|
|
|
style="width: 100px;"
|
|
|
></i-input-number>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="使用次数" prop="useNum">
|
|
|
<i-input placeholder="使用次数" v-model="formData.useNum" disabled style="width: 100px;"></i-input>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="使用期限" prop="time">
|
|
|
<i-date-picker type="datetimerange" v-model="formData.time" :disabled="allreadonly" placeholder="使用期限" format="yyyy-MM-dd HH:mm:ss" style="width: 250px"></i-date-picker>
|
|
|
<i-date-picker
|
|
|
type="datetimerange"
|
|
|
v-model="formData.time"
|
|
|
:disabled="allreadonly"
|
|
|
placeholder="使用期限"
|
|
|
format="yyyy-MM-dd HH:mm:ss"
|
|
|
style="width: 250px"
|
|
|
></i-date-picker>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="领券期限" prop="receiveTime">
|
|
|
<i-date-picker type="datetimerange" v-model="formData.receiveTime" :disabled="readonly" placeholder="领券期限" format="yyyy-MM-dd HH:mm:ss" style="width: 250px"></i-date-picker>
|
|
|
<i-date-picker
|
|
|
type="datetimerange"
|
|
|
v-model="formData.receiveTime"
|
|
|
:disabled="readonly"
|
|
|
placeholder="领券期限"
|
|
|
format="yyyy-MM-dd HH:mm:ss"
|
|
|
style="width: 250px"
|
|
|
></i-date-picker>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="优惠券说明" prop="remark">
|
|
|
<i-input type="textarea" placeholder="优惠券使用条件简介" :disabled="allreadonly" v-model="formData.remark"></i-input>
|
|
|
<i-input
|
|
|
type="textarea"
|
|
|
placeholder="优惠券使用条件简介"
|
|
|
:disabled="allreadonly"
|
|
|
v-model="formData.remark"
|
|
|
></i-input>
|
|
|
</i-form-item>
|
|
|
<i-form-item class="form-group" label="使用条件"></i-form-item>
|
|
|
<i-form-item label="优惠条件" prop="useLimitType" style="display: inline-block; width: 100%">
|
...
|
...
|
@@ -42,13 +75,21 @@ |
|
|
<div style="display: inline-block" v-if="formData.useLimitType === 2">
|
|
|
|
|
|
金额满:
|
|
|
<i-input-number style="width: 100px" :disabled="readonly" placeholder="限制金额" v-model="formData.useLimitValue">
|
|
|
</i-input-number>
|
|
|
<i-input-number
|
|
|
style="width: 100px"
|
|
|
:disabled="readonly"
|
|
|
placeholder="限制金额"
|
|
|
v-model="formData.useLimitValue"
|
|
|
></i-input-number>
|
|
|
</div>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="优惠金额" prop="couponAmount">
|
|
|
<i-input-number placeholder="优惠金额" :disabled="readonly" v-model="formData.couponAmount" style="width: 100px">
|
|
|
</i-input-number>
|
|
|
<i-input-number
|
|
|
placeholder="优惠金额"
|
|
|
:disabled="readonly"
|
|
|
v-model="formData.couponAmount"
|
|
|
style="width: 100px"
|
|
|
></i-input-number>
|
|
|
</i-form-item>
|
|
|
|
|
|
<i-form-item label="适用范围" prop="productLimitType">
|
...
|
...
|
@@ -59,15 +100,26 @@ |
|
|
</i-select>
|
|
|
</i-form-item>
|
|
|
|
|
|
<i-form-item prop="productLimitValue" v-if="formData.productLimitType === 1 || formData.productLimitType === 3">
|
|
|
<i-input type="textarea" :disabled="readonly" placeholder="填写商品编码,多个商品编码用英文逗号分隔" v-model="formData.productLimitValue"></i-input>
|
|
|
<i-form-item
|
|
|
prop="productLimitValue"
|
|
|
v-if="formData.productLimitType === 1 || formData.productLimitType === 3"
|
|
|
>
|
|
|
<i-input
|
|
|
type="textarea"
|
|
|
:disabled="readonly"
|
|
|
placeholder="填写商品编码,多个商品编码用英文逗号分隔"
|
|
|
v-model="formData.productLimitValue"
|
|
|
></i-input>
|
|
|
<i-poptip trigger="hover">
|
|
|
<div slot="content">
|
|
|
<p>1.上传文件必须是xlsx文件</p>
|
|
|
<p>2.第一行标题栏:商品编码</p>
|
|
|
<p>3.<a href="javascript:;" @click="onExample">下载样例</a></p>
|
|
|
<p>
|
|
|
3.
|
|
|
<a href="javascript:;" @click="onExample">下载样例</a>
|
|
|
</p>
|
|
|
</div>
|
|
|
<i-upload action="" :format="['xlsx']" :max-size="1024" :before-upload="onBeforeUpload">
|
|
|
<i-upload action :format="['xlsx']" :max-size="1024" :before-upload="onBeforeUpload">
|
|
|
<i-button type="success" size="small" :disabled="readonly">导入</i-button>
|
|
|
<p>{{uploadTxt}}</p>
|
|
|
</i-upload>
|
...
|
...
|
@@ -105,71 +157,74 @@ |
|
|
<checkbox label="闲鱼" :disabled="readonly"></checkbox>
|
|
|
</checkbox-group>
|
|
|
</i-form-item>
|
|
|
<i-form-item label="需要校验" prop="checkRequired">
|
|
|
<checkbox v-model="formData.isCheckRequired" :disabled="readonly" @on-change="getCheckRequired"></checkbox>
|
|
|
</i-form-item>
|
|
|
</i-form>
|
|
|
</i-modal>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import Api from 'api/api';
|
|
|
import dayjs from 'dayjs';
|
|
|
import XLSX from 'xlsx';
|
|
|
import Api from "api/api";
|
|
|
import dayjs from "dayjs";
|
|
|
import XLSX from "xlsx";
|
|
|
|
|
|
const api = new Api();
|
|
|
const forbidenTypeMap = {
|
|
|
'现货': 1,
|
|
|
'预售': 4,
|
|
|
'二手': 6,
|
|
|
'全新瑕疵': 5,
|
|
|
'闪购': 3
|
|
|
};
|
|
|
const forbidenLabelMap = {
|
|
|
1: '现货',
|
|
|
4: '预售',
|
|
|
6: '二手',
|
|
|
5: '全新瑕疵',
|
|
|
3: '闪购'
|
|
|
};
|
|
|
const api = new Api();
|
|
|
const forbidenTypeMap = {
|
|
|
现货: 1,
|
|
|
预售: 4,
|
|
|
二手: 6,
|
|
|
全新瑕疵: 5,
|
|
|
闪购: 3
|
|
|
};
|
|
|
const forbidenLabelMap = {
|
|
|
1: "现货",
|
|
|
4: "预售",
|
|
|
6: "二手",
|
|
|
5: "全新瑕疵",
|
|
|
3: "闪购"
|
|
|
};
|
|
|
|
|
|
const allowTypeMap = {
|
|
|
const allowTypeMap = {
|
|
|
// '线下店订单': '2',
|
|
|
'极速发货': '9-N',
|
|
|
'极速寄存': '9-Y',
|
|
|
'预售': '4',
|
|
|
'瑕疵': '5',
|
|
|
'二手' : '6',
|
|
|
极速发货: "9-N",
|
|
|
极速寄存: "9-Y",
|
|
|
预售: "4",
|
|
|
瑕疵: "5",
|
|
|
二手: "6",
|
|
|
// '鉴定': '8',
|
|
|
'海外直邮': '17',
|
|
|
'现货发货': '1-N',
|
|
|
'现货寄存': '1-Y',
|
|
|
'闪购发货': '3-N',
|
|
|
'闪购寄存': '3-Y'
|
|
|
};
|
|
|
const allowLabelMap = {
|
|
|
海外直邮: "17",
|
|
|
现货发货: "1-N",
|
|
|
现货寄存: "1-Y",
|
|
|
闪购发货: "3-N",
|
|
|
闪购寄存: "3-Y"
|
|
|
};
|
|
|
const allowLabelMap = {
|
|
|
// '2': '线下店订单',
|
|
|
'9-N': '极速发货',
|
|
|
'9-Y': '极速寄存',
|
|
|
'4': '预售',
|
|
|
'5': '瑕疵',
|
|
|
'6': '二手',
|
|
|
"9-N": "极速发货",
|
|
|
"9-Y": "极速寄存",
|
|
|
"4": "预售",
|
|
|
"5": "瑕疵",
|
|
|
"6": "二手",
|
|
|
// '8': '鉴定',
|
|
|
'17': '海外直邮',
|
|
|
'1-N': '现货发货',
|
|
|
'1-Y': '现货寄存',
|
|
|
'3-N': '闪购发货',
|
|
|
'3-Y':'闪购寄存'
|
|
|
};
|
|
|
"17": "海外直邮",
|
|
|
"1-N": "现货发货",
|
|
|
"1-Y": "现货寄存",
|
|
|
"3-N": "闪购发货",
|
|
|
"3-Y": "闪购寄存"
|
|
|
};
|
|
|
const businessClientTypeMap = {
|
|
|
'UFO': 'ufo',
|
|
|
'闲鱼': 'h5/xianyu'
|
|
|
};
|
|
|
const businessClientLabelMap = {
|
|
|
'ufo': 'UFO',
|
|
|
'h5/xianyu': '闲鱼',
|
|
|
};
|
|
|
UFO: "ufo",
|
|
|
闲鱼: "h5/xianyu"
|
|
|
};
|
|
|
const businessClientLabelMap = {
|
|
|
ufo: "UFO",
|
|
|
"h5/xianyu": "闲鱼"
|
|
|
};
|
|
|
|
|
|
export default {
|
|
|
export default {
|
|
|
components: {},
|
|
|
name: 'ModalCreateCoupon',
|
|
|
name: "ModalCreateCoupon",
|
|
|
data() {
|
|
|
return {
|
|
|
readonly: false,
|
...
|
...
|
@@ -177,95 +232,126 @@ const businessClientTypeMap = { |
|
|
visiable: false,
|
|
|
loading: false,
|
|
|
posting: true,
|
|
|
uploadTxt: '',
|
|
|
couponToken: '',
|
|
|
uploadTxt: "",
|
|
|
couponToken: "",
|
|
|
formData: {
|
|
|
id: 0,
|
|
|
couponName: '',
|
|
|
couponName: "",
|
|
|
couponType: 0,
|
|
|
couponNum: 0,
|
|
|
useNum: 1,
|
|
|
couponAmount: 0,
|
|
|
useLimitType: 0,
|
|
|
remark: '',
|
|
|
remark: "",
|
|
|
productLimitType: 2,
|
|
|
productLimitValue: '',
|
|
|
productLimitValue: "",
|
|
|
useLimitValue: 0,
|
|
|
time: ['', ''],
|
|
|
receiveTime: ['', ''],
|
|
|
// skupForbidTypeLable:[],
|
|
|
// skupForbidType: ''
|
|
|
time: ["", ""],
|
|
|
receiveTime: ["", ""],
|
|
|
// skupForbidTypeLable:[],
|
|
|
// skupForbidType: ''
|
|
|
skupAllowTypeLabel: [],
|
|
|
skupAllowType: '',
|
|
|
businessClient: ''
|
|
|
skupAllowType: "",
|
|
|
businessClient: "",
|
|
|
checkRequired: 0,
|
|
|
isCheckRequired: true,
|
|
|
},
|
|
|
ruleValidate: {
|
|
|
couponType: {required: true, validator: (rule, value, callback) => {
|
|
|
if (value === 0 || value === '0') {
|
|
|
callback(new Error('请选择优惠券类型'));
|
|
|
couponType: {
|
|
|
required: true,
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value === 0 || value === "0") {
|
|
|
callback(new Error("请选择优惠券类型"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
}},
|
|
|
couponName: {required: true, max: 30, message: '请输入名称'},
|
|
|
couponNum: {type: 'number', required: true, min: 1, message: '请输入数量'},
|
|
|
couponAmount: {type: 'number', required: true, min: 1, message: '请输入优惠金额'},
|
|
|
time: {required: true, validator: (rule, value, callback) => {
|
|
|
}
|
|
|
},
|
|
|
couponName: { required: true, max: 30, message: "请输入名称" },
|
|
|
couponNum: {
|
|
|
type: "number",
|
|
|
required: true,
|
|
|
min: 1,
|
|
|
message: "请输入数量"
|
|
|
},
|
|
|
couponAmount: {
|
|
|
type: "number",
|
|
|
required: true,
|
|
|
min: 1,
|
|
|
message: "请输入优惠金额"
|
|
|
},
|
|
|
time: {
|
|
|
required: true,
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value.some(v => !v)) {
|
|
|
callback(new Error('请选择使用期限'));
|
|
|
callback(new Error("请选择使用期限"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
}},
|
|
|
receiveTime: {required: true, validator: (rule, value, callback) => {
|
|
|
}
|
|
|
},
|
|
|
receiveTime: {
|
|
|
required: true,
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value.some(v => !v)) {
|
|
|
callback(new Error('请选择领券期限'));
|
|
|
callback(new Error("请选择领券期限"));
|
|
|
} else {
|
|
|
let endTime = this.formData.time[1] ? dayjs(this.formData.time[1]).unix() : void 0;
|
|
|
let endTime = this.formData.time[1]
|
|
|
? dayjs(this.formData.time[1]).unix()
|
|
|
: void 0;
|
|
|
let receiveEndTime = value[1] ? dayjs(value[1]).unix() : void 0;
|
|
|
// console.log('====/'+endTime+"///===/"+receiveEndTime)
|
|
|
if(endTime < receiveEndTime){
|
|
|
callback(new Error('请选择领券结束时间小于使用结束时间'));
|
|
|
}else {
|
|
|
if (endTime < receiveEndTime) {
|
|
|
callback(new Error("请选择领券结束时间小于使用结束时间"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}},
|
|
|
remark: {required: true, message: '请输入优惠券说明'},
|
|
|
useLimitType: {required: true, validator: (rule, value, callback) => {
|
|
|
}
|
|
|
},
|
|
|
remark: { required: true, message: "请输入优惠券说明" },
|
|
|
useLimitType: {
|
|
|
required: true,
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value >= 0) {
|
|
|
if (value === 2) {
|
|
|
if (parseInt(this.formData.useLimitValue) > 0) {
|
|
|
callback();
|
|
|
} else {
|
|
|
callback(new Error('请输入限制金额'));
|
|
|
callback(new Error("请输入限制金额"));
|
|
|
}
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
} else {
|
|
|
callback(new Error('请选择优惠条件'));
|
|
|
callback(new Error("请选择优惠条件"));
|
|
|
}
|
|
|
}
|
|
|
}},
|
|
|
productLimitValue: {required: false, validator: (rule, value, callback) => {
|
|
|
const ids = (value || '').split(',');
|
|
|
},
|
|
|
productLimitValue: {
|
|
|
required: false,
|
|
|
validator: (rule, value, callback) => {
|
|
|
const ids = (value || "").split(",");
|
|
|
|
|
|
if (!value || !ids.length) {
|
|
|
callback(new Error('请输入适用范围'));
|
|
|
} else if(ids.some(id => id ? !parseInt(id) : false)) {
|
|
|
callback(new Error('适用范围格式错误'));
|
|
|
callback(new Error("请输入适用范围"));
|
|
|
} else if (ids.some(id => (id ? !parseInt(id) : false))) {
|
|
|
callback(new Error("适用范围格式错误"));
|
|
|
} else {
|
|
|
callback();
|
|
|
}
|
|
|
}},
|
|
|
productLimitType: {required: true, validator: (rule, value, callback) => {
|
|
|
}
|
|
|
},
|
|
|
productLimitType: {
|
|
|
required: true,
|
|
|
validator: (rule, value, callback) => {
|
|
|
if (value === 1 || value === 2 || value === 3) {
|
|
|
callback();
|
|
|
} else {
|
|
|
callback(new Error('请选择类型'));
|
|
|
callback(new Error("请选择类型"));
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}}
|
|
|
}
|
|
|
};
|
|
|
},
|
...
|
...
|
@@ -276,31 +362,32 @@ const businessClientTypeMap = { |
|
|
this.allreadonly = allreadonly;
|
|
|
this.posting = this.visiable = true;
|
|
|
this.$refs.formCoupon.resetFields();
|
|
|
this.couponToken = '';
|
|
|
this.couponToken = "";
|
|
|
let initData = {
|
|
|
id: 0,
|
|
|
couponName: '',
|
|
|
couponName: "",
|
|
|
couponNum: 0,
|
|
|
couponType: 0,
|
|
|
useNum: 1,
|
|
|
couponAmount: 0,
|
|
|
useLimitType: 0,
|
|
|
remark: '',
|
|
|
productLimitValue: '',
|
|
|
remark: "",
|
|
|
productLimitValue: "",
|
|
|
productLimitType: 2,
|
|
|
useLimitValue: 0,
|
|
|
time: ['', ''],
|
|
|
time: ["", ""],
|
|
|
skupAllowTypeLabel: [],
|
|
|
skupAllowType: '',
|
|
|
skupAllowType: "",
|
|
|
businessClientLabel: [],
|
|
|
businessClient: ''
|
|
|
// skupForbidTypeLable:[],
|
|
|
// skupForbidType: ''
|
|
|
businessClient: "",
|
|
|
checkRequired: 0
|
|
|
// skupForbidTypeLable:[],
|
|
|
// skupForbidType: ''
|
|
|
};
|
|
|
|
|
|
if (id) {
|
|
|
this.loading = true;
|
|
|
const result = await api._get('/ufoPlatform/coupon/getCouponInfo', {
|
|
|
const result = await api._get("/ufoPlatform/coupon/getCouponInfo", {
|
|
|
id
|
|
|
});
|
|
|
|
...
|
...
|
@@ -315,19 +402,21 @@ const businessClientTypeMap = { |
|
|
this.couponToken = coupon.couponToken;
|
|
|
let skupAllowTypeLabel = [];
|
|
|
if (coupon.skupAllowType) {
|
|
|
let arr = coupon.skupAllowType.split(',');
|
|
|
for(let i = 0; i < arr.length; i++) {
|
|
|
let arr = coupon.skupAllowType.split(",");
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
|
skupAllowTypeLabel.push(allowLabelMap[arr[i]]);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
let businessClientTypeLabel = [];
|
|
|
if (coupon.businessClient) {
|
|
|
let arr = coupon.businessClient.split(',');
|
|
|
for(let i = 0; i < arr.length; i++) {
|
|
|
let arr = coupon.businessClient.split(",");
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
|
businessClientTypeLabel.push(businessClientLabelMap[arr[i]]);
|
|
|
}
|
|
|
}
|
|
|
let isCheckRequired = coupon.checkRequired === 1
|
|
|
console.log('=====:'+isCheckRequired)
|
|
|
initData = {
|
|
|
id,
|
|
|
couponName: coupon.couponName,
|
...
|
...
|
@@ -338,15 +427,24 @@ const businessClientTypeMap = { |
|
|
useLimitType: coupon.useLimitType,
|
|
|
remark: coupon.remark,
|
|
|
productLimitType: coupon.productLimitType,
|
|
|
productLimitValue: (productLimits || []).map(i => i.productId).join(','),
|
|
|
productLimitValue: (productLimits || [])
|
|
|
.map(i => i.productId)
|
|
|
.join(","),
|
|
|
useLimitValue: coupon.useLimitValue,
|
|
|
time: [dayjs.unix(coupon.startTime).format('YYYY-MM-DD HH:mm:ss'), dayjs.unix(coupon.endTime).format('YYYY-MM-DD HH:mm:ss')],
|
|
|
receiveTime: [dayjs.unix(coupon.receiveStartTime).format('YYYY-MM-DD HH:mm:ss'), dayjs.unix(coupon.receiveEndTime).format('YYYY-MM-DD HH:mm:ss')],
|
|
|
time: [
|
|
|
dayjs.unix(coupon.startTime).format("YYYY-MM-DD HH:mm:ss"),
|
|
|
dayjs.unix(coupon.endTime).format("YYYY-MM-DD HH:mm:ss")
|
|
|
],
|
|
|
receiveTime: [
|
|
|
dayjs.unix(coupon.receiveStartTime).format("YYYY-MM-DD HH:mm:ss"),
|
|
|
dayjs.unix(coupon.receiveEndTime).format("YYYY-MM-DD HH:mm:ss")
|
|
|
],
|
|
|
skupAllowTypeLabel: skupAllowTypeLabel,
|
|
|
skupAllowType: coupon.skupAllowType,
|
|
|
businessClientLabel: businessClientTypeLabel,
|
|
|
businessClient: coupon.businessClient, //购买渠道
|
|
|
|
|
|
checkRequired: coupon.checkRequired,
|
|
|
isCheckRequired
|
|
|
};
|
|
|
} else {
|
|
|
result.message && this.$Message.warning(result.message);
|
...
|
...
|
@@ -366,7 +464,17 @@ const businessClientTypeMap = { |
|
|
}
|
|
|
});
|
|
|
},
|
|
|
getCheckBox() { // checkbox勾选取消的监测
|
|
|
getCheckRequired(checked) {
|
|
|
if(checked) {
|
|
|
this.formData.checkRequired = 1
|
|
|
}else {
|
|
|
this.formData.checkRequired = 0
|
|
|
}
|
|
|
|
|
|
|
|
|
},
|
|
|
getCheckBox() {
|
|
|
// checkbox勾选取消的监测
|
|
|
let arr = [];
|
|
|
for (let i = 0; i < this.formData.skupAllowTypeLabel.length; i++) {
|
|
|
let allowType = this.formData.skupAllowTypeLabel[i];
|
...
|
...
|
@@ -375,9 +483,9 @@ const businessClientTypeMap = { |
|
|
}
|
|
|
|
|
|
// console.log(arr);
|
|
|
this.formData.skupAllowType = arr.join(',');
|
|
|
this.formData.skupAllowType = arr.join(",");
|
|
|
},
|
|
|
getChannelCheckBox(){
|
|
|
getChannelCheckBox() {
|
|
|
let arr = [];
|
|
|
for (let i = 0; i < this.formData.businessClientLabel.length; i++) {
|
|
|
let businessClientType = this.formData.businessClientLabel[i];
|
...
|
...
|
@@ -386,7 +494,7 @@ const businessClientTypeMap = { |
|
|
}
|
|
|
|
|
|
// console.log(arr);
|
|
|
this.formData.businessClient = arr.join(',');
|
|
|
this.formData.businessClient = arr.join(",");
|
|
|
},
|
|
|
async saveData(params) {
|
|
|
if (this.allreadonly) {
|
...
|
...
|
@@ -394,7 +502,7 @@ const businessClientTypeMap = { |
|
|
return;
|
|
|
}
|
|
|
|
|
|
const result = await api._post('/ufoPlatform/coupon/saveOrUpdateCoupon', {
|
|
|
const result = await api._post("/ufoPlatform/coupon/saveOrUpdateCoupon", {
|
|
|
id: params.id || void 0,
|
|
|
couponName: params.couponName,
|
|
|
couponAmount: params.couponAmount,
|
...
|
...
|
@@ -405,21 +513,28 @@ const businessClientTypeMap = { |
|
|
productLimitType: params.productLimitType,
|
|
|
productLimitValue: params.productLimitValue,
|
|
|
remark: params.remark,
|
|
|
useLimitType: parseInt(params.useLimitType) >= 0 ? params.useLimitType : void 0,
|
|
|
useLimitType:
|
|
|
parseInt(params.useLimitType) >= 0 ? params.useLimitType : void 0,
|
|
|
startTime: params.time[0] ? dayjs(params.time[0]).unix() : void 0,
|
|
|
endTime: params.time[1] ? dayjs(params.time[1]).unix() : void 0,
|
|
|
skupAllowType: params.skupAllowType,
|
|
|
businessClient: params.businessClient,
|
|
|
receiveStartTime: params.receiveTime[0] ? dayjs(params.receiveTime[0]).unix() : void 0,
|
|
|
receiveEndTime: params.receiveTime[1] ? dayjs(params.receiveTime[1]).unix() : void 0,
|
|
|
receiveStartTime: params.receiveTime[0]
|
|
|
? dayjs(params.receiveTime[0]).unix()
|
|
|
: void 0,
|
|
|
receiveEndTime: params.receiveTime[1]
|
|
|
? dayjs(params.receiveTime[1]).unix()
|
|
|
: void 0,
|
|
|
checkRequired:params.checkRequired
|
|
|
|
|
|
});
|
|
|
|
|
|
// console.log('result=', result);
|
|
|
|
|
|
if (result.code === 200) {
|
|
|
this.$Message.success('保存成功');
|
|
|
this.$Message.success("保存成功");
|
|
|
this.visiable = false;
|
|
|
this.$emit('on-created');
|
|
|
this.$emit("on-created");
|
|
|
} else {
|
|
|
result.message && this.$Message.warning(result.message);
|
|
|
this.posting = false;
|
...
|
...
|
@@ -429,68 +544,72 @@ const businessClientTypeMap = { |
|
|
}
|
|
|
},
|
|
|
onBeforeUpload(file) {
|
|
|
const fileExt = file.name.split('.').pop().toLocaleLowerCase();
|
|
|
const fileExt = file.name
|
|
|
.split(".")
|
|
|
.pop()
|
|
|
.toLocaleLowerCase();
|
|
|
// console.log(fileExt)
|
|
|
if (fileExt !== 'xlsx') {
|
|
|
this.$Message.warning('文件格式错误');
|
|
|
if (fileExt !== "xlsx") {
|
|
|
this.$Message.warning("文件格式错误");
|
|
|
return false;
|
|
|
}
|
|
|
if (file.size > 1024 * 1024) {
|
|
|
this.$Message.warning('文件大小超过1M');
|
|
|
this.$Message.warning("文件大小超过1M");
|
|
|
return false;
|
|
|
}
|
|
|
const reader = new FileReader();
|
|
|
|
|
|
reader.readAsArrayBuffer(file);
|
|
|
reader.onloadstart = () => {
|
|
|
this.uploadTxt = '开始读取';
|
|
|
this.uploadTxt = "开始读取";
|
|
|
};
|
|
|
reader.onprogress = e => {
|
|
|
this.uploadTxt = `进度:${Math.round(e.loaded / e.total * 100)}...`;
|
|
|
this.uploadTxt = `进度:${Math.round((e.loaded / e.total) * 100)}...`;
|
|
|
};
|
|
|
reader.onerror = () => {
|
|
|
this.uploadTxt = '文件读取出错';
|
|
|
this.uploadTxt = "文件读取出错";
|
|
|
};
|
|
|
reader.onload = e => {
|
|
|
this.uploadTxt = '';
|
|
|
this.uploadTxt = "";
|
|
|
try {
|
|
|
const data = e.target.result;
|
|
|
const workbook = XLSX.read(data, { type: 'array' });
|
|
|
const workbook = XLSX.read(data, { type: "array" });
|
|
|
const firstSheetName = workbook.SheetNames[0];
|
|
|
const worksheet = workbook.Sheets[firstSheetName];
|
|
|
const results = XLSX.utils.sheet_to_json(worksheet);
|
|
|
|
|
|
this.formData.productLimitValue = results.map(r => r['商品编码']).filter(r => r).join(',');
|
|
|
|
|
|
this.formData.productLimitValue = results
|
|
|
.map(r => r["商品编码"])
|
|
|
.filter(r => r)
|
|
|
.join(",");
|
|
|
} catch (error) {
|
|
|
this.uploadTxt = '文件解析失败,请按照格式上传';
|
|
|
this.uploadTxt = "文件解析失败,请按照格式上传";
|
|
|
}
|
|
|
|
|
|
|
|
|
};
|
|
|
return false;
|
|
|
},
|
|
|
onExample() {
|
|
|
const wb = XLSX.utils.book_new();
|
|
|
const ws = XLSX.utils.json_to_sheet([{
|
|
|
'商品编码': '123456'
|
|
|
}]);
|
|
|
XLSX.utils.book_append_sheet(wb, ws, '优惠券适用范围示例');
|
|
|
XLSX.writeFile(wb, '优惠券适用范围示例.xlsx');
|
|
|
const ws = XLSX.utils.json_to_sheet([
|
|
|
{
|
|
|
商品编码: "123456"
|
|
|
}
|
|
|
]);
|
|
|
XLSX.utils.book_append_sheet(wb, ws, "优惠券适用范围示例");
|
|
|
XLSX.writeFile(wb, "优惠券适用范围示例.xlsx");
|
|
|
}
|
|
|
};
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.form-group {
|
|
|
.form-group {
|
|
|
width: 100%;
|
|
|
height: 30px;
|
|
|
background-color: #f5f7f9;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.ivu-form-item-label {
|
|
|
.ivu-form-item-label {
|
|
|
width: 90px !important;
|
|
|
}
|
|
|
|
|
|
}
|
|
|
</style> |
...
|
...
|
|