You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
961 B
48 lines
961 B
import request from '@/utils/request'
|
|
|
|
export function fetchList(params) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/list',
|
|
method: 'get',
|
|
params: params
|
|
})
|
|
}
|
|
|
|
export function fetchSelectList(params) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/selectList',
|
|
method: 'get',
|
|
params: params
|
|
})
|
|
}
|
|
|
|
export function updateStatus(id, params) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/update/status/' + id,
|
|
method: 'post',
|
|
params: params
|
|
})
|
|
}
|
|
|
|
export function deleteSession(id) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/delete/' + id,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function createSession(data) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/create',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
export function updateSession(id, data) {
|
|
return request({
|
|
url: '/sms/SmsFlashPromotionSession/update/' + id,
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|