ffxc.js 616 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import http from '@/http/api.js'
  2. export const getjwtdFfxc = (xclx,xcbt,current,size) => {
  3. return http.request({
  4. url: '/api/jwtdFfxc/page',
  5. method: 'get',
  6. params:{
  7. xclx,xcbt,current,size
  8. }
  9. })
  10. }
  11. export const getDictList = () => {
  12. return http.request({
  13. url: '/api/blade-system/dept/getDictList',
  14. method: 'get',
  15. params:{}
  16. })
  17. }
  18. export const detailApp = (id) => {
  19. return http.request({
  20. url: '/api/jwtdFfxc/detailApp',
  21. method: 'get',
  22. params:{
  23. id
  24. }
  25. })
  26. }
  27. export const jfupdate = (row) => {
  28. return http.request({
  29. url: '/api/jwtdFfxcLlls/update',
  30. method: 'post',
  31. data: row
  32. })
  33. }