装起全部商城菜单

This commit is contained in:
2022-04-21 18:07:40 +08:00
parent 1b6f8f0ed9
commit 05fdb1d9e7
436 changed files with 50845 additions and 63 deletions
+31
View File
@@ -0,0 +1,31 @@
import request from '@/utils/request'
export function add(data) {
return request({
url: '/bxg/api/yxStoreSeckill',
method: 'post',
data
})
}
export function del(id) {
return request({
url: '/bxg/api/yxStoreSeckill/' + id,
method: 'delete'
})
}
export function edit(data) {
return request({
url: '/bxg/api/yxStoreSeckill',
method: 'put',
data
})
}
export function getSecKillInfo(id) {
return request({
url: '/bxg/api/yxStoreSecKill/info/' + id,
method: 'get'
})
}