refactor(system/sms): 更新短信配置和日志接口的 URL

- 修改 smsConfig.ts 中的 BASE_URL 为 '/system/sms/config'
- 修改 smsLog.ts 中的 BASE_URL 为 '/system/sms/log'
This commit is contained in:
2025-07-24 22:39:45 +08:00
parent bd7a266e85
commit 53aeebeb4d
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import http from '@/utils/http'
export type * from './type'
const BASE_URL = '/system/smsConfig'
const BASE_URL = '/system/sms/config'
/** @desc 查询短信配置列表 */
export function listSmsConfig(query: T.SmsConfigPageQuery) {

View File

@@ -3,7 +3,7 @@ import http from '@/utils/http'
export type * from './type'
const BASE_URL = '/system/smsLog'
const BASE_URL = '/system/sms/log'
/** @desc 查询短信日志列表 */
export function listSmsLog(query: T.SmsLogPageQuery) {