systemRemind.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. import request from '@/utils/request' //引入axios请求及拦截器
  2. export default {
  3. //新增提醒设置
  4. appsystemremind(data) {
  5. return request({
  6. url: '/system/remind',
  7. method: 'post',
  8. data
  9. })
  10. },
  11. //修改提醒设置
  12. editsystemremind(data) {
  13. return request({
  14. url: '/system/remind/edit',
  15. method: 'post',
  16. data
  17. })
  18. },
  19. //查询提醒设置列表
  20. inquiresystemremindlist(data) {
  21. return request({
  22. url: '/system/remind/list',
  23. method: 'get',
  24. params: data
  25. })
  26. },
  27. //获取提醒设置详细信息
  28. obtainsystemremind(data) {
  29. return request({
  30. url: `/system/remind/` + data,
  31. method: 'get',
  32. })
  33. },
  34. //查询业务层次
  35. inquirelistGradeService(data) {
  36. return request({
  37. url: '/system/remind/listGradeService',
  38. method: 'get',
  39. params: data
  40. })
  41. },
  42. //检查密码修改时间
  43. inquireusercheckPwdTime(data) {
  44. return request({
  45. url: '/system/user/checkPwdTime',
  46. method: 'get',
  47. params: data
  48. })
  49. },
  50. //学时抽查
  51. commonfreedecryptOfficialInfo(data) {
  52. return request({
  53. url: '/common/free/decryptOfficialInfo',
  54. method: 'post',
  55. data
  56. })
  57. },
  58. }