homePage.js 1014 B

1234567891011121314151617181920212223242526272829303132
  1. import httputils from '@/api/httputils'
  2. // 查询首页系统卡片
  3. export function getCardList({ getParams }) {
  4. return httputils.getJson(`/data/home/querySystemCard`, getParams)
  5. }
  6. // 综合事项记录
  7. export function getQueryList({ getParams }) {
  8. return httputils.getJson(`/data/sms_zhsxjl/query`, getParams)
  9. }
  10. // 说明书变更记录
  11. export function getChangeList({ getParams }) {
  12. return httputils.getJson(`/data/rpt_change_record/query`, getParams)
  13. }
  14. // ==================== 集团首页接口 =======================
  15. // 查询项目信息统计数量
  16. export function getPlazaInfoCount({ getParams }) {
  17. return httputils.getJson(`/data/home/queryPlazaInfoCount`, getParams)
  18. }
  19. // 查询首页系统卡片
  20. export function querySystemCard({ getParams }) {
  21. return httputils.getJson(`/data/home/querySystemCard`, getParams)
  22. }
  23. // 查询集团首页事项状态统计
  24. export function queryEventStatus({ getParams }) {
  25. return httputils.getJson(`/data/home/queryEventStatus`, getParams)
  26. }