auditPaths-add-or-update.js 447 B

12345678910111213141516171819202122232425
  1. import request from '@/utils/request'
  2. // 提交数据主
  3. export function addCharge(data) {
  4. return request({
  5. url: '/warehouse/paths/add',
  6. method: 'post',
  7. data: data
  8. })
  9. }
  10. // 查询审核人
  11. export function reviewer() {
  12. return request({
  13. url: '/system/role/auditGetRolelist',
  14. method: 'get',
  15. })
  16. }
  17. //修改主表
  18. export function modify(fId) {
  19. return request({
  20. url: '/warehouse/paths/' + fId,
  21. method: 'get'
  22. })
  23. }