czt
3 天以前 051ec6fa944bdf2c6030036f3f2e52fb5d6b8899
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
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" id="viewportMeta" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
        <title>首页</title>
        <link href="css/mui.min.css" rel="stylesheet" />
        <script>
            var initViewport = function(height){
                var metaEl = document.querySelector("#viewportMeta");
                var content = "height=" + height + ",width=device-width,initial-scale=1.0,user-scalable=no";
                metaEl.setAttribute('name', 'viewport');
                metaEl.setAttribute('content', content);
            }
            var realHeight = window.innerWidth > window.innerHeight ? window.innerWidth : window.innerHeight
            initViewport(realHeight);
        </script>
        <style>
            .login_body{
                height: 100vh;
                width: 100vw;
                padding: 10vh 10vw 0 10vw; 
                background: #245ca7;
                color: #fff;
            }
            .logo{
                text-align: center;
                height: 18vh;
            }
            .logo img{
                height: 10vh; 
                margin: auto; 
            }
            .logo p{
                margin-top: 2vh;
                font-size: 5vh;
                color: #FFFFFF;
            }
            .form{
                margin-top: 4vh;
                /* height: 40vh; */
            }
            .form input{
                padding: 2vh 0 2vh 12vw;
                height: 6vh; 
                font-size: 2.4vh;
                color: #333;
                border-radius: 6px;
                border: 0px;
            }
            .form .yhm input{
                background: url(./images/ico_yhm.png) no-repeat 2vw center #fff; 
                background-size: 3.2vh auto; 
                margin-bottom: 2vh;
            }
            .form .mm input{
                background: url(./images/ico_mm.png) no-repeat 2vw center #fff; 
                background-size: 3.2vh auto;
                margin-bottom: 1vh;
            }
            .form input:focus,input:hover{
                box-shadow: none!important;  
                border-bottom: unset;
            }
            .mui-input-row .mui-input-password~.mui-icon-eye{
                font-size: 3.2vh;
                top: 1.4vh;
            }
            .form button{
                width: 100%;
                margin-top: 3vh;
                height: 7vh;
                color: #245ca7;
                padding: 1.5vh 0;
                font-size: 3vh;
                font-weight: 700;
                border-radius: 6px;
                margin-bottom: 2vh;
            }
            .form button:hover{
                margin-top: 3vh;
                height: 7vh;
            }
            
        </style>
    </head>
    <body>
        <div class="mui-content">
            <!--主体-->
            <div class="login_body">
                <!--logo-->
                <div class="logo">
                    <img src="./images/logo.png">
                    <p>智慧粮库电子货位卡系统</p>
                </div>
                <!--表单-->  
                <div class="form">
                    <div class="yhm">
                        <input id="url" type="text" value="http://124.71.187.17:8111/dzhwk/index" class="form-control" placeholder="请输入路径">
                    </div>
                <!--     <div class="yhm">
                        <input id="sid" type="text" class="form-control" placeholder="请输入设备序列号">
                    </div> -->
                    <button onclick="login()">确&nbsp;&nbsp;定</button>
                </div>
            </div>
        </div>
    </body>
    <script src="./js/mui.min.js"></script>
    <script src="./js/jquery.min.js"></script>
    <script type="text/javascript" charset="utf-8">
        mui.init();
 
        mui.plusReady(function() {
            var user = JSON.parse(localStorage.getItem('user'));
            console.log(JSON.stringify(user));
            if (user) {
                if (user.url) {
                    $("#url").val(user.url);
                }else{
                    $("#url").val("http://124.71.187.17:8111/dzhwk/index");
                }
                // if (user.sid) {
                //     $("#sid").val(user.sid);
                // }
            }else{
                $("#url").val("http://124.71.187.17:8111/dzhwk/index");
            }
        });
 
        //登陆
        function login() {
            
            //验证路径 
            var url = mui("#url")[0].value;
            if (url == '') {
                mui.alert("请输入路径!", '提示', ["确定"], function() {}, "div");
                return;
            }
            // //验证SID
            // var sid = mui("#sid")[0].value;
            // if (sid == '') {
            //     mui.alert("请输入设备序列号!", '提示', ["确定"], function() {}, "div");
            //     return;
            // }
            var regInfo = {
                            "url": url
                            // "sid": sid
                        };
            localStorage.setItem('user', JSON.stringify(regInfo));
            // var URL = url + "?sid=" + sid;
            var wv = plus.webview.create(url);
            wv.show();
        }
    </script>
</html>