work.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /**
  2. * 常用服务
  3. * useful server
  4. */
  5. const icon_prefix = "/static/home/128/"
  6. export const us = {
  7. data: [{
  8. title: "检测委托",
  9. icon: icon_prefix + "richang.png",
  10. description: "记录每天的工作经验和心得",
  11. useCount: 1000,
  12. page: 'order'
  13. }, {
  14. title: "委托暂存",
  15. icon: icon_prefix + "wendang.png",
  16. description: "委托暂存",
  17. useCount: 10000,
  18. page: 'hold'
  19. }, {
  20. title: "委托查询",
  21. icon: icon_prefix + "kaoqin.png",
  22. description: "工作考勤",
  23. useCount: 10000,
  24. page: 'jindu',
  25. text: 0
  26. }, {
  27. title: "我的样品",
  28. icon: icon_prefix + "richeng.png",
  29. description: "建立和查看个人工作安排",
  30. useCount: 10000,
  31. page: 'list'
  32. }]
  33. }
  34. /**
  35. * other server 其他服务
  36. */
  37. export const os = {
  38. data: [{
  39. title: "个人信息",
  40. icon: icon_prefix + "toupiao.png",
  41. description: "投票中心",
  42. useCount: 10000,
  43. page: 'userdetail'
  44. },
  45. {
  46. title: "修改密码",
  47. icon: icon_prefix + "xinwen.png",
  48. description: "新闻中心",
  49. useCount: 10000,
  50. page: 'editpassword'
  51. }, {
  52. title: "我的钱包",
  53. icon: icon_prefix + "tongzhi.png",
  54. description: "我的钱包",
  55. useCount: 10000,
  56. page: 'wallet'
  57. },
  58. {
  59. title: "退出登录",
  60. icon: icon_prefix + "renwu.png",
  61. description: "任务中心",
  62. useCount: 10000,
  63. page: 'userexit'
  64. }
  65. ]
  66. }
  67. /**
  68. * other server 售后服务
  69. */
  70. export const sh = {
  71. data: [{
  72. title: "满意度调查",
  73. icon: icon_prefix + "toupiao.png",
  74. description: "投票中心",
  75. useCount: 10000,
  76. page: 'manyi'
  77. }, {
  78. title: "投诉",
  79. icon: icon_prefix + "renwu.png",
  80. description: "任务中心",
  81. useCount: 10000,
  82. page: 'tousuList'
  83. }, {
  84. title: "沟通",
  85. icon: icon_prefix + "wendang.png",
  86. description: "文档中心",
  87. useCount: 10000,
  88. page: 'communicationList'
  89. }]
  90. }