1234567891011121314151617181920212223 |
- import utils from "../js/utils.js";
- module.exports = {
-
- getNoticeList(handler, data = {}) {
- return utils.http(handler, 'notice/index', data)
- },
-
- getNoticeDetail(handler, data = {}) {
- return utils.http(handler, 'notice/detail', data)
- },
- }
|