#
whycq
2022-11-16 dfc9db579ab536f9ec0ae3d0683c55824e50d16b
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<template>
    <view class="container">
        <!-- 主视图 -->
        <uni-transition :duration="duration" :mode-class="modeClass" :styles="homeView" :show="homeViewShow">
            <view class="home-view">
                <view class="head">
                    <text>自动仓库WCS监控平台</text>
                </view>
                <!-- 日历 -->
                <view class="time-tools">{{calendar}}</view>
                <view class="button-left"></view>
                <view class="button-right"></view>
                <!-- 主体 -->
                <view class="main">
                    <view class="mian-item">
                        <view class="mian-item-box">
                            <y-box>
                                <view class="content-item">
                                    <text>自动化立体仓库</text>
                                    <p class="english">Automatic Storageand Retrieval System</p>
                                    <p class="introduce-content">  利用立体仓库设备可实现仓库高层合理化、存取自动化、操作简便化;
                                    自动化立体仓库是当前技术水平较高的形式。
                                    自动化立体仓库的主体由货架、巷道式堆垛起重机、入(出)库工作台和自动运进(出)及操作控制系统组成。
                                    货架是钢结构或钢筋混凝土结构的建筑物或结构体,货架内是标准尺寸的货位空间,巷道堆垛起重机穿行于货
                                    架之间的巷道中,完成存、取货的工作。管理上采用计算机及条形码技术。</p>
                                </view>
                                <view class="content-item img">
                                    <text>仓库数据</text>
                                    <p class="english">warehouse data</p>
                                    <view>
                                        <view class="charge-info-item">
                                            <image src="../../static/a1.png" mode="aspectFit"></image>
                                            <view>
                                                <text class="count">{{xDistance}}</text>
                                                <text class="unit">m</text>
                                            </view>
                                            <view>累计走行距离(米)</view>
                                        </view>
                                    </view>
                                </view>
                            </y-box>
                        </view>
                    </view>
                    <view class="mian-item">
                        <view class="mian-item-box">
                            <view style="height: 38%;">
                                <y-box></y-box>
                            </view>
                            <view style="height: 2%;"></view>
                            <view style="height: 38%;">
                                <y-box></y-box>
                            </view>
                            <view style="height: 2%;"></view>
                            <view style="height: 20%;">
                                <y-box></y-box>
                            </view>
                        </view>
                    </view>
                </view>
            </view>
        </uni-transition>
        <!-- 全板/拣料信息 -->
        <!-- <view class="info">
            
        </view> -->
        <!-- 异常信息 -->
        <!-- <view class="error-info"></view> -->
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                homeViewShow: true,
                modeClass: ['fade', 'slide-top'],
                homeView: {
                    justifyContent: 'center',
                    alignItems: 'center',
                    width: '100vw',
                    height: '100vh',
                    borderRadius: '5px',
                    textAlign: 'center',
                    backgroundColor: '#4cd964',
                    boxShadow: '0 0 5px 1px rgba(0,0,0,0.2)'
                },
                duration: 1000,
                calendar: '',
                xDistance: '',
                yDistance: '',
                xDuration: '',
                yDuration: '',
            }
        },
        onShow() {
            // 隐藏时间,电量,信号等
            plus.navigator.setFullscreen(true)
        },
        onLoad() {
            this.getDate()
            setInterval(()=>{
                this.getDate()
            },1000)
            setInterval(()=>{
                // this.handle(['fade', 'slide-top'])
            },4000)
        },
        methods: {
            handle(type) {
                this.homeViewShow = !this.homeViewShow
                this.modeClass = type
            },
            // 日历
            getDate() {
                var dt = new Date();
                var year,month,day,hours,minutes,seconds,weeks
                year = dt.getFullYear();
                month = (dt.getMonth()+1) < 10 ? '0'+ (dt.getMonth()+1) : (dt.getMonth()+1);
                day = dt.getDate() < 10 ? '0'+dt.getDate() : dt.getDate();
                hours = dt.getHours() < 10 ? '0' + dt.getHours() : dt.getHours();
                minutes = dt.getMinutes() < 10 ? '0' + dt.getMinutes() : dt.getMinutes();
                seconds = dt.getSeconds() < 10 ? '0' + dt.getSeconds() : dt.getSeconds(); 
                weeks = dt.getDay(); 
                switch (weeks) {
                    case 0: weeks = "星期日"; break;
                    case 1: weeks = "星期一"; break;
                    case 2: weeks = "星期二"; break;
                    case 3: weeks = "星期三"; break;
                    case 4: weeks = "星期四"; break;
                    case 5: weeks = "星期五"; break;
                    default : weeks = "星期六";
                }
                this.calendar = year + "年" + month + "月" + day + "日 " + hours + ":" + minutes + ":" + seconds + " " + weeks
            },
        }
        
    }
</script>
 
<style>
    .container{
        width: 100vw;
        min-height: 100vh;
        background-color: blue;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #fff;
    }
    /* 主视图 */
    .home-view {
        width: 100vw;
        min-height: 100vh;
        background-image: url(../../static/background.png);
        background-size: 100vw 100vh;
    }
    .home-right {
        width: 50vw;
        height: 89vh;
        /* background-color: cadetblue; */
    }
    .home-right-box {
        width: 98%;
        height: 98%;
    }
    .head {
        width: 100vw;
        height: 11vh;
        font-size: 4vh;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .time-tools {
        position: absolute;
        right: 2%;
        top: 2%;
        font-size: 1.5vh;
    }
    .button-left {
        position: absolute;
        background-image: url(../../static/right.png);
        background-size: 100% 100%;
        top: 1.8%;
        left: 21.3%;
        width: 13.5%;
        height: 8.5%;
        transform: scaleX(-1);
    }
    .button-right {
        position: absolute;
        background-image: url(../../static/right.png);
        background-size: 100% 100%;
        top: 1.8%;
        left: 65%;
        width: 13.5%;
        height: 8.5%;
    }
    .charge-info-item {
        width: 100%;
        height: 100%;
    }
    .charge-info-item image {
        height: 100%;
        width: 100%;
    }
    
    
    
    /* 共用 */
    .main {
        width: 100vw;
        height: 88vh;
        margin-top: 1vh;
        display: flex;
        
    }
    .mian-item {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .mian-item:last-child {
        align-items: flex-start;
    }
    .mian-item-box {
        width: 98%;
        height: 98%;
    }
    .content-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 1vh;
        margin-left: 4%;
        margin-right: 4%;
    }
    .english {
        font-size: 0.1vh;
    }
    .introduce-content {
        font-size: 0.3vh;
        padding-top: 2vh;
        text-indent: 3vh;
        letter-spacing: 0.3vh;
    }
    
    
    
    
    /* 全板/拣料信息 */
    .info {
        width: 100vw;
        min-height: 100vh;
        background-color: #666666;
    }
    /* 异常信息 */
    .error-info {
        width: 100vw;
        min-height: 100vh;
        background-color: #00ffff;
    }
</style>