24 lines
383 B
JavaScript
24 lines
383 B
JavaScript
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)
|
|
},
|
|
}
|