profile.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. const operation1 = [
  2. {
  3. key: 'op1',
  4. type: '订购关系生效',
  5. name: '曲丽丽',
  6. status: 'agree',
  7. updatedAt: '2017-10-03 19:23:12',
  8. memo: '-',
  9. },
  10. {
  11. key: 'op2',
  12. type: '财务复审',
  13. name: '付小小',
  14. status: 'reject',
  15. updatedAt: '2017-10-03 19:23:12',
  16. memo: '不通过原因',
  17. },
  18. {
  19. key: 'op3',
  20. type: '部门初审',
  21. name: '周毛毛',
  22. status: 'agree',
  23. updatedAt: '2017-10-03 19:23:12',
  24. memo: '-',
  25. },
  26. {
  27. key: 'op4',
  28. type: '提交订单',
  29. name: '林东东',
  30. status: 'agree',
  31. updatedAt: '2017-10-03 19:23:12',
  32. memo: '很棒',
  33. },
  34. {
  35. key: 'op5',
  36. type: '创建订单',
  37. name: '汗牙牙',
  38. status: 'agree',
  39. updatedAt: '2017-10-03 19:23:12',
  40. memo: '-',
  41. },
  42. ];
  43. const operation2 = [
  44. {
  45. key: 'op1',
  46. type: '订购关系生效',
  47. name: '曲丽丽',
  48. status: 'agree',
  49. updatedAt: '2017-10-03 19:23:12',
  50. memo: '-',
  51. },
  52. ];
  53. const operation3 = [
  54. {
  55. key: 'op1',
  56. type: '创建订单',
  57. name: '汗牙牙',
  58. status: 'agree',
  59. updatedAt: '2017-10-03 19:23:12',
  60. memo: '-',
  61. },
  62. ];
  63. export const getProfileData = {
  64. operation1,
  65. operation2,
  66. operation3,
  67. };
  68. export default {
  69. getProfileData,
  70. };