capitalpool.vue
23.7 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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
<div class="couponPage" v-if="type == '1'">
<div>
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>优惠券管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">资金池</span></div>
</div>
<!-- 搜索 -->
<div class="formSearch">
<!-- 搜索条件 -->
<el-form :inline="true" :model="query" class="demo-form-inline">
<el-form-item label="名称">
<el-input v-model="query.poolName" placeholder="请输入名称" />
</el-form-item>
<el-form-item label="状态">
<el-select v-model="query.fundsStatus" placeholder="请选择状态">
<el-option v-for="item in activityStatusSelect" :key="item.index" :label="item.label"
:value="item.value" />
</el-select>
</el-form-item>
</el-form>
<div>
<el-button style="background-color: #3F9B6A;color: #fff" @click="search">查询</el-button>
<el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="clear">重置</el-button>
</div>
</div>
<div style="margin: 0 0 20px 0;">
<el-button icon="el-icon-circle-plus-outline" style="background-color: #3F9B6A;color: #fff;"
@click="addActivity">新增</el-button>
</div>
<!-- 表格 -->
<div class="tableBox">
<el-table ref="multipleTable" :data="tableData"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#F2F3F5'}"
tooltip-effect="light">
<!-- <el-table-column label="编号">
<template slot-scope="scope">{{ scope.row.poolId }}</template>
</el-table-column> -->
<el-table-column label="资金池名称">
<template slot-scope="scope">{{ scope.row.poolName }}</template>
</el-table-column>
<!-- <el-table-column label="出资方">
<template slot-scope="scope">{{ scope.row.contributor }}</template>
</el-table-column> -->
<el-table-column label="总金额">
<template slot-scope="scope">{{ Number(scope.row.totalAmount)/100 }}</template>
</el-table-column>
<el-table-column
label="出资方">
<template slot-scope="scope">
<el-popover trigger="hover" placement="top">
<p style="max-width: 300px;">{{ scope.row.contributor }}</p>
<div slot="reference" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;width: 100%;" >
{{ scope.row.contributor }}
</div>
</el-popover>
</template>
</el-table-column>
<el-table-column label="状态">
<template slot-scope="scope">
<span v-if="scope.row.fundsStatus == '1'">启用中</span>
<span v-else-if="scope.row.fundsStatus == '2'">已关闭</span>
<span v-else>未启用</span>
</template>
</el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<div class="btnList">
<!-- <div class="tableBtn greens" @click="editActivity(scope.row)">编辑</div> -->
<div v-if="scope.row.fundsStatus == '1'" class="tableBtn greens" @click="xq(scope.row)">查看详情</div>
<div v-if="scope.row.fundsStatus == '1'" class="tableBtn greens" @click="addcoupon(scope.row)">创建优惠券
</div>
<div v-if="scope.row.fundsStatus == '1'" class="tableBtn greens"
@click="endActivityeditPool(scope.row,'2')">禁用</div>
<div v-else-if="scope.row.fundsStatus == '2'" class="tableBtn greens" @click="delActivity(scope.row)">
删除</div>
<div v-else class="tableBtn greens" @click="endActivityeditPool(scope.row,'1')">开启</div>
<!-- <div class="tableBtn greens" @click="delActivity(scope.row)">删除</div> -->
</div>
</template>
</el-table-column>
</el-table>
<div style="display: flex;justify-content: space-between;" class="bom">
<div style="font-size: 14px;">共 <span style="color: #3F9B6A;">{{total}}</span> 项数据</div>
<el-pagination :current-page="query.pageNumber+1" :page-sizes="[10, 20, 50, 100]" :page-size="10" background
small layout="prev, pager, next" :total="total" @size-change="handleSizeChange"
@current-change="handleCurrentChange">
</el-pagination>
</div>
</div>
<el-dialog :title="editForm ? '修改资金池' : '新增资金池'" :visible.sync="activityVisible" width="500px" center
:close-on-click-modal="false" @close="activityVisible">
<el-form ref="form" :model="form" label-width="100px" :rules="couponRules">
<el-form-item label="资金池名称:" prop="poolName">
<el-input v-model="form.poolName" placeholder="请输入资金池名称" />
</el-form-item>
<el-form-item label="总金额:" style="margin: 20px 0;" prop="totalAmount">
<el-input v-model.number="form.totalAmount" placeholder="请输入总金额" />
</el-form-item>
<el-form-item label="出资方:" prop="contributor">
<el-input maxlength="200" show-word-limit rows="4" type="textarea" v-model="form.contributor"
placeholder="请输入出资方" />
</el-form-item>
</el-form>
<div class="footer" style="margin-top: 25px;">
<div class="btn_list">
<span @click="cancel" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</span>
<span @click="save" style="background-color: #3F9B6A;color: #fff">保存</span>
</div>
</div>
</el-dialog>
</div>
</div>
<div class="couponPage" v-if="type == '2'">
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>优惠券管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">创建优惠券</span></div>
</div>
<TitleWithCircle title="资金池" style="margin-bottom: 15px;"/>
<div style="display: flex;margin-bottom: 20px;padding-left: 30px;">
<div>资金池名称:{{ coupoobj.poolName }}</div>
<div style="margin-left: 30px;">资金池可用金额:<span style="font-weight: bold;">{{ Number(coupoobj.symon)/100 }}</span></div>
</div>
<coupon :couponfrom="couponfrom" :coupoobj="coupoobj" @changevalue="changevalue"/>
<div class="footer">
<div class="btn_list" style="margin-top: 30px;">
<span @click="qxcoupon" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</span>
<span @click="savecoupon" style="background-color: #3F9B6A;color: #fff">保存</span>
</div>
</div>
</div>
<div class="couponPage" v-show="type == '3'">
<div style="height:58px;line-height:58px;">
<div style="color:#0006"> <span>优惠券管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">详情</span></div>
</div>
<allinfo :id="poolId" ref="allinforef" :type="typeinfo" @changetypeinfo="changetypeinfo" />
<!-- <allinfo v-if="typeinfo =='2'" :id="poolId" :type="typeinfo" @changetypeinfo="changetypeinfo" /> -->
<div style="display: flex;">
<el-button @click="changetype()" class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;" >返回</el-button>
</div>
</div>
</div>
</template>
<script>
import {
getcereFundsPoolData,
addcereFundsPool,
delPool,
editPool,
cereCouponMainTable,
totalCapitalBalance,
addcereCouponCategory
} from '@/api/couponmanagement/capitalpool.js'
import router from '@/router';
import coupon from './coupon.vue';
import allinfo from './allinfo.vue';
import TitleWithCircle from '@/components/top/index';
export default {
components: {
coupon,TitleWithCircle,allinfo
},
data() {
return {
poolId:'',
typeinfo:'1',
couponRules: {
poolName: [{
required: true,
message: '请输入资金池名称',
trigger: 'blur'
},
{
min: 0,
max: 20,
message: '长度不超过20个字符',
trigger: 'blur'
}
],
totalAmount: [{
required: true,
message: '请输入总金额',
trigger: 'blur'
}, ],
contributor: [{
required: true,
message: '请输入出资方',
trigger: 'blur'
}, ],
},
useCategorylist:'',
usedMerchantslist:'',
couponfrom: {
receiveAgain:0,
usedMerchants: 1,
couponName: '',
remark: '',
couponType: '1', // 默认值
useCategory: 1,
maxDiscountAmount: null,
usageThreshold: null, //使用门槛不用
discountContent: null,
pointsRequired: 0,
startTime: '',
endTime: '',
totalCoupons: 1,
totalFunds: null,
},
coupoobj: {},
type: '1',
query: {
activityName: '', // 活动名称
// 活动状态 0-报名未开始 1-报名进行中 2-活动待开始 3-活动进行中 4-活动已结束
state: '',
pageNumber: 0,
pageSize: 10
},
total: 0,
tableData: [],
activityStatusSelect: [{
index: 0,
label: '未启用',
value: 0
},
{
index: 1,
label: '启用中',
value: 1
},
{
index: 2,
label: '已关闭',
value: 2
},
],
activityVisible: false,
editForm: false,
activityDetailVisible: false,
form: {
poolName: '',
contributor: '',
totalAmount: null,
fundsStatus: '0'
}
}
},
created() {
this.getAll()
},
methods: {
changetypeinfo(e) {
console.error(e)
let that = this
this.typeinfo = e.type
setTimeout(()=>{
that.$refs.allinforef.int(e.id,e.info)
},300)
},
changetype() {
let that = this
if(this.typeinfo == '1') {
this.type = 1
} else {
this.typeinfo = '1'
console.error(this.poolId)
//延迟执行this.$refs.allinforef.int(this.poolId)
setTimeout(()=>{
that.$refs.allinforef.int(this.poolId)
},300)
}
},
changevalue(e,list) {
console.error(e,list )
this[e] = list
},
xq(e) {
console.log(e)
this.type = '3'
this.typeinfo = '1'
this.poolId = e.poolId
this.$refs.allinforef.int(this.poolId,e)
// // 跳转路由
// router.push({
// path: '/other/capitalpoolinfo',
// query: {
// id: e.poolId
// }
// })
},
savecoupon() {
let that = this
console.error(this.couponfrom )
if(!this.couponfrom.couponName) {
that.$message({
message: '请填写优惠券名称',
error: 'success'
});
return
}
if(!this.couponfrom.discountContent) {
that.$message({
message: '请填写优惠内容',
error: 'success'
});
return
}
if(this.couponfrom.couponType == '1') {
if(!this.couponfrom.usageThreshold) {
that.$message({
message: '请填写优惠内容',
error: 'success'
});
return
}
if(Number(this.couponfrom.discountContent) >= Number(this.couponfrom.usageThreshold)) {
that.$message({
message: '请满减金额大于优惠金额',
error: 'success'
});
return
}
} else {
if(!this.couponfrom.maxDiscountAmount) {
that.$message({
message: '请填写优惠内容',
error: 'success'
});
return
}
}
if(!this.couponfrom.startTime) {
that.$message({
message: '请选择时间',
error: 'success'
});
return
}
if(!this.couponfrom.totalCoupons) {
that.$message({
message: '请填写数量',
error: 'success'
});
return
}
let c1 = this.changecouponfrom()
console.error(c1)
console.error(this.useCategorylist)
console.error(this.usedMerchantslist)
console.error(this.coupoobj)
let from = JSON.parse(JSON.stringify(this.couponfrom))
from.fundPoolId = this.coupoobj.poolId
from.totalFunds = c1
if (c1 > (Number(this.coupoobj.symon)/100)) {
that.$message({
message: '金额不足',
error: 'error'
});
return
}
from.totalCoupons = Number(from.totalCoupons) //总数
from.pointsRequired = Number(from.pointsRequired) //积分
from.usageThreshold = Number(from.usageThreshold)*100
from.totalFunds = Number(from.totalFunds)*100
if(this.couponfrom.couponType == '1') {
from.discountContent = Number(from.discountContent)*100
from.maxDiscountAmount = from.discountContent
} else {
from.maxDiscountAmount = Number(from.maxDiscountAmount)*100
from.discountContent = Number(from.discountContent)
}
console.error({
...from
})
// return
cereCouponMainTable(from).then(res => {
console.error(res)
if (res.data) {
if(res.data.useCategory == '2') {
let info1 = {
couponId:res.data.id,
usedMerchants:1,
categoryIds:that.useCategorylist
}
addcereCouponCategory(info1).then(res1 => {
console.error(res1)
})
}
if(res.data.usedMerchants == '3') {
let info2 = {
couponId:res.data.id,
usedMerchants:3,
categoryIds:that.usedMerchantslist
}
addcereCouponCategory(info2).then(res2 => {
console.error(res2)
})
}
this.couponfrom={
receiveAgain:0,
usedMerchants: 1,
couponName: '',
remark: '',
couponType: '1', // 默认值
useCategory: 1,
maxDiscountAmount: null,
usageThreshold: null, //使用门槛不用
discountContent: null,
pointsRequired: 0,
startTime: '',
endTime: '',
totalCoupons: 1,
totalFunds: null,
}
that.$message({
message: '提交成功',
type: 'success'
});
} else {
that.$message({
message: '提交失败',
error: 'success'
});
}
that.type = '1'
})
},
changecouponfrom() {
let num = 0
if (this.couponfrom.couponType == '1') {
num = (this.couponfrom.discountContent ? Number(this.couponfrom.discountContent) : 0) * (this.couponfrom
.totalCoupons ? Number(this.couponfrom.totalCoupons) : 0)
} else if (this.couponfrom.couponType == '2') {
num = (this.couponfrom.maxDiscountAmount ? Number(this.couponfrom.maxDiscountAmount) : 0) * (this.couponfrom
.totalCoupons ? Number(this.couponfrom.totalCoupons) : 0)
}
return num
},
qxcoupon() {
this.type = '1'
},
async addcoupon(e) {
let that = this
let c1 = {
symon: 0,
...e
}
await totalCapitalBalance({
poolId: e.poolId
}).then(res => {
console.error(res)
c1.symon = res.data
})
this.type = '2'
this.coupoobj = c1
console.error(this.coupoobj)
},
endActivityeditPool(item, type) {
let that = this
let form = item
form.totalAmount = Number(form.totalAmount)
form.fundsStatus = type
editPool(form).then(res => {
console.error(res)
if (res.data) {
that.$message({
message: '修改成功',
type: 'success'
});
} else {
that.$message({
message: '修改失败',
error: 'success'
});
}
that.search()
})
},
save() {
let that = this
console.error(this.form)
let form = this.form
that.$refs.form.validate((valid) => {
if (valid) {
// form.totalAmount = Number(form.totalAmount)
form.totalAmount = Number(form.totalAmount) * 100
if (that.editForm) {
editPool(form).then(res => {
// console.error(res)
if (res.data) {
that.$message({
message: '修改成功',
type: 'success'
});
} else {
that.$message({
message: '修改失败',
error: 'success'
});
}
that.search()
that.activityVisible = false
that.form = {
poolName: '',
contributor: '',
totalAmount: null,
fundsStatus: '0'
}
})
} else {
addcereFundsPool(form).then(res => {
// console.error(res)
if (res.data) {
that.$message({
message: '提交成功',
type: 'success'
});
} else {
that.$message({
message: '提交失败',
error: 'success'
});
}
that.search()
that.activityVisible = false
that.form = {
poolName: '',
contributor: '',
totalAmount: null,
fundsStatus: '0'
}
})
}
} else {
console.log('error submit!!');
return false;
}
});
},
cancel() {
this.activityVisible = false
this.form = {
poolName: '',
contributor: '',
totalAmount: null,
fundsStatus: '0'
}
},
async getAll() {
const res = await getcereFundsPoolData(this.query)
this.tableData = res.data.content
this.total = res.data.totalElements
},
handleSizeChange(val) {
this.query.pageSize = val
this.getAll()
},
handleCurrentChange(val) {
this.query.pageNumber = val - 1
this.getAll()
},
search() {
this.total = 1
this.query.pageNumber = 0
this.getAll()
},
// 重置
clear() {
this.query = {
activityName: '',
state: '',
pageNumber: 0,
pageSize: 10
}
this.getAll()
},
// 活动详情
details(row) {
this.form = row
this.activityDetailVisible = true
},
// 添加活动
addActivity() {
this.editForm = false
this.activityVisible = true
},
// 编辑
editActivity(row) {
this.editForm = true
this.form = row
this.activityVisible = true
},
async endActivity(row) {
const res = await endCoupon({
activityId: row.activityId
})
if (res.code === '') {
this.$message({
message: '结束成功',
type: 'success'
})
} else {
this.$message({
message: res.message,
type: 'error'
})
}
this.getAll()
},
async delActivity(row) {
let that = this
this.$confirm('此作将永久操删除该文件, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
delPool({
poolId: row.poolId
}).then(res => {
console.error(res)
if (res.data) {
that.$message({
message: '删除成功',
type: 'success'
});
} else {
that.$message({
message: '删除失败',
error: 'success'
});
}
that.search()
}).catch(error => {
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
});
});
},
}
}
</script>
<style scoped lang="scss">
.el-table {
// height: calc(100vh - 330px);
}
.el-form-item {
margin-bottom: 0;
}
::v-deep .el-dialog__header {
border-bottom: 2px solid #eee;
background-color: #fff;
}
::v-deep .el-dialog__title {
color: #303133;
}
.footer {
font-size: 24px;
.btn_list {
display: flex;
flex-direction: row-reverse;
span {
padding: 0;
margin: 0;
width: 100px;
height: 32px;
line-height: 32px;
text-align: center;
display: inline-block;
font-size: 16px;
border-radius: 4px;
box-sizing: border-box;
&:hover {
cursor: pointer;
}
&:nth-child(1) {
background: rgba(255, 255, 255, 1);
order: 1px solid rgba(224, 229, 235, 1);
border: 1px solid rgba(224, 229, 235, 1);
}
&:nth-child(2) {
background: #3f9b6a;
color: #fff;
margin-right: 20px;
}
}
}
}
.couponPage {
padding: 0 20px 20px 20px;
min-height: calc(100vh - 50px - 20px);
background-color: #Fff;
.tableBox {
text-align: center;
.fenye {
// margin: 20px;
}
}
}
.couponDialogBox {
max-height: 600px;
overflow-y: auto;
}
.formSearch {
display: flex;
width: 100%;
font-size: 14px;
justify-content: space-between;
padding-bottom: 10px;
align-items: center;
}
.greens {
color: #3F9B6A;
}
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
::v-deep .el-pagination__total {
position: absolute;
left: 10px;
}
::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #3f9b6a;
}
</style>