| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /**
- * 常用服务
- * useful server
- */
- const icon_prefix = "/static/home/128/"
- export const us = {
- data: [{
- title: "检测委托",
- icon: icon_prefix + "richang.png",
- description: "记录每天的工作经验和心得",
- useCount: 1000,
- page: '/pages/jiance/order'
- }, {
- title: "委托暂存",
- icon: icon_prefix + "wendang.png",
- description: "委托暂存",
- useCount: 10000,
- page: '/pages/hold/hold'
- }, {
- title: "委托查询",
- icon: icon_prefix + "kaoqin.png",
- description: "工作考勤",
- useCount: 10000,
- page: '/pages/jiance/jindu',
- text: 0
- }, {
- title: "我的样品",
- icon: icon_prefix + "richeng.png",
- description: "建立和查看个人工作安排",
- useCount: 10000,
- page: '/pages/jiance/list'
- }]
- }
- /**
- * other server 售后服务
- */
- export const sh = {
- data: [{
- title: "满意度调查",
- icon: icon_prefix + "toupiao.png",
- description: "投票中心",
- useCount: 10000,
- page: '/pages/jiance/manyi'
- }, {
- title: "投诉",
- icon: icon_prefix + "renwu.png",
- description: "任务中心",
- useCount: 10000,
- page: '/pages/jiance/tousu/tousuList'
- }, {
- title: "沟通",
- icon: icon_prefix + "wendang.png",
- description: "文档中心",
- useCount: 10000,
- page: '/pages/communication/communicationList'
- }]
- }
- /**
- * other server 其他服务
- */
- export const os = {
- data: [{
- title: "个人信息",
- icon: icon_prefix + "toupiao.png",
- description: "投票中心",
- useCount: 10000,
- page: '/pages/user/userdetail'
- },
- {
- title: "修改密码",
- icon: icon_prefix + "xinwen.png",
- description: "新闻中心",
- useCount: 10000,
- page: '/pages/user/editpassword'
- }, {
- title: "我的钱包",
- icon: icon_prefix + "tongzhi.png",
- description: "我的钱包",
- useCount: 10000,
- page: '/pages/wallet/wallet'
- },
- {
- title: "退出登录",
- icon: icon_prefix + "renwu.png",
- description: "任务中心",
- useCount: 10000,
- page: 'userexit'
- }
- ]
- }
|