index.js 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. import request from '@/utils/request'
  2. // 查询轮播图列表
  3. export function getBannerlist(data) {
  4. return request({
  5. url: '/system/rotograph/list',
  6. method: 'get',
  7. data:data
  8. })
  9. }
  10. //消息通知未读消息条数
  11. export function getNoticenumber(data) {
  12. return request({
  13. url: '/system/notice/number',
  14. method: 'get',
  15. data:data,
  16. })
  17. }
  18. //查看消息通知列表
  19. export function getNoticelist(data) {
  20. return request({
  21. url: '/system/notice/list',
  22. method: 'get',
  23. data:data
  24. })
  25. }
  26. //
  27. export function getdbdnumber(data) {
  28. return request({
  29. url: '/projectV2/dbd/number',
  30. method: 'get',
  31. data:data
  32. })
  33. }
  34. //首页统计
  35. export function getCommonCensus(data) {
  36. return request({
  37. url: '/fgw/common/census',
  38. method: 'post',
  39. data:data,
  40. type:true
  41. })
  42. }
  43. //节点统计
  44. export function getCommonsbAndJdNum(data) {
  45. return request({
  46. url: '/fgw/common/sbAndJdNum',
  47. method: 'post',
  48. data:data,
  49. type:true
  50. })
  51. }
  52. // 统计项目整体概况
  53. export function getCommonxmztgk(data) {
  54. return request({
  55. url: '/fgw/common/xmztgk',
  56. method: 'post',
  57. data:data,
  58. type:true
  59. })
  60. }
  61. // 责任单位超期fgw:common:zrdwCqNum
  62. export function getzrdwCqNumFn(data) {
  63. return request({
  64. url: '/fgw/common/zrdwCqNum',
  65. method: 'post',
  66. data:data,
  67. type:true
  68. })
  69. }
  70. // 本月汇报进度fgw:common:hbjd
  71. export function getCommonhbjd(data) {
  72. return request({
  73. url: '/fgw/common/hbjd',
  74. method: 'post',
  75. data:data,
  76. type:true
  77. })
  78. }
  79. // 首页_催报fgw:sytj:sycb
  80. export function getjdapsycb(data) {
  81. return request({
  82. url: '/fgw/jdap/sycb',
  83. method: 'post',
  84. data:data,
  85. })
  86. }
  87. // 字典值yzdqId
  88. export function getDictionaryFn(data) {
  89. return request({
  90. url: '/system/dict/data/type/'+data,
  91. method: 'get',
  92. type:true
  93. })
  94. }