process.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. import http from "@/mock/model/http"
  2. import list from "@/mock/model/list"
  3. import Mock from 'mockjs'
  4. const Random = Mock.Random
  5. export function oingList() { //我的待办列表
  6. let model = http
  7. list.count = 100
  8. list.list = []
  9. for (let i = 0; i < 15; i++) {
  10. list.list.push(Mock.mock({
  11. id: '@increment',//待办编号
  12. 'title|1': ['备货申请', '采购入库', '咨询确认单审批', '销售确认单审批', '销售出库', '售后退货申请', '售后退货', '采购调拨', '采购盘点'],//流程名称
  13. orderNo: '@guid',//单据号
  14. 'type|1': ['待审核', '待采购反馈', '待发货', '待收货', '待申请售后'],//当前节点
  15. timestamp: +Mock.Random.date('T'),//停留时间
  16. author: '@cname',//发起人
  17. reviewer: '@ctitle',//发起部门
  18. addTime: '@datetime', //创建时间
  19. }))
  20. }
  21. model.data = list
  22. return {
  23. url: 'process/oingList',
  24. type: 'post',
  25. data: model
  26. }
  27. }
  28. export function doneList() { //我的已办列表
  29. let model = http
  30. list.count = 100
  31. list.list = []
  32. for (let i = 0; i < 15; i++) {
  33. list.list.push(Mock.mock({
  34. id: '@increment',//待办编号
  35. 'title|1': ['备货申请', '采购入库', '咨询确认单审批', '销售确认单审批', '销售出库', '售后退货申请', '售后退货', '采购调拨', '采购盘点'],//流程名称
  36. orderNo: '@guid',//单据号
  37. 'type|1': ['待审核', '待采购反馈', '待发货', '待收货', '待申请售后'],//当前节点
  38. timestamp: +Mock.Random.date('T'),//停留时间
  39. author: '@cname',//发起人
  40. reviewer: '@ctitle',//发起部门
  41. addTime: '@datetime', //创建时间
  42. }))
  43. }
  44. model.data = list
  45. return {
  46. url: 'process/doneList',
  47. type: 'post',
  48. data: model
  49. }
  50. }
  51. export function storeListAll() {
  52. let model = http
  53. model.data = []
  54. for (let i = 0; i < 50; i++) {
  55. let father = Mock.mock({
  56. id: '@increment',//id
  57. name: '@ctitle(5)',//公司名称
  58. child: []
  59. })
  60. for (let j = 0; j < 10; j++) {
  61. father.child.push(Mock.mock({
  62. id: '@increment',//id
  63. name: '@ctitle(5)',//仓库名称
  64. }))
  65. }
  66. model.data.push(father)
  67. }
  68. return {
  69. url: 'process/storeListAll',
  70. type: 'post',
  71. data: model
  72. }
  73. }
  74. export function statistics() {
  75. let model = http
  76. model.data= Mock.mock({
  77. value1: '@integer(300, 5000)',//当前库存
  78. value2: '@integer(300, 5000)',//待入库
  79. value3: '@integer(300, 5000)',//待出库
  80. value4: '@integer(300, 5000)',//可用库存
  81. value5: '@integer(300, 5000)',//在途库存
  82. })
  83. return {
  84. url: 'process/statistics',
  85. type: 'post',
  86. data: model
  87. }
  88. }
  89. export function storeLog() {
  90. let model = http
  91. model.data= Mock.mock({
  92. value1: '@integer(300, 5000)',//当前库存
  93. value2: '@integer(300, 5000)',//待入库
  94. value3: '@integer(300, 5000)',//待出库
  95. value4: '@integer(300, 5000)',//可用库存
  96. value5: '@integer(300, 5000)',//在途库存
  97. })
  98. return {
  99. url: 'process/storeLog',
  100. type: 'post',
  101. data: model
  102. }
  103. }