WXL
2025-01-15 3a7caf4344d5911a3ee68d232e53887d6cc2ff6b
src/api/smartor/smsparam.js
@@ -29,8 +29,8 @@
// 修改短信参数
export function updateSmsparam(data) {
  return request({
    url: '/smartor/smsparam',
    method: 'put',
    url: '/smartor/smsparam/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除短信参数
export function delSmsparam(paramid) {
  return request({
    url: '/smartor/smsparam/' + paramid,
    method: 'delete'
    url: '/smartor/smsparam/remove/' + paramid,
    method: 'get'
  })
}