|
@@ -42,13 +42,21 @@
|
42
|
42
|
</view>
|
43
|
43
|
<!-- APP或H5账号密码登录页面 start -->
|
44
|
44
|
<view class="login" v-if="!workSchemeType && (isApp||isH5AndPwd)">
|
45
|
|
- <view class="title"> 转运系统登录 </view>
|
|
45
|
+ <view class="title"> 医疗服务中心转运系统 </view>
|
46
|
46
|
<input class="login_input" v-model="username" placeholder="请输入用户名" />
|
47
|
47
|
<input class="login_input" password v-model="password" placeholder="请输入密码" />
|
48
|
48
|
<input class="login_input" v-show="!isH5AndPwd" v-model="ip" placeholder="请输入域名或IP地址,如:http(s)://192.168.3.108" />
|
|
49
|
+ <view class="savePassword">
|
|
50
|
+ <checkbox-group @change="checkboxChange">
|
|
51
|
+ <label>
|
|
52
|
+ <checkbox v-for="(item,index) in savePassword" :key="item.value" color="#42b983" :value="item.value"
|
|
53
|
+ :checked="item.checked" />记住密码
|
|
54
|
+ </label>
|
|
55
|
+ </checkbox-group>
|
|
56
|
+ </view>
|
49
|
57
|
<view class="page_item_btn" @click="login()"> 登录 </view>
|
50
|
58
|
<view class="tips" v-show="isH5AndPwd">
|
51
|
|
- (此系统为药房使用,其他科室人员请勿进行操作)
|
|
59
|
+ (此系统为服务中心及药房人员使用,其他科室人员请勿进行操作)
|
52
|
60
|
</view>
|
53
|
61
|
</view>
|
54
|
62
|
<!-- APP或H5账号密码登录页面 end -->
|
|
@@ -73,12 +81,24 @@
|
73
|
81
|
webHandle
|
74
|
82
|
} from "../../http/http.js";
|
75
|
83
|
import showModel from "../../components/showModel/showModel.vue";
|
|
84
|
+ import {
|
|
85
|
+ AES,
|
|
86
|
+ mode,
|
|
87
|
+ pad,
|
|
88
|
+ enc
|
|
89
|
+ } from "crypto-js";
|
76
|
90
|
export default {
|
77
|
91
|
data() {
|
78
|
92
|
return {
|
79
|
93
|
//#ifdef H5
|
80
|
94
|
type: "",
|
81
|
95
|
//#endif
|
|
96
|
+ //记住密码
|
|
97
|
+ savePassword: [{
|
|
98
|
+ value: 'savePassword',
|
|
99
|
+ name: '记住密码',
|
|
100
|
+ checked: true
|
|
101
|
+ }],
|
82
|
102
|
// 是否上班了
|
83
|
103
|
online: undefined,
|
84
|
104
|
// 是否是app
|
|
@@ -119,6 +139,39 @@
|
119
|
139
|
};
|
120
|
140
|
},
|
121
|
141
|
methods: {
|
|
142
|
+ //aes加密
|
|
143
|
+ encryptByEnAES(data) {
|
|
144
|
+ let Key = "dsadmin";
|
|
145
|
+ let tmpAES = AES.encrypt(data, Key, {
|
|
146
|
+ mode: mode.CBC,
|
|
147
|
+ padding: pad.Pkcs7,
|
|
148
|
+ });
|
|
149
|
+ return tmpAES.toString();
|
|
150
|
+ },
|
|
151
|
+ //aes解密
|
|
152
|
+ encryptByDeAES(data) {
|
|
153
|
+ let Key = "dsadmin";
|
|
154
|
+ let tmpDeAES = AES.decrypt(data, Key, {
|
|
155
|
+ mode: mode.CBC,
|
|
156
|
+ padding: pad.Pkcs7,
|
|
157
|
+ });
|
|
158
|
+ return tmpDeAES.toString(enc.Utf8);
|
|
159
|
+ },
|
|
160
|
+ //记住密码
|
|
161
|
+ checkboxChange(e) {
|
|
162
|
+ console.log(e.detail.value);
|
|
163
|
+ let arr = e.detail.value;
|
|
164
|
+ if (arr.length) {
|
|
165
|
+ this.savePassword.forEach(v => {
|
|
166
|
+ v.checked = true;
|
|
167
|
+ })
|
|
168
|
+ } else {
|
|
169
|
+ this.savePassword.forEach(v => {
|
|
170
|
+ v.checked = false;
|
|
171
|
+ })
|
|
172
|
+ }
|
|
173
|
+ console.log(this.savePassword)
|
|
174
|
+ },
|
122
|
175
|
// 锁定
|
123
|
176
|
lock(data) {
|
124
|
177
|
console.log(data);
|
|
@@ -477,7 +530,13 @@
|
477
|
530
|
});
|
478
|
531
|
return;
|
479
|
532
|
}
|
480
|
|
- uni.setStorageSync("ip", this.ip);
|
|
533
|
+ if (this.savePassword[0].checked) {
|
|
534
|
+ //记住密码
|
|
535
|
+ uni.setStorageSync("ip", this.ip);
|
|
536
|
+ } else {
|
|
537
|
+ // 不记住密码
|
|
538
|
+ uni.removeStorageSync('ip');
|
|
539
|
+ }
|
481
|
540
|
changeIP(this.ip);
|
482
|
541
|
uni.showLoading({
|
483
|
542
|
title: "登录中",
|
|
@@ -503,9 +562,17 @@
|
503
|
562
|
});
|
504
|
563
|
return;
|
505
|
564
|
}
|
|
565
|
+ if (this.savePassword[0].checked) {
|
|
566
|
+ //记住密码
|
|
567
|
+ uni.setStorageSync("username", this.encryptByEnAES(this.username)); //存储用户名
|
|
568
|
+ uni.setStorageSync("password", this.encryptByEnAES(this.password)); //存储密码
|
|
569
|
+ uni.setStorageSync("savePasswordTime", Date.now()); //存储当前时间戳
|
|
570
|
+ } else {
|
|
571
|
+ uni.removeStorageSync('username');
|
|
572
|
+ uni.removeStorageSync('password');
|
|
573
|
+ uni.removeStorageSync('savePasswordTime');
|
|
574
|
+ }
|
506
|
575
|
uni.setStorageSync("userData", res.user);
|
507
|
|
- uni.setStorageSync("username", this.username); //存储用户名
|
508
|
|
- uni.setStorageSync("password", this.password); //存储密码
|
509
|
576
|
this.getWorkScheme(false, res.user.user.currentHospital.id); //获取当前启动中的工作分配方案
|
510
|
577
|
this.getHistorys(res.user.user.id); //获取上班历史记录
|
511
|
578
|
this.offWork("app", this.ip);
|
|
@@ -633,11 +700,11 @@
|
633
|
700
|
});
|
634
|
701
|
} else if (this.state == "555") {
|
635
|
702
|
// 如果需要绑定账号 并且 没有微信号
|
636
|
|
- if(this.type){
|
|
703
|
+ if (this.type) {
|
637
|
704
|
uni.redirectTo({
|
638
|
705
|
url: `../bindUser/bindUser?type=${this.type}`
|
639
|
706
|
})
|
640
|
|
- }else{
|
|
707
|
+ } else {
|
641
|
708
|
uni.redirectTo({
|
642
|
709
|
url: `../bindUser/bindUser`
|
643
|
710
|
})
|
|
@@ -681,11 +748,11 @@
|
681
|
748
|
} else if (this.state == "555") {
|
682
|
749
|
this.type = uni.getStorageSync("type"); //刷新页面后获取type
|
683
|
750
|
// 如果需要绑定账号 并且 没有微信号
|
684
|
|
- if(this.type){
|
|
751
|
+ if (this.type) {
|
685
|
752
|
uni.redirectTo({
|
686
|
753
|
url: `../bindUser/bindUser?type=${this.type}`
|
687
|
754
|
})
|
688
|
|
- }else{
|
|
755
|
+ } else {
|
689
|
756
|
uni.redirectTo({
|
690
|
757
|
url: `../bindUser/bindUser`
|
691
|
758
|
})
|
|
@@ -877,9 +944,17 @@
|
877
|
944
|
uni.removeStorageSync("setDepts"); //清空选择的科室,初始化
|
878
|
945
|
}
|
879
|
946
|
console.log(options);
|
880
|
|
- this.ip = uni.getStorageSync("ip") || this.ip;
|
881
|
|
- this.username = uni.getStorageSync("username") || this.username;
|
882
|
|
- this.password = uni.getStorageSync("password") || this.password;
|
|
947
|
+ console.log(typeof uni.getStorageSync("savePasswordTime"));
|
|
948
|
+ if (Date.now() - uni.getStorageSync("savePasswordTime") < 10 * 24 * 60 * 60 * 1000) {
|
|
949
|
+ //记住密码,10天内有效
|
|
950
|
+ this.ip = uni.getStorageSync("ip") || this.ip;
|
|
951
|
+ if (uni.getStorageSync("username")) {
|
|
952
|
+ this.username = this.encryptByDeAES(uni.getStorageSync("username"));
|
|
953
|
+ }
|
|
954
|
+ if (uni.getStorageSync("password")) {
|
|
955
|
+ this.password = this.encryptByDeAES(uni.getStorageSync("password"));
|
|
956
|
+ }
|
|
957
|
+ }
|
883
|
958
|
//#ifdef H5
|
884
|
959
|
this.isApp = false;
|
885
|
960
|
this.type = options.type || "";
|
|
@@ -939,6 +1014,14 @@
|
939
|
1014
|
position: relative;
|
940
|
1015
|
z-index: 999;
|
941
|
1016
|
|
|
1017
|
+ .savePassword {
|
|
1018
|
+ margin-top: 32rpx;
|
|
1019
|
+ }
|
|
1020
|
+
|
|
1021
|
+ /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
|
|
1022
|
+ border-color: #42b983 !important;
|
|
1023
|
+ }
|
|
1024
|
+
|
942
|
1025
|
.login_input {
|
943
|
1026
|
margin-top: 32rpx;
|
944
|
1027
|
background-color: #ffffff;
|
|
@@ -955,7 +1038,7 @@
|
955
|
1038
|
|
956
|
1039
|
.tips {
|
957
|
1040
|
font-size: 28rpx;
|
958
|
|
- color: #68686b;
|
|
1041
|
+ color: red;
|
959
|
1042
|
margin-top: 16rpx;
|
960
|
1043
|
}
|
961
|
1044
|
|