work.js 1.9 KB

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