阅行客电子档案
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
352 B

  1. import request from '@/utils/request'
  2. export function getNoticeList(params) {
  3. return request({
  4. url: 'api/notice/initNotice',
  5. method: 'get',
  6. params
  7. })
  8. }
  9. // 发布
  10. export function add(data) {
  11. return request({
  12. url: 'api/notice/create',
  13. method: 'post',
  14. data
  15. })
  16. }
  17. export default { add, getNoticeList }