system-clients 3.2.12 → 3.2.13
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 +1 -1
- package/src/App.vue +24 -24
- package/src/components/Main.vue +789 -789
- package/src/filiale/dongguan/Login.vue +11 -2
- package/src/filiale/tongchuan/Login.vue +899 -0
- package/src/filiale/tongchuan/system.js +7 -0
- package/.gradle/4.4/fileChanges/last-build.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.bin +0 -0
- package/.gradle/4.4/fileHashes/fileHashes.lock +0 -0
@@ -40,14 +40,23 @@
|
|
40
40
|
|
41
41
|
<form v-show="!login">
|
42
42
|
<!-- <input type="text" placeholder="用户名" v-model="model.ename" class="usericon">-->
|
43
|
+
<div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
|
44
|
+
<img src="../../../static/newStyle/login-user.png"/>
|
45
|
+
<input type="text" placeholder="用户名"/>
|
46
|
+
</div>
|
47
|
+
<div class="login-input" style="opacity: 0;position:absolute;width:0;height:0;">
|
48
|
+
<img src="../../../static/newStyle/login-pwd.png"/>
|
49
|
+
<input type=password placeholder="密码" @keyup.enter="confirm('key')"/>
|
50
|
+
</div>
|
43
51
|
<div class="login-input">
|
44
52
|
<img src="../../../static/newStyle/login-user.png"/>
|
45
|
-
<input type="text" style="display: inline;color:black;background-color: white!important;"
|
53
|
+
<input type="text" style="display: inline;color:black;background-color: white!important;"
|
54
|
+
placeholder="用户名" v-model="model.ename" autocomplete="off"/>
|
46
55
|
</div>
|
47
56
|
<div class="login-input">
|
48
57
|
<img src="../../../static/newStyle/login-pwd.png"/>
|
49
58
|
<input type="password" placeholder="密码" style="display: inline;color:black;background-color: darkgray;" v-model="model.password"
|
50
|
-
@keyup.enter="confirm('key')"/>
|
59
|
+
@keyup.enter="confirm('key')" autocomplete="off"/>
|
51
60
|
</div>
|
52
61
|
<div class="login-input-1" v-if="$login.Verification">
|
53
62
|
<img src="../../../static/newStyle/login-check.png"/>
|