query.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. import {httpApi} from "../../request/httpApi";
  2. export default {
  3. //获取当前合同段下的日志类型
  4. async queryLogList(form, msg = true) {
  5. return httpApi({
  6. url: '/api/blade-business/contractLog/queryCurrentContractLogList',
  7. method: 'get',
  8. params: form
  9. }, msg)
  10. },
  11. //获取当前日志类型的填报人
  12. async queryFillUser(form, msg = true) {
  13. return httpApi({
  14. url: '/api/blade-business/contractLog/queryFillUser',
  15. method: 'get',
  16. params: form
  17. }, msg)
  18. },
  19. //施工日志分页
  20. async constructionLogPage(form, msg = true) {
  21. return httpApi({
  22. url: '/api/blade-business/contractLog/constructionLogPage',
  23. method: 'post',
  24. data: form
  25. }, msg)
  26. },
  27. //批量废除
  28. async batchAbolish(form, msg = true) {
  29. return httpApi({
  30. url: '/api/blade-business/contractLog/batchAbolish',
  31. method: 'post',
  32. params: form
  33. }, msg)
  34. },
  35. //获取合同段当前日志节点下的填报日期记录
  36. async getSubmitLogDateList(form, msg = true) {
  37. return httpApi({
  38. url: '/api/blade-business/contractLog/getSubmitLogDateList',
  39. method: 'post',
  40. params: form
  41. }, msg)
  42. },
  43. }