We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2dae1 commit c9409a8Copy full SHA for c9409a8
src/api/promotion/seckillActivity.js
@@ -18,6 +18,14 @@ export function updateSeckillActivity(data) {
18
})
19
}
20
21
+// 关闭限时折扣活动
22
+export function closeSeckillActivity(id) {
23
+ return request({
24
+ url: '/promotion/seckill-activity/close?id=' + id,
25
+ method: 'put'
26
+ })
27
+}
28
+
29
// 删除秒杀活动
30
export function deleteSeckillActivity(id) {
31
return request({
@@ -42,13 +50,3 @@ export function getSeckillActivityPage(query) {
42
50
params: query
43
51
44
52
45
-
46
-// 导出秒杀活动 Excel
47
-export function exportSeckillActivityExcel(query) {
48
- return request({
49
- url: '/promotion/seckill-activity/export-excel',
- method: 'get',
- params: query,
- responseType: 'blob'
53
- })
54
-}
0 commit comments