WXL
2025-05-15 b7092c2bf77696eb13fd680cb006211c17b48f5c
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'
  })
}