UNPKG

xlb-main-login

Version:

``` yarn install ```

28 lines (24 loc) 600 B
import { wei_url } from './config' import { axios } from '@/utils/request' // 模板消息列表 export function gettemplatelist(params) { return axios({ url: wei_url + '/demo-pub/v1/record/', method: 'get', params, }) } // 获取群发定时任务 export function puttemplatelist() { return axios({ url: wei_url + '/demo-pub/v1/record/task/', method: 'get', }) } // 删除群发定时任务 export function deltemplatelist(id) { return axios({ url: wei_url + '/demo-pub/v1/record/task/' + id + '/stop', method: 'delete', }) }