WXL
2025-03-20 b8085c12e2f5542210c8a73a997e0b88d39e18b0
src/api/smartor/smstemplet.js
@@ -29,8 +29,8 @@
// 修改短信模板
export function updateSmstemplet(data) {
  return request({
    url: '/smartor/smstemplet',
    method: 'put',
    url: '/smartor/smstemplet/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除短信模板
export function delSmstemplet(templetid) {
  return request({
    url: '/smartor/smstemplet/' + templetid,
    method: 'delete'
    url: '/smartor/smstemplet/remove/' + templetid,
    method: 'get'
  })
}