Commit e051eff3 authored by Mac's avatar Mac

1

parent 50b23939
import request from '../../utils/request'
/**
* 获取公告分页列表
*/
export function getNoticePageList(data) {
return request({
url: '/UserCenter/GetNoticePageList',
method: 'post',
data
});
}
/**
* 获取 公告状态枚举 列表
*/
export function getNoticeStateEnumList(data) {
return request({
url: '/UserCenter/GetNoticeStateEnumList',
method: 'post',
data
});
}
/**
* 获取 公告配置
*/
export function getNoticeBaseInfo(data) {
return request({
url: '/UserCenter/GetNoticeBaseInfo',
method: 'post',
data
});
}
/**
* 获取编号规则 枚举列表
*/
export function getNoticeRuleEnumList(data) {
return request({
url: '/UserCenter/GetNoticeRuleEnumList',
method: 'post',
data
});
}
/**
* 新增修改 公告配置
*/
export function setNoticeBaseInfo(data) {
return request({
url: '/UserCenter/SetNoticeBaseInfo',
method: 'post',
data
});
}
/**
* 公告操作
*/
export function setNoticeOperation(data) {
return request({
url: '/UserCenter/SetNoticeOperation',
method: 'post',
data
});
}
This diff is collapsed.
......@@ -87,6 +87,11 @@ const routes = [{
component: () =>
import("pages/system/msgmanage.vue")
},
{
path: "/system/document", //行政公告
component: () =>
import("pages/system/document.vue")
},
{
path: "/course/catagory", //课程分类
component: () =>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment