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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
| <template>
| <view class="content">
| <view class="mains">
| <view class="box" v-for="(item,index) in itemData" :key="index" @tap="toUrl(item)">
| <image :src="item.img" mode=""></image>
| <view class="texts">
| <view class="font1">{{item.text}}</view>
| <view class="font2">查看详情</view>
| </view>
| <uni-icons type="forward" color="#888" style="position: absolute;right: 70rpx;" size="18"></uni-icons>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
| serverUrl: uni.getStorageSync('serverUrl') || 'http://47.96.97.237/API',
| itemData: [{
| // img:'../../static/icon0.png',
| // text:'报表中心',
| // url:'/pages/shebeilvli/EquipFileBillResume',
| // id:0
| // },{
| img: '../../static/icon/icon_a1.png',
| text: '设备档案',
| url: '/pages/shebeidangan/Gy_EquipFileMainBillList',
| id: 1
| }, {
| img: '../../static/icon/icon_a2.png',
| text: '设备保养计划单',
| url: '/pages/baoyangjihua/Sb_EquipMaintainPlanList',
| id: 2
| }, {
| img: '../../static/icon/icon_a3.png',
| text: '设备保养记录单',
| url: '/pages/baoyangjilu/Sb_EquipMaintainRuleList',
| id: 3
| // },{
| // img:'../../static/icon/icon_a4.png',
| // text:'设备点检计划单',
| // url:'',
| // id:4
| // },{
| // img:'../../static/icon/icon_a5.png',
| // text:'设备点检记录单',
| // url:'',
| // id:5,
| }, {
| img: '../../static/icon/icon_a6.png',
| text: '设备故障登记表',
| url: '/pages/guzhangdengji/EqpConkBookBillList',
| id: 6
| }, {
| img: '../../static/icon/icon_a7.png',
| text: '设备维修记录单',
| url: '/pages/shebeiweixiu/SbEqpMaintenanceBillList',
| id: 7,
| }, {
| img: '../../static/icon/icon_a8.png',
| text: '设备履历',
| url: '/pages/shebeilvli/EquipFileBillResume',
| id: 8,
| }, {
| img: '../../static/icon/icon_a9.png',
| text: '工序进站接收单',
| url: '/pages/gongxuIn/Cj_StationInBillList',
| id: 9,
| }, {
| img: '../../static/icon/icon_a10.png',
| text: '工序出站汇报单',
| url: '/pages/gongxuOut/Cj_StationOutBillList',
| id: 10,
| }, {
| img: '../../static/icon/icon_a11.png',
| text: '工序委外发出单',
| url: '/pages/weiwaigxIn/Cj_StationEntrustInBillList',
| id: 11,
| }, {
| img: '../../static/icon/icon_a12.png',
| text: '工序委外接收单',
| url: '/pages/weiwaigxIn/Cj_StationEntrustOutBillList',
| id: 12,
| // }, {
| // img: '../../static/icon/icon_a13.png',
| // text: '设备管理',
| // url: '',
| // id: 13,
| }, {
| img: '../../static/icon/icon_a14.png',
| text: '报工平台',
| url: '/pages/baogong/table',
| id: 14,
| }, {
| img: '../../static/icon/icon_a15.png',
| text: '异常反馈单',
| url: '/pages/yichang/MESExecptFeedBackBillList',
| id: 15,
| }, {
| img: '../../static/icon/icon_a16.png',
| text: '异常反馈处理单',
| url: '/pages/yichang/list',
| id: 16,
| }]
| }
| },
| onLoad() {
|
| },
| methods: {
| toUrl(item) {
| if (item.url) {
| uni.navigateTo({
| url: item.url
| })
| } else {
| // uni.showToast({
| // title:'功能开发中。。。',
| // icon:'none'
| // })
| }
| }
| }
| }
| </script>
|
| <style lang="scss" scoped>
| page {
| width: 100vw;
| min-height: 100vh;
| background-color: #f5f5f5;
| }
|
| .mains {
| width: 720rpx;
| margin: 0 auto;
| padding-bottom: 120rpx;
|
| .box {
| width: 680rpx;
| margin: 0 auto;
| margin-top: 20rpx;
| display: flex;
| align-items: center;
| background-color: #fff;
| border-radius: 20rpx;
| box-shadow: 2upx 2upx 20upx 0 #ddd;
|
| image {
| width: 78rpx;
| height: 78rpx;
| padding: 10rpx;
| margin: 14rpx 30rpx;
| }
|
| .texts {
| font-size: 30rpx;
| font-weight: normal;
| color: #333333;
|
| .font1 {}
|
| .font2 {
| font-size: 25rpx;
| color: #999;
| }
| }
| }
| }
| </style>
|
|