WXL
2025-03-04 32674b04eb3cb387d54303f4a58f9b4c3a851ed2
src/api/smartor/smsrecords.js
@@ -29,8 +29,8 @@
// 修改短信记录
export function updateSmsrecords(data) {
  return request({
    url: '/smartor/smsrecords',
    method: 'put',
    url: '/smartor/smsrecords/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除短信记录
export function delSmsrecords(recordid) {
  return request({
    url: '/smartor/smsrecords/' + recordid,
    method: 'delete'
    url: '/smartor/smsrecords/remove/' + recordid,
    method: 'get'
  })
}