add.vue
16.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<template>
<div class="addGroupBuy">
<!-- 新增用户 -->
<div class="addGroupBuyBox">
<el-form ref="ruleForm" class="formBox" :model="addForm" label-width="150px" :rules="groupBuyRules">
<div class="flexBox">
<el-form-item label="活动名称" prop="groupName">
<el-input v-model="addForm.groupName" placeholder="请输入活动名称" oninput="value=value.replace(/\s+/g, '')" />
</el-form-item>
</div>
<div class="flexBox">
<el-form-item label="备注">
<el-input v-model="addForm.remark" placeholder="请输入备注" />
</el-form-item>
</div>
<el-form-item class="timeDataBox" label="拼团使用时间">
<div class="dateBox">
<el-form-item>
<el-date-picker
v-model="dateInfo"
type="datetimerange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="yyyy-MM-dd HH:mm:ss"
/>
</el-form-item>
</div>
</el-form-item>
<el-form-item class="inputW" label="成团人数" prop="person">
<el-input v-model="addForm.person" type="number" oninput="value=value.replace(/[^\d]/g,'')" />人
</el-form-item>
<el-form-item class="inputW" label="成团有效时间" prop="effectiveTime">
<el-input v-model="addForm.effectiveTime" type="number" oninput="value=value.replace(/[^\d]/g,'')" />小时
</el-form-item>
<el-form-item class="boxWidth" label="商品限购" prop="proQuota">
<el-radio v-model="addForm.ifLimit" label="1">不限购</el-radio>
<el-radio v-model="addForm.ifLimit" label="2">限购</el-radio>
<el-input v-model="addForm.limitNumber" :disabled="addForm.ifLimit === '1'" type="number" oninput="value=value.replace(/[^\d]/g,'')" />件/人
</el-form-item>
<el-form-item class="boxWidth" label="活动预热" prop="preheat">
<el-radio v-model="addForm.ifEnable" label="1">停用</el-radio>
<el-radio v-model="addForm.ifEnable" label="2">启用</el-radio>
<el-input v-model="addForm.enableTime" :disabled="addForm.ifEnable === '1'" type="number" oninput="value=value.replace(/[^\d]/g,'')" />小时前
</el-form-item>
<el-form-item label="优惠券叠加" prop="overlying">
<el-radio v-model="addForm.ifAdd" label="1">叠加</el-radio>
<el-radio v-model="addForm.ifAdd" label="0">不叠加</el-radio>
</el-form-item>
<el-form-item class="applyType" label="活动商品" prop="commodity">
<span class="selectBtn" @click="chooseProduct">请选择<i v-if="addForm.details.length !== 0" class="selectNum">{{ addForm.details.length }}</i></span>
</el-form-item>
</el-form>
</div>
<span slot="footer" class="dialog-footer">
<el-button type="primary" @click="addGroupBuyFn('ruleForm')">保 存</el-button>
<el-button type="danger" @click="goToGroupBuy">取 消</el-button>
</span>
<!-- 新建分组弹框 -->
<el-dialog
title="选择商品"
:visible.sync="isVisible"
width="55%"
top="50px"
class="group-dialog"
:close-on-click-modal="false"
:modal-append-to-body="false"
:modal="false"
>
<!-- 表格 -->
<div class="tableBox">
<el-table
ref="multipleTable"
:data="tableData"
border
:header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
tooltip-effect="dark"
style="width: 100%"
:row-key="getRowKeys"
max-height="600"
@selection-change="handleSelectionChange"
>
<el-table-column
type="selection"
:reserve-selection="true"
width="55"
/>
<el-table-column label="商品信息" width="200" align="center">
<template slot-scope="scope">
<img height="80" width="80" :src="scope.row.image " alt srcset>
</template>
</el-table-column>
<el-table-column prop="productName" label="" />
<el-table-column prop="originalPrice" label="原价(元)" width="120" />
<el-table-column prop="value" label="规格" width="120" />
<el-table-column prop="workPrice" label="拼团价(元)" width="153">
<template slot-scope="scope">
<el-input-number v-model="scope.row.workPrice" size="small" :controls="false" type="number" :max="10000000" :min="0.01" :precision="2" @change="changeInput(scope.row)" />
<!-- <el-input v-model="scope.row.workPrice" size="small" type="number" oninput="value=value.replace(/-/, '')" /> -->
</template>
</el-table-column>
<el-table-column prop="stockNumber" label="库存" width="120" show-overflow-tooltip />
<!-- <el-table-column width="80" label="操作" show-overflow-tooltip>-->
<!-- <template slot-scope="scope">-->
<!-- <div class="btnList">-->
<!-- <el-popconfirm title="确定删除此券?" @onConfirm="delGroupBuyFn(scope.row)">-->
<!-- <el-button slot="reference" class="delCls" type="text">删除</el-button>-->
<!-- </el-popconfirm>-->
<!-- </div>-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<div class="fenye">
<el-pagination
:current-page="proOption.page"
:page-sizes="[10, 20, 50, 100]"
:page-size="proOption.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
<div class="footBtnBox">
<span slot="footer">
<el-button type="primary" @click="saveIdList">确 定</el-button>
<el-button @click="closeSelect">取 消</el-button>
</span>
</div>
</div>
</el-dialog>
</div>
</template>
<script>
import { addGroupBuy, getGroupButPro, groupUpdate, groupDetail } from '@/api/marketing'
function InitGroupForm() {
this.details = [] // 商品明细数据
this.effectiveTime = null // 成团有效时间几(小时)
this.enableTime = null // 预热几小时前
this.endTime = '' // 活动结束时间
this.groupName = '' // 活动名称
this.ifAdd = '1' // 优惠券是否叠加 1-是 0-否
this.ifEnable = '1' // 活动预热 1-停用 2-启用
this.ifLimit = '1' // 商品限购 1-不限购 2-限购
this.limitNumber = null // 限购几件/人
this.person = null // 成团人数
this.remark = '' // 备注
this.startTime = '' // 活动开始时间
}
export default {
name: 'AddGroupBuy',
props: {
groupId: {
type: Number,
default: 0
}
},
data() {
return {
// 新增
getRowKeys(row) {
return row.skuId
},
addForm: new InitGroupForm(),
proOption: {
page: 1,
pageSize: 10
},
details: [],
dateInfo: [], // 时间数组
total: 0,
tableData: [],
shopGroupWorkId: '', // 拼团ID
groupBuyRules: {
groupName: [
{ required: true, message: '请输入活动名称', trigger: 'blur' }
],
person: [{ required: true, message: '请输入成团人数', trigger: 'blur' }],
effectiveTime: [{ required: true, message: '请输入成团有效时间', trigger: 'blur' }]
},
multipleSelection: [],
roleList: [],
isVisible: false, // 选择商品弹窗
inputGroupTableData: []
}
},
watch: {
groupId: {
handler(nVal, oVal) {
this.shopGroupWorkId = nVal
if (!nVal) {
this.addForm = new InitGroupForm()
this.dateInfo = []
this.inputGroupTableData = []
} else {
this.addForm = new InitGroupForm()
this.getGroupBuyInfo()
}
}
}
},
mounted() {
this.getProList()
this.shopGroupWorkId = this.groupId
if (this.shopGroupWorkId) {
this.getGroupBuyInfo()
}
},
methods: {
changeInput(data) {
const index = this.inputGroupTableData.findIndex(item => item.skuId === data.skuId)
if (index === -1) {
this.inputGroupTableData.push(data)
} else {
this.inputGroupTableData[index].workPrice = data.workPrice
}
},
reset() {
this.proOption.page = 1
if (this.shopGroupWorkId === 0) {
this.addForm = new InitGroupForm()
this.dateInfo = []
this.inputGroupTableData = []
}
if (this.$refs.multipleTable) {
this.$refs.multipleTable.clearSelection()
}
},
addGroupBuyFn(ruleForm) {
this.$refs[ruleForm].validate(valid => {
if (valid) {
if (this.dateInfo.length === 0) {
this.$message.warning('请选择用券时间开始和结束日期')
return false
}
if (this.addForm.ifLimit === '2' && this.addForm.limitNumber === null) {
this.$message.warning('请填写活动限购件数')
return false
}
if (this.addForm.ifEnable === ' 2' && this.addForm.enableTime === null) {
this.$message.warning('请填写活动预热前多少小时')
return false
}
if (this.addForm.person < 2 || this.addForm.person > 10) {
this.$message.warning('拼团人数只能在2~10人之间 !')
return false
}
this.addForm.startTime = this.dateInfo[0]
this.addForm.endTime = this.dateInfo[1]
if (this.shopGroupWorkId) {
groupUpdate(this.addForm).then(res => {
if (res.code === '') {
this.$message.success('修改成功')
this.$emit('reset')
} else {
this.$message.error(res.message)
}
})
} else {
addGroupBuy(this.addForm).then(res => {
if (res.code === '') {
this.$message.success('提交成功')
this.$emit('reset')
} else {
this.$message.error(res.message)
}
})
}
} else {
console.log('error submit!!')
return false
}
})
},
handleSizeChange(val) {
this.proOption.pageSize = val
this.getProList()
},
handleCurrentChange(val) {
this.proOption.page = val
this.getProList()
},
// 选择商品
chooseProduct(type) {
this.isVisible = true
this.getProList()
},
getProList() {
getGroupButPro(this.proOption).then(res => {
if (res.code === '') {
const dataList = res.data.list
if (this.inputGroupTableData.length > 0) {
dataList.forEach(item => {
const index = this.inputGroupTableData.findIndex(cItem => cItem.skuId === item.skuId)
if (index !== -1) {
item.workPrice = this.inputGroupTableData[index].workPrice
}
})
}
this.tableData = dataList
this.total = res.data.total
// 点击编辑时回显表格勾选
/* if (this.$refs.multipleTable) {
for (let i = 0; i < this.tableData.length; i++) {
for (let j = 0; j < this.addForm.details.length; j++) {
if (this.tableData[i].productId === this.addForm.details[j].productId && this.tableData[i].skuId === this.addForm.details[j].skuId) {
this.$refs.multipleTable.toggleRowSelection(this.tableData[i]);
}
}
}
} */
}
})
},
// 选中商品
handleSelectionChange(val) {
this.multipleSelection = val
},
// 保存选择商品ID
saveIdList() {
try {
const idList = []
this.multipleSelection.forEach(item => {
console.log(item)
if (!item.workPrice) {
this.$message.warning('请输入价格')
throw new Error()
}
idList.push({
price: item.workPrice,
productId: item.productId,
skuId: item.skuId
})
})
this.addForm.details = idList
this.isVisible = false
} catch (e) {
console.log(e)
}
},
// 取消选择
closeSelect() {
this.isVisible = false
},
// 跳转秒杀列表
goToGroupBuy() {
this.$emit('reset')
},
async getGroupBuyInfo() {
const res = await groupDetail({ shopGroupWorkId: this.shopGroupWorkId })
this.addForm.groupBuyContent = res.data.groupBuyContent
this.addForm.groupName = res.data.groupName
this.addForm.person = res.data.person
this.addForm.effectiveDay = res.data.effectiveDay
this.addForm.effectiveTime = res.data.effectiveTime
this.addForm.startTime = res.data.startTime
this.addForm.endTime = res.data.endTime
this.addForm.enableTime = res.data.enableTime
this.addForm.frequency = res.data.frequency
this.addForm.ifAdd = res.data.ifAdd.toString()
this.addForm.ifEnable = res.data.ifEnable.toString()
this.addForm.ifLimit = res.data.ifLimit.toString()
this.addForm.number = res.data.number
this.addForm.limitNumber = res.data.limitNumber
this.addForm.remark = res.data.remark
this.addForm.shopGroupWorkId = res.data.shopGroupWorkId
console.log(res, 'res')
console.log(res.data.products, 'res.data.products')
const idList = res.data.products
idList.forEach(i => {
this.addForm.details.push({
price: i.workPrice || i.originalPrice,
productId: i.productId,
skuId: i.skuId
})
})
this.dateInfo = [this.addForm.startTime, this.addForm.endTime]
}
}
}
</script>
<style lang='scss' scoped>
//@import url(); 引入公共css类
@import url("../../../styles/elDialog.scss");
.addGroupBuy {
background: #FFFFFF;
.dialog-footer {
display: flex;
justify-content: space-around;
}
.formBox {
margin-top: 20px;
.flexBox {
display: flex;
}
.applyType {
span {
width: 100px;
height: 30px;
line-height: 30px;
background: #66b1ff;
color: #FFFFFF;
text-align: center;
display: inline-block;
font-size: 14px;
margin-right: 30px;
border-radius: 4px;
cursor: pointer;
position: relative;
i {
position: absolute;
right: -10px;
top: -10px;
width: 25px;
height: 25px;
line-height: 25px;
background: #FFFFFF;
border-radius: 50%;
border: 1px solid #66b1ff;
text-align: center;
color: #409EFF;
font-style: normal;
font-size: 12px;
}
}
}
}
.footBtnBox {
width: 100%;
display: flex;
justify-content: center;
margin-top: 50px;
}
.dateBox {
display: flex;
align-items: center;
.description {
width: 59px;
text-align: center;
display: block;
font-size: 14px;
color: #999999;
}
}
}
</style>
<style scoped>
.flexBox /deep/ .el-input {
width: 500px;
}
.inputW /deep/ .el-input {
width: 100px;
margin: 0 8px 0 0;
}
.inputW /deep/ .el-input .el-input__inner {
text-align: center;
}
.inputW /deep/ .el-form-item__error {
padding-left: 0;
}
.inputW /deep/ .el-checkbox {
margin-left: 20px;
}
.inputW /deep/ .el-radio {
margin-left: 30px;
}
.boxWidth /deep/ .el-input {
width: 100px;
margin-right: 15px;
}
.boxWidth /deep/ .el-input .el-input__inner {
text-align: center;
}
.addGroupBuy /deep/ .el-button--primary {
background: #409EFF;
border-color: #409EFF;
}
.addGroupBuy /deep/ .el-dialog__header {
background-color: #409EFF;
}
.addGroupBuy /deep/ .el-dialog__headerbtn .el-dialog__close {
color: #FFFFFF;
}
.addGroupBuy .timeDataBox /deep/ .el-form-item__content {
display: flex;
align-items: center;
}
.addGroupBuy .timeDataBox /deep/ .el-form-item__label {
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
}
input[type="number"]{
-moz-appearance: textfield;
}
</style>