common.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /**
  2. * @description 公共模块
  3. */
  4. import request from '@/utils/request'
  5. // 各种类型集合
  6. export const getTypeList = () => (request({
  7. method: "POST",
  8. url: "common/get_type_list"
  9. }))
  10. /*
  11. // 获取出差类型(室内室外)
  12. export const getAwayType = () => (request({
  13. method: 'POST',
  14. url: "common/get_evection_type_list",
  15. }))
  16. // 模块列表
  17. export const getModuleList = () => (request({
  18. method: 'POST',
  19. url: 'get_module_list'
  20. }))
  21. // 缓急程度列表
  22. export const getDegreeList = () => (request({
  23. method: 'POST',
  24. url: 'get_degree_list'
  25. }))
  26. // 采购类型列表
  27. export const getApplyTypeList = () => (request({
  28. method: 'POST',
  29. url: 'get_apply_type_list'
  30. }))
  31. // 采购支付方式列表
  32. export const getApplyPayTypeList = () => (request({
  33. method: 'POST',
  34. url: 'get_apply_pay_type_list'
  35. }))
  36. // 呈批类型列表
  37. export const getOfferTypeList = () => (request({
  38. method: 'POST',
  39. url: 'get_offer_type_list'
  40. }))
  41. // 请假类型列表
  42. export const getLeaveTypeList = () => (request({
  43. method: 'POST',
  44. url: 'get_leave_type_list'
  45. }))
  46. // 维修类型列表
  47. export const getMaintainTypeList = () => (request({
  48. method: 'POST',
  49. url: 'get_maintain_type_list'
  50. }))
  51. // 合同类型列表
  52. export const getContractTypeList = () => (request({
  53. method: 'POST',
  54. url: 'get_contract_type_list'
  55. }))
  56. */