WXL
2024-09-05 df59cae6f3c73605a3f3b4055fdca5b4dabde2c2
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'
  })
}