system-phone 3.1.57 → 3.1.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
Binary file
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
<button type="button" id="login-button" @click.prevent="confirm()"><strong>登录</strong></button>
|
|
16
16
|
</p>
|
|
17
17
|
<div class="row">
|
|
18
|
-
<img src="
|
|
18
|
+
<img src="../../assets/选中.png" style="width: 20px;margin-bottom: 5px" alt="" v-if="showsave"
|
|
19
19
|
@click="showoff()">
|
|
20
|
-
<img src="
|
|
20
|
+
<img src="../../assets/未选.png" style="width: 20px;margin-bottom: 5px" alt="" v-if="!showsave"
|
|
21
21
|
@click="showon()">
|
|
22
22
|
<span class="text-left font">记住密码</span>
|
|
23
|
-
<img src="
|
|
23
|
+
<img src="../../assets/选中.png" style="width: 20px;margin-bottom: 5px" alt="" v-if="showauto == '1'"
|
|
24
24
|
@click="showoff1()">
|
|
25
|
-
<img src="
|
|
25
|
+
<img src="../../assets/未选.png" style="width: 20px;margin-bottom: 5px" alt="" v-if="showauto == '2'"
|
|
26
26
|
@click="showon1()">
|
|
27
27
|
<span class="text-left font">自动登录</span>
|
|
28
28
|
<p></p>
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
|
|
62
62
|
|
|
63
63
|
import Vue from 'vue'
|
|
64
|
-
import * as Util from '
|
|
64
|
+
import * as Util from '../../Util'
|
|
65
65
|
import JSEncrypt from 'jsencrypt'
|
|
66
66
|
//获取json配置文件
|
|
67
67
|
let asyncReady = async function (self, url) {
|
|
@@ -120,7 +120,7 @@ export default {
|
|
|
120
120
|
showsave: true,
|
|
121
121
|
showauto: '2', // 1 自动登陆 2取消自动登陆
|
|
122
122
|
showpass: false,
|
|
123
|
-
imageurl: require('
|
|
123
|
+
imageurl: require('../../assets/miwen.png'),
|
|
124
124
|
deviceIemi: '无法获取该设备码,请联系管理员',
|
|
125
125
|
loginSafe: false,
|
|
126
126
|
margintop: document.documentElement.clientHeight * 0.1
|
|
@@ -183,9 +183,9 @@ export default {
|
|
|
183
183
|
changepass() {
|
|
184
184
|
this.showpass = this.showpass ? false : true
|
|
185
185
|
if (this.showpass) {
|
|
186
|
-
this.imageurl = require("
|
|
186
|
+
this.imageurl = require("../../assets/mingwen.png")
|
|
187
187
|
} else {
|
|
188
|
-
this.imageurl = require("
|
|
188
|
+
this.imageurl = require("../../assets/miwen.png")
|
|
189
189
|
}
|
|
190
190
|
},
|
|
191
191
|
async confirm() {
|
|
@@ -464,7 +464,7 @@ export default {
|
|
|
464
464
|
}
|
|
465
465
|
|
|
466
466
|
.usericon {
|
|
467
|
-
background-image: url(
|
|
467
|
+
background-image: url(../../assets/usericon.png);
|
|
468
468
|
background-repeat: no-repeat;
|
|
469
469
|
background-size: 30px;
|
|
470
470
|
background-position-x: 8px;
|
|
@@ -472,7 +472,7 @@ export default {
|
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
.psicon {
|
|
475
|
-
background-image: url(
|
|
475
|
+
background-image: url(../../assets/psicon.png);
|
|
476
476
|
background-repeat: no-repeat;
|
|
477
477
|
background-size: 30px;
|
|
478
478
|
background-position-x: 8px;
|
|
@@ -695,7 +695,7 @@ export default {
|
|
|
695
695
|
color: #fff;
|
|
696
696
|
padding-left: 60px;
|
|
697
697
|
font-size: 15px;
|
|
698
|
-
background: #000 url(
|
|
698
|
+
background: #000 url(../../assets/loging.gif) no-repeat 10px 50%;
|
|
699
699
|
opacity: 0.7;
|
|
700
700
|
z-index: 9999;
|
|
701
701
|
-moz-border-radius: 20px;
|