WXL
2025-01-15 3a7caf4344d5911a3ee68d232e53887d6cc2ff6b
src/api/smartor/smsaccount.js
@@ -29,8 +29,8 @@
// 修改短信账号
export function updateSmsaccount(data) {
  return request({
    url: '/smartor/smsaccount',
    method: 'put',
    url: '/smartor/smsaccount/edit',
    method: 'post',
    data: data
  })
}
@@ -38,7 +38,7 @@
// 删除短信账号
export function delSmsaccount(smsacountid) {
  return request({
    url: '/smartor/smsaccount/' + smsacountid,
    method: 'delete'
    url: '/smartor/smsaccount/remove/' + smsacountid,
    method: 'get'
  })
}