24 lines
383 B
JavaScript
Raw Normal View History

2025-07-22 18:31:50 +08:00
import utils from "../js/utils.js";
/**
* 公告相关接口
*/
module.exports = {
/**
* 获取列表
* @returns {Promise<*>}
*/
getNoticeList(handler, data = {}) {
return utils.http(handler, 'notice/index', data)
},
/**
* 获取详情
* @returns {Promise<*>}
*/
getNoticeDetail(handler, data = {}) {
return utils.http(handler, 'notice/detail', data)
},
}