特易招,招聘小程序
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.

62 lines
1.1 KiB

4 months ago
4 months ago
4 months ago
4 months ago
4 months ago
  1. // 记工记账相关接口
  2. const api = {
  3. //记工记账项目列表
  4. commonQueryNotebookList: {
  5. url: '/api/common/queryNotebookList',
  6. method: 'GET',
  7. },
  8. // 技工问题
  9. commonAddQuestion: {
  10. url: '/employ/notebook/addQuestion',
  11. method: 'POST',
  12. auth: true,
  13. limit : 500,
  14. showLoading : true,
  15. },
  16. //新建账本
  17. addNoteBook: {
  18. url: '/employ/notebook/addNoteBook',
  19. method: 'POST',
  20. auth: true,
  21. limit : 500,
  22. showLoading : true,
  23. },
  24. //记工记账-项目记工
  25. addWorkInfo: {
  26. url: '/employ/notebook/addWorkInfo',
  27. method: 'POST',
  28. auth: true,
  29. limit : 500,
  30. showLoading : true,
  31. },
  32. //记工记账-项目记账
  33. addBillInfo: {
  34. url: '/employ/notebook/addBillInfo',
  35. method: 'POST',
  36. auth: true,
  37. limit : 500,
  38. showLoading : true,
  39. },
  40. //记工记账-全年收支
  41. queryBill: {
  42. url: '/employ/notebook/queryBill',
  43. method: 'GET',
  44. auth: true,
  45. },
  46. //查询记工记录
  47. notebookQueryWork: {
  48. url: '/employ/notebook/queryWork',
  49. method: 'GET',
  50. auth: true,
  51. },
  52. //查询全年收支统计
  53. notebookQueryBillAmount: {
  54. url: '/employ/notebook/queryBillAmount',
  55. method: 'GET',
  56. auth: true,
  57. },
  58. }
  59. export default api