WXL
2 天以前 901206cc7e6d26d219ae52e92b1f29ba9738008b
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'
  })
}