WXL
2024-05-22 e014c6f2c4123d811353b4fe59d1b489e0587543
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'
  })
}