1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
| /**
| * 常用服务
| * useful server
| */
| const icon_prefix="/static/home/128/"
|
| export const us = {
| data:[
| {
| title:"待办",
| icon:icon_prefix+"todo.png",
| description:"待办事项",
| useCount:1000,
| page:'ToDoList'
| },
| {
| title:"已办",
| icon:icon_prefix+"todoManger.png",
| description:"已办事项",
| useCount:1000,
| page:'TaskManagerList'
| },
| {
| title:"扫一扫",
| icon:icon_prefix+"icon_sacan.png",
| description:"扫码",
| useCount:10000,
| page:'spare'
| }
| ]
| }
|
|
| /**
| * other server 其他服务
| */
| export const os = {
| data:[
| {
| title:"待点检",
| icon:icon_prefix+"xinwen.png",
| description:"设备点检",
| useCount:10000,
| page:'checkList'
| },{
| title:"待周保",
| icon:icon_prefix+"toupiao.png",
| description:"设备周保",
| useCount:10000,
| page:'baoZhou'
| },
| {
| title:"历史点检",
| icon:icon_prefix+"icon_historicalInspection.png",
| description:"历史点检",
| useCount:10000,
| page:'historicalInspection'
| },{
| title:"历史保养",
| icon:icon_prefix+"icon_historicalMaintenance.png",
| description:"历史保养",
| useCount:10000,
| page:'historicalMaintenance'
| }
| ]
| }
|
|
|
| /**
| * other server 其他服务
| */
| export const ws = {
| data:[
| {
| title:"报修",
| icon:icon_prefix+"baoxiu.png",
| description:"设备报修",
| useCount:10000,
| page:'reportRepair'
| },{
| title:"待维修",
| icon:icon_prefix+"repair.png",
| description:"设备维修",
| useCount:10000,
| page:'maintenanceReport'
| },{
| title:"历史维修",
| icon:icon_prefix+"historicalRepair.png",
| description:"历史维修",
| useCount:10000,
| page:'historicalRepair'
| }
| ]
| }
|
|