764a832f
李宇
资金池
|
1
2
|
<template>
<div style="background-color:#f7f7f7;padding:10px 10px;">
|
8db25941
李宇
2
|
3
|
<div class="couponPage" v-if="type == '1'">
|
084351b6
李宇
1
|
4
5
|
<div>
<div style="height:58px;line-height:58px;">
|
e72f5b2f
李宇
1
|
6
7
|
<div style="color:#0006"> <span>优惠券管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">资金池</span></div>
|
764a832f
李宇
资金池
|
8
|
</div>
|
e72f5b2f
李宇
1
|
9
|
<!-- 搜索 -->
|
084351b6
李宇
1
|
10
11
12
13
14
15
16
17
|
<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="请选择状态">
|
e72f5b2f
李宇
1
|
18
19
|
<el-option v-for="item in activityStatusSelect" :key="item.index" :label="item.label"
:value="item.value" />
|
084351b6
李宇
1
|
20
21
22
23
24
|
</el-select>
</el-form-item>
</el-form>
<div>
<el-button style="background-color: #3F9B6A;color: #fff" @click="search">查询</el-button>
|
e72f5b2f
李宇
1
|
25
26
|
<el-button class="buttonHover" style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;"
@click="clear">重置</el-button>
|
084351b6
李宇
1
|
27
28
29
|
</div>
</div>
<div style="margin: 0 0 20px 0;">
|
e72f5b2f
李宇
1
|
30
31
|
<el-button icon="el-icon-circle-plus-outline" style="background-color: #3F9B6A;color: #fff;"
@click="addActivity">新增</el-button>
|
084351b6
李宇
1
|
32
33
34
|
</div>
<!-- 表格 -->
<div class="tableBox">
|
e72f5b2f
李宇
1
|
35
36
37
38
|
<el-table ref="multipleTable" :data="tableData"
:header-cell-style="{fontSize: '14px',color:'#0009',fontWeight: 'normal',backgroundColor:'#f5f8f9'}"
tooltip-effect="light">
<!-- <el-table-column label="编号">
|
084351b6
李宇
1
|
39
|
<template slot-scope="scope">{{ scope.row.poolId }}</template>
|
e72f5b2f
李宇
1
|
40
41
|
</el-table-column> -->
<el-table-column label="资金池名称">
|
084351b6
李宇
1
|
42
43
|
<template slot-scope="scope">{{ scope.row.poolName }}</template>
</el-table-column>
|
e72f5b2f
李宇
1
|
44
|
<!-- <el-table-column label="出资方">
|
084351b6
李宇
1
|
45
|
<template slot-scope="scope">{{ scope.row.contributor }}</template>
|
e72f5b2f
李宇
1
|
46
|
</el-table-column> -->
|
084351b6
李宇
1
|
47
48
49
|
<el-table-column label="总金额">
<template slot-scope="scope">{{ scope.row.totalAmount }}</template>
</el-table-column>
|
e72f5b2f
李宇
1
|
50
51
52
53
54
55
56
57
58
59
60
|
<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>
|
084351b6
李宇
1
|
61
62
63
64
65
66
67
68
69
70
71
72
|
<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>
|
e72f5b2f
李宇
1
|
73
74
75
76
77
78
|
<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>
|
084351b6
李宇
1
|
79
80
81
82
83
84
85
|
<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">
|
e72f5b2f
李宇
1
|
86
87
88
|
<div style="font-size: 14px;">共 <span style="color: #3F9B6A;">{{total}}</span> 项数据</div>
<el-pagination :current-page="query.pageNumber" :page-sizes="[10, 20, 50, 100]" :page-size="10" background
small layout="prev, pager, next" :total="total" @size-change="handleSizeChange"
|
084351b6
李宇
1
|
89
90
91
|
@current-change="handleCurrentChange">
</el-pagination>
</div>
|
764a832f
李宇
资金池
|
92
|
</div>
|
764a832f
李宇
资金池
|
93
|
|
e72f5b2f
李宇
1
|
94
95
96
97
|
<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">
|
084351b6
李宇
1
|
98
99
|
<el-input v-model="form.poolName" placeholder="请输入资金池名称" />
</el-form-item>
|
e72f5b2f
李宇
1
|
100
101
|
<el-form-item label="总金额:" style="margin: 20px 0;" prop="totalAmount">
<el-input v-model.number="form.totalAmount" placeholder="请输入总金额" />
|
084351b6
李宇
1
|
102
|
</el-form-item>
|
e72f5b2f
李宇
1
|
103
104
105
|
<el-form-item label="出资方:" prop="contributor">
<el-input maxlength="200" show-word-limit rows="4" type="textarea" v-model="form.contributor"
placeholder="请输入出资方" />
|
084351b6
李宇
1
|
106
107
|
</el-form-item>
</el-form>
|
e72f5b2f
李宇
1
|
108
|
<div class="footer" style="margin-top: 25px;">
|
084351b6
李宇
1
|
109
|
<div class="btn_list">
|
e72f5b2f
李宇
1
|
110
111
|
<span @click="cancel" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</span>
|
084351b6
李宇
1
|
112
113
|
<span @click="save" style="background-color: #3F9B6A;color: #fff">保存</span>
</div>
|
764a832f
李宇
资金池
|
114
|
</div>
|
084351b6
李宇
1
|
115
116
117
|
</el-dialog>
</div>
</div>
|
8db25941
李宇
2
|
118
|
<div class="couponPage" v-if="type == '2'">
|
084351b6
李宇
1
|
119
|
<div style="height:58px;line-height:58px;">
|
e72f5b2f
李宇
1
|
120
121
|
<div style="color:#0006"> <span>优惠券管理</span> <span style="padding:0 5px;">></span> <span
style="color:#000000e6">创建优惠券</span></div>
|
084351b6
李宇
1
|
122
|
</div>
|
b1d468f9
李宇
1
|
123
124
|
<TitleWithCircle title="资金池" style="margin-bottom: 15px;"/>
<div style="display: flex;margin-bottom: 20px;padding-left: 30px;">
|
084351b6
李宇
1
|
125
|
<div>资金池名称:{{ coupoobj.poolName }}</div>
|
b1d468f9
李宇
1
|
126
|
<div style="margin-left: 30px;">资金池可用金额:<span style="font-weight: bold;">{{ coupoobj.symon }}</span></div>
|
084351b6
李宇
1
|
127
|
</div>
|
b1d468f9
李宇
1
|
128
|
<coupon :couponfrom="couponfrom" :coupoobj="coupoobj" @changevalue="changevalue"/>
|
084351b6
李宇
1
|
129
|
<div class="footer">
|
e72f5b2f
李宇
1
|
130
131
132
|
<div class="btn_list" style="margin-top: 30px;">
<span @click="qxcoupon" class="buttonHover"
style="color: #606266;border: 1px solid #dddfe5;background-color: #fff;">取消</span>
|
084351b6
李宇
1
|
133
|
<span @click="savecoupon" style="background-color: #3F9B6A;color: #fff">保存</span>
|
764a832f
李宇
资金池
|
134
|
</div>
|
084351b6
李宇
1
|
135
|
</div>
|
764a832f
李宇
资金池
|
136
|
</div>
|
8db25941
李宇
2
|
137
138
139
140
141
142
143
144
145
146
147
|
<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 v-show="typeinfo =='1'" :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>
|
764a832f
李宇
资金池
|
148
149
150
151
|
</div>
</template>
<script>
|
e72f5b2f
李宇
1
|
152
153
154
155
156
157
|
import {
getcereFundsPoolData,
addcereFundsPool,
delPool,
editPool,
cereCouponMainTable,
|
b1d468f9
李宇
1
|
158
159
|
totalCapitalBalance,
addcereCouponCategory
|
e72f5b2f
李宇
1
|
160
161
162
|
} from '@/api/couponmanagement/capitalpool.js'
import router from '@/router';
import coupon from './coupon.vue';
|
8db25941
李宇
2
|
163
|
import allinfo from './allinfo.vue';
|
b1d468f9
李宇
1
|
164
|
import TitleWithCircle from '@/components/top/index';
|
e72f5b2f
李宇
1
|
165
166
167
|
export default {
components: {
|
8db25941
李宇
2
|
168
|
coupon,TitleWithCircle,allinfo
|
e72f5b2f
李宇
1
|
169
170
171
|
},
data() {
return {
|
8db25941
李宇
2
|
172
173
|
poolId:'',
typeinfo:'1',
|
e72f5b2f
李宇
1
|
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
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'
}, ],
|
764a832f
李宇
资金池
|
197
|
},
|
b1d468f9
李宇
1
|
198
199
|
useCategorylist:'',
usedMerchantslist:'',
|
e72f5b2f
李宇
1
|
200
|
couponfrom: {
|
8db25941
李宇
2
|
201
|
receiveAgain:0,
|
b1d468f9
李宇
1
|
202
|
usedMerchants: 1,
|
e72f5b2f
李宇
1
|
203
204
205
|
couponName: '',
remark: '',
couponType: '1', // 默认值
|
b1d468f9
李宇
1
|
206
|
useCategory: 1,
|
e72f5b2f
李宇
1
|
207
208
209
210
211
212
|
maxDiscountAmount: null,
usageThreshold: null, //使用门槛不用
discountContent: null,
pointsRequired: 0,
startTime: '',
endTime: '',
|
8db25941
李宇
2
|
213
|
totalCoupons: 1,
|
e72f5b2f
李宇
1
|
214
|
totalFunds: null,
|
764a832f
李宇
资金池
|
215
|
},
|
e72f5b2f
李宇
1
|
216
217
218
219
220
221
222
223
|
coupoobj: {},
type: '1',
query: {
activityName: '', // 活动名称
// 活动状态 0-报名未开始 1-报名进行中 2-活动待开始 3-活动进行中 4-活动已结束
state: '',
pageNumber: 1,
pageSize: 10
|
764a832f
李宇
资金池
|
224
|
},
|
e72f5b2f
李宇
1
|
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
|
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'
}
|
084351b6
李宇
1
|
252
|
}
|
e72f5b2f
李宇
1
|
253
254
255
256
257
|
},
created() {
this.getAll()
},
methods: {
|
8db25941
李宇
2
|
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
|
changetypeinfo(e) {
let that = this
this.typeinfo = e.type
setTimeout(()=>{
that.$refs.allinforef.int(e.id)
},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)
}
},
|
b1d468f9
李宇
1
|
278
279
280
281
|
changevalue(e,list) {
console.error(e,list )
this[e] = list
},
|
e72f5b2f
李宇
1
|
282
|
xq(e) {
|
b1d468f9
李宇
1
|
283
|
console.log(e )
|
8db25941
李宇
2
|
284
285
286
287
288
289
290
291
292
293
294
|
this.type = '3'
this.typeinfo = '1'
this.poolId = e.poolId
this.$refs.allinforef.int(this.poolId)
// // 跳转路由
// router.push({
// path: '/other/capitalpoolinfo',
// query: {
// id: e.poolId
// }
// })
|
e72f5b2f
李宇
1
|
295
296
297
|
},
savecoupon() {
let that = this
|
8db25941
李宇
2
|
298
|
console.error(this.couponfrom )
|
b1d468f9
李宇
1
|
299
|
if(!this.couponfrom.couponName) {
|
8db25941
李宇
2
|
300
301
302
303
|
that.$message({
message: '请填写优惠券名称',
error: 'success'
});
|
b1d468f9
李宇
1
|
304
305
|
return
}
|
8db25941
李宇
2
|
306
307
|
|
b1d468f9
李宇
1
|
308
|
if(!this.couponfrom.discountContent) {
|
8db25941
李宇
2
|
309
310
311
312
|
that.$message({
message: '请填写优惠内容',
error: 'success'
});
|
b1d468f9
李宇
1
|
313
314
|
return
}
|
8db25941
李宇
2
|
315
316
|
|
b1d468f9
李宇
1
|
317
|
if(this.couponfrom.couponType == '1') {
|
8db25941
李宇
2
|
318
319
320
321
322
323
324
325
326
327
328
329
|
if(!this.couponfrom.usageThreshold) {
that.$message({
message: '请填写优惠内容',
error: 'success'
});
return
}
if(Number(this.couponfrom.discountContent) >= Number(this.couponfrom.usageThreshold)) {
that.$message({
message: '请满减金额大于优惠金额',
error: 'success'
});
|
b1d468f9
李宇
1
|
330
331
|
return
}
|
8db25941
李宇
2
|
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
} 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
}
|
e72f5b2f
李宇
1
|
356
357
|
let c1 = this.changecouponfrom()
console.error(c1)
|
b1d468f9
李宇
1
|
358
359
|
console.error(this.useCategorylist)
console.error(this.usedMerchantslist)
|
e72f5b2f
李宇
1
|
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
console.error(this.coupoobj)
let from = this.couponfrom
from.fundPoolId = this.coupoobj.poolId
from.totalFunds = c1
if (c1 > this.coupoobj.symon) {
that.$message({
message: '金额不足',
error: 'error'
});
return
}
from.maxDiscountAmount = Number(from.maxDiscountAmount)
from.discountContent = Number(from.discountContent)
from.pointsRequired = Number(from.pointsRequired)
from.totalCoupons = Number(from.totalCoupons)
console.error({
...from
})
|
b1d468f9
李宇
1
|
378
|
// return
|
e72f5b2f
李宇
1
|
379
|
cereCouponMainTable(from).then(res => {
|
084351b6
李宇
1
|
380
|
console.error(res)
|
e72f5b2f
李宇
1
|
381
|
if (res.data) {
|
b1d468f9
李宇
1
|
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
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)
})
}
|
8db25941
李宇
2
|
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
|
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,
}
|
084351b6
李宇
1
|
418
419
420
421
|
that.$message({
message: '提交成功',
type: 'success'
});
|
e72f5b2f
李宇
1
|
422
|
} else {
|
084351b6
李宇
1
|
423
424
425
426
427
|
that.$message({
message: '提交失败',
error: 'success'
});
}
|
8db25941
李宇
2
|
428
|
that.type = '1'
|
084351b6
李宇
1
|
429
|
})
|
e72f5b2f
李宇
1
|
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
|
},
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 => {
|
084351b6
李宇
1
|
455
|
console.error(res)
|
e72f5b2f
李宇
1
|
456
457
458
459
460
461
462
463
464
465
466
467
|
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 => {
|
084351b6
李宇
1
|
468
|
console.error(res)
|
e72f5b2f
李宇
1
|
469
|
if (res.data) {
|
084351b6
李宇
1
|
470
471
472
473
|
that.$message({
message: '修改成功',
type: 'success'
});
|
e72f5b2f
李宇
1
|
474
|
} else {
|
084351b6
李宇
1
|
475
476
477
478
479
480
|
that.$message({
message: '修改失败',
error: 'success'
});
}
that.search()
|
084351b6
李宇
1
|
481
|
})
|
e72f5b2f
李宇
1
|
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
|
},
save() {
let that = this
console.error(this.form)
let form = this.form
that.$refs.form.validate((valid) => {
if (valid) {
form.totalAmount = Number(form.totalAmount)
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;
|
084351b6
李宇
1
|
540
|
}
|
e72f5b2f
李宇
1
|
541
|
});
|
764a832f
李宇
资金池
|
542
|
|
e72f5b2f
李宇
1
|
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
|
},
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.numberOfElements
},
handleSizeChange(val) {
this.query.pageSize = val
this.getAll()
},
handleCurrentChange(val) {
this.query.pageNumber = val
this.getAll()
},
search() {
this.total = 1
this.query.pageNumber = 1
this.getAll()
},
// 重置
clear() {
this.query = {
activityName: '',
state: '',
pageNumber: 1,
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
|
764a832f
李宇
资金池
|
601
|
})
|
e72f5b2f
李宇
1
|
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
|
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('此作将永久操删除该文件, 是否继续?', '提示', {
|
084351b6
李宇
1
|
618
619
620
621
|
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
|
e72f5b2f
李宇
1
|
622
623
624
|
delPool({
poolId: row.poolId
}).then(res => {
|
084351b6
李宇
1
|
625
|
console.error(res)
|
e72f5b2f
李宇
1
|
626
|
if (res.data) {
|
084351b6
李宇
1
|
627
628
629
630
|
that.$message({
message: '删除成功',
type: 'success'
});
|
e72f5b2f
李宇
1
|
631
|
} else {
|
084351b6
李宇
1
|
632
633
634
635
636
637
|
that.$message({
message: '删除失败',
error: 'success'
});
}
that.search()
|
b1d468f9
李宇
1
|
638
|
}).catch(error => {
|
084351b6
李宇
1
|
639
640
641
642
643
|
})
}).catch(() => {
this.$message({
type: 'info',
message: '已取消删除'
|
e72f5b2f
李宇
1
|
644
|
});
|
084351b6
李宇
1
|
645
|
});
|
e72f5b2f
李宇
1
|
646
|
},
|
764a832f
李宇
资金池
|
647
|
|
e72f5b2f
李宇
1
|
648
|
}
|
764a832f
李宇
资金池
|
649
|
}
|
764a832f
李宇
资金池
|
650
651
652
|
</script>
<style scoped lang="scss">
|
e72f5b2f
李宇
1
|
653
654
655
656
657
658
659
660
661
662
663
664
665
666
|
.el-table {
height: calc(100vh - 330px);
}
.bom {
margin-top: 40px;
}
.el-form-item {
margin-bottom: 0;
}
::v-deep .el-dialog__header {
|
764a832f
李宇
资金池
|
667
668
669
|
border-bottom: 2px solid #eee;
background-color: #fff;
}
|
e72f5b2f
李宇
1
|
670
|
|
764a832f
李宇
资金池
|
671
672
673
|
::v-deep .el-dialog__title {
color: #303133;
}
|
e72f5b2f
李宇
1
|
674
675
|
.footer {
|
764a832f
李宇
资金池
|
676
|
font-size: 24px;
|
e72f5b2f
李宇
1
|
677
|
|
764a832f
李宇
资金池
|
678
679
680
|
.btn_list {
display: flex;
flex-direction: row-reverse;
|
e72f5b2f
李宇
1
|
681
|
|
764a832f
李宇
资金池
|
682
683
684
685
|
span {
padding: 0;
margin: 0;
width: 100px;
|
e72f5b2f
李宇
1
|
686
687
|
height: 32px;
line-height: 32px;
|
764a832f
李宇
资金池
|
688
689
690
691
692
|
text-align: center;
display: inline-block;
font-size: 16px;
border-radius: 4px;
box-sizing: border-box;
|
e72f5b2f
李宇
1
|
693
|
|
764a832f
李宇
资金池
|
694
695
696
|
&:hover {
cursor: pointer;
}
|
e72f5b2f
李宇
1
|
697
|
|
764a832f
李宇
资金池
|
698
699
700
|
&:nth-child(1) {
background: rgba(255, 255, 255, 1);
order: 1px solid rgba(224, 229, 235, 1);
|
e72f5b2f
李宇
1
|
701
|
|
764a832f
李宇
资金池
|
702
703
|
border: 1px solid rgba(224, 229, 235, 1);
}
|
e72f5b2f
李宇
1
|
704
|
|
764a832f
李宇
资金池
|
705
706
707
708
709
710
711
712
|
&:nth-child(2) {
background: #3f9b6a;
color: #fff;
margin-right: 20px;
}
}
}
}
|
764a832f
李宇
资金池
|
713
|
|
e72f5b2f
李宇
1
|
714
715
716
717
718
|
.couponPage {
padding: 0 20px 20px 20px;
min-height: calc(100vh - 50px - 20px);
background-color: #Fff;
|
764a832f
李宇
资金池
|
719
720
|
|
e72f5b2f
李宇
1
|
721
722
723
724
725
726
|
.tableBox {
text-align: center;
.fenye {
// margin: 20px;
}
|
764a832f
李宇
资金池
|
727
728
|
}
}
|
e72f5b2f
李宇
1
|
729
730
731
732
733
734
735
|
.couponDialogBox {
max-height: 600px;
overflow-y: auto;
}
.formSearch {
|
764a832f
李宇
资金池
|
736
737
738
739
740
741
742
743
|
display: flex;
width: 100%;
font-size: 14px;
justify-content: space-between;
padding-bottom: 10px;
align-items: center;
|
e72f5b2f
李宇
1
|
744
745
|
}
|
764a832f
李宇
资金池
|
746
747
748
749
750
|
.tableBtn {
display: inline-block;
margin-right: 10px;
}
|
e72f5b2f
李宇
1
|
751
|
.greens {
|
764a832f
李宇
资金池
|
752
753
|
color: #3F9B6A;
}
|
e72f5b2f
李宇
1
|
754
755
756
|
::v-deep .buttonHover:hover {
color: #3f9b6a !important;
|
764a832f
李宇
资金池
|
757
758
759
760
|
border-color: #c5e1d2 !important;
background-color: #ecf5f0 !important;
outline: none;
}
|
e72f5b2f
李宇
1
|
761
|
|
764a832f
李宇
资金池
|
762
763
764
765
|
::v-deep .el-pagination__total {
position: absolute;
left: 10px;
}
|
e72f5b2f
李宇
1
|
766
767
768
|
::v-deep .el-pagination.is-background .el-pager li:not(.disabled).active {
background-color: #3f9b6a;
|
764a832f
李宇
资金池
|
769
770
|
}
</style>
|