register.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import request from '@/utils/request'
  2. // 字典值yzdqId
  3. export function getDictionaryFn(data) {
  4. return request({
  5. url: '/system/dict/data/type/'+data,
  6. method: 'get',
  7. type:true
  8. })
  9. }
  10. // 参数设置
  11. export function getconfigKeyFn(data) {
  12. return request({
  13. url: '/system/config/scoreWatermark/'+data,
  14. method: 'get',
  15. type:true
  16. })
  17. }
  18. // // 流程发起时获取下一节点
  19. // export function getflowableNextRegFn(data) {
  20. // return request({
  21. // 'url': '/flowable/task/nextFlowNodeByStart',
  22. // 'method': 'post',
  23. // data:data
  24. // })
  25. // }
  26. // // 发起流程
  27. // export function getflowableRegFn(id,data) {
  28. // return request({
  29. // 'url': '/flowable/definition/start/'+id,
  30. // 'method': 'post',
  31. // data:data
  32. // })
  33. // }
  34. // //获取流程定义列表
  35. // export function getflowlistFn(data) {
  36. // return request({
  37. // 'url': '/flowable/definition/list',
  38. // 'method': 'get',
  39. // 'data':data
  40. // })
  41. // }
  42. // //获取自己发起的流程
  43. // export function getflowMyFn(data) {
  44. // return request({
  45. // 'url': '/flowable/task/myProcess',
  46. // 'method': 'get',
  47. // 'data':data
  48. // })
  49. // }