|
@@ -1,212 +1,212 @@
|
1
|
1
|
<template>
|
2
|
|
- <view class="login">
|
3
|
|
- <view class="login_title"> 医疗服务中心转运系统 </view>
|
4
|
|
- <form @submit="login" class="form">
|
5
|
|
- <view class="form_item">
|
6
|
|
- <view class="form_title">用户名:</view>
|
7
|
|
- <input class="form_input" name="username" :value="username" placeholder="请输入用户名" />
|
8
|
|
- </view>
|
9
|
|
- <view class="form_item">
|
10
|
|
- <view class="form_title">密<text class="placeholder"></text>码:</view>
|
11
|
|
- <input class="form_input" name="password" :value="password" password placeholder="请输入密码" />
|
12
|
|
- </view>
|
13
|
|
- <view class="form_item">
|
14
|
|
- <checkbox-group name="savePassword">
|
15
|
|
- <label>
|
16
|
|
- <checkbox value="true" :checked="savePassword" /><text>记住密码</text>
|
17
|
|
- </label>
|
18
|
|
- </checkbox-group>
|
19
|
|
- </view>
|
20
|
|
- <view class="form_submit">
|
21
|
|
- <button form-type="submit">登录</button>
|
22
|
|
- </view>
|
23
|
|
- </form>
|
24
|
|
- <view class="tips red">
|
25
|
|
- (此系统为护士人员使用,其他科室人员请勿进行操作)
|
26
|
|
- </view>
|
27
|
|
- </view>
|
|
2
|
+ <view class="login">
|
|
3
|
+ <view class="login_title"> 医疗服务中心转运系统 </view>
|
|
4
|
+ <form @submit="login" class="form">
|
|
5
|
+ <view class="form_item">
|
|
6
|
+ <view class="form_title">用户名:</view>
|
|
7
|
+ <input class="form_input" name="username" :value="username" placeholder="请输入用户名" />
|
|
8
|
+ </view>
|
|
9
|
+ <view class="form_item">
|
|
10
|
+ <view class="form_title">密<text class="placeholder"></text>码:</view>
|
|
11
|
+ <input class="form_input" name="password" :value="password" password placeholder="请输入密码" />
|
|
12
|
+ </view>
|
|
13
|
+ <view class="form_item">
|
|
14
|
+ <checkbox-group name="savePassword">
|
|
15
|
+ <label>
|
|
16
|
+ <checkbox value="true" :checked="savePassword" /><text>记住密码</text>
|
|
17
|
+ </label>
|
|
18
|
+ </checkbox-group>
|
|
19
|
+ </view>
|
|
20
|
+ <view class="form_submit">
|
|
21
|
+ <button form-type="submit">登录</button>
|
|
22
|
+ </view>
|
|
23
|
+ </form>
|
|
24
|
+ <view class="tips red">
|
|
25
|
+ (此系统为护士人员使用,其他科室人员请勿进行操作)
|
|
26
|
+ </view>
|
|
27
|
+ </view>
|
28
|
28
|
</template>
|
29
|
29
|
|
30
|
30
|
<script>
|
31
|
|
- import {
|
32
|
|
- encryptByEnAES,
|
33
|
|
- encryptByDeAES
|
34
|
|
- } from "../../utils/index.js";
|
35
|
|
- import {
|
36
|
|
- mapActions,
|
37
|
|
- mapMutations
|
38
|
|
- } from "vuex";
|
39
|
|
- export default {
|
40
|
|
- data() {
|
41
|
|
- return {
|
42
|
|
- username: "", //用户名
|
43
|
|
- password: "", //密码
|
44
|
|
- savePassword: false, //是否记住密码
|
45
|
|
- };
|
46
|
|
- },
|
47
|
|
- methods: {
|
48
|
|
- ...mapActions("user", ["vxLogin"]),
|
49
|
|
- ...mapMutations('other', ["changeSeiminModel", 'resetVxOther']),
|
50
|
|
- ...mapMutations('dictionary', ["resetVxDictionary"]),
|
51
|
|
- ...mapMutations('user', ["resetVxLogin"]),
|
52
|
|
- ...mapMutations('system', ["resetVxSystem"]),
|
53
|
|
- // 重置vuex数据
|
54
|
|
- resetVuex() {
|
55
|
|
- this.resetVxOther();
|
56
|
|
- this.resetVxDictionary();
|
57
|
|
- this.resetVxLogin();
|
58
|
|
- this.resetVxSystem();
|
59
|
|
- },
|
60
|
|
- // 登录
|
61
|
|
- login(e) {
|
62
|
|
- let {
|
63
|
|
- username, //账号
|
64
|
|
- password, //密码
|
65
|
|
- savePassword, //是否记住密码
|
66
|
|
- } = e.detail.value;
|
67
|
|
-
|
68
|
|
- savePassword = savePassword.length > 0;
|
69
|
|
- username = username.trim();
|
70
|
|
- password = password.trim();
|
71
|
|
-
|
72
|
|
- // 用户名,密码,域名(ip)不能为空
|
73
|
|
- if (username === "" || password === "") {
|
74
|
|
- uni.showToast({
|
75
|
|
- icon: "none",
|
76
|
|
- title: "账号或密码错误",
|
77
|
|
- });
|
78
|
|
- return;
|
79
|
|
- }
|
80
|
|
-
|
81
|
|
- uni.showLoading({
|
82
|
|
- title: "登录中",
|
83
|
|
- mask: true,
|
84
|
|
- });
|
85
|
|
-
|
86
|
|
- let postData = {
|
87
|
|
- username,
|
88
|
|
- password,
|
89
|
|
- type: "APP",
|
90
|
|
- };
|
91
|
|
-
|
92
|
|
- this.vxLogin(postData).then((res) => {
|
93
|
|
- uni.hideLoading();
|
94
|
|
-
|
95
|
|
- if (res.status == 200) {
|
96
|
|
- //获取角色信息
|
97
|
|
- res.user = res.user || {};
|
98
|
|
- res.user.user = res.user.user || {};
|
99
|
|
- let role = res.user.user.role || [];
|
100
|
|
- // 护士角色才能登录
|
101
|
|
- let nurseRole = role.some((item) => item.rolecode === "nurse");
|
102
|
|
- if (!nurseRole) {
|
103
|
|
- uni.showToast({
|
104
|
|
- icon: "none",
|
105
|
|
- title: "暂无护士角色权限!",
|
106
|
|
- });
|
107
|
|
- return;
|
108
|
|
- }
|
109
|
|
-
|
110
|
|
- // 如果记住密码,则缓存到本地
|
111
|
|
- if (savePassword) {
|
112
|
|
- //记住密码
|
113
|
|
- uni.setStorageSync("savePasswordObj", {
|
114
|
|
- username: encryptByEnAES(username), //用户名
|
115
|
|
- password: encryptByEnAES(password), //密码
|
116
|
|
- effectiveDuration: Date.now(), //当前时间戳
|
117
|
|
- });
|
118
|
|
- } else {
|
119
|
|
- uni.removeStorageSync("savePasswordObj");
|
120
|
|
- }
|
121
|
|
- // 跳转到首页(isShowSeiminModel,是否显示切换科室弹窗)
|
122
|
|
- uni.redirectTo({
|
123
|
|
- url: "/pages/index/index",
|
124
|
|
- });
|
125
|
|
- this.changeSeiminModel(true);
|
126
|
|
- } else {
|
127
|
|
- this.$refs.seiminModel.showChangeDept({
|
128
|
|
- skin: "toast",
|
129
|
|
- icon: "error",
|
130
|
|
- content: res.remarks || "登录失败",
|
131
|
|
- });
|
132
|
|
- throw new Error(res.remarks || "登录失败");
|
133
|
|
- }
|
134
|
|
- });
|
135
|
|
- },
|
136
|
|
- },
|
137
|
|
- onLoad() {
|
138
|
|
- // 清除缓存vuexStorage
|
139
|
|
- uni.removeStorageSync('vuexStorage');
|
140
|
|
- // 是否记住密码
|
141
|
|
- let savePasswordObj = uni.getStorageSync("savePasswordObj");
|
142
|
|
- if (savePasswordObj) {
|
143
|
|
- let {
|
144
|
|
- username,
|
145
|
|
- password,
|
146
|
|
- effectiveDuration
|
147
|
|
- } = savePasswordObj;
|
148
|
|
- if (Date.now() - effectiveDuration < 10 * 24 * 60 * 60 * 1000) {
|
149
|
|
- //记住密码,10天内有效
|
150
|
|
- this.username = encryptByDeAES(username);
|
151
|
|
- this.password = encryptByDeAES(password);
|
152
|
|
- this.savePassword = true;
|
153
|
|
- }
|
154
|
|
- }
|
155
|
|
- },
|
156
|
|
- };
|
|
31
|
+ import {
|
|
32
|
+ encryptByEnAES,
|
|
33
|
+ encryptByDeAES
|
|
34
|
+ } from "../../utils/index.js";
|
|
35
|
+ import {
|
|
36
|
+ mapActions,
|
|
37
|
+ mapMutations
|
|
38
|
+ } from "vuex";
|
|
39
|
+ export default {
|
|
40
|
+ data() {
|
|
41
|
+ return {
|
|
42
|
+ username: "", //用户名
|
|
43
|
+ password: "", //密码
|
|
44
|
+ savePassword: false, //是否记住密码
|
|
45
|
+ };
|
|
46
|
+ },
|
|
47
|
+ methods: {
|
|
48
|
+ ...mapActions("login", ["vxLogin"]),
|
|
49
|
+ ...mapMutations("other", ["changeSeiminModel", "resetVxOther"]),
|
|
50
|
+ ...mapMutations("dictionary", ["resetVxDictionary"]),
|
|
51
|
+ ...mapMutations("login", ["resetVxLogin"]),
|
|
52
|
+ ...mapMutations("system", ["resetVxSystem"]),
|
|
53
|
+ // 重置vuex数据
|
|
54
|
+ resetVuex() {
|
|
55
|
+ this.resetVxOther();
|
|
56
|
+ this.resetVxDictionary();
|
|
57
|
+ this.resetVxLogin();
|
|
58
|
+ this.resetVxSystem();
|
|
59
|
+ },
|
|
60
|
+ // 登录
|
|
61
|
+ login(e) {
|
|
62
|
+ let {
|
|
63
|
+ username, //账号
|
|
64
|
+ password, //密码
|
|
65
|
+ savePassword, //是否记住密码
|
|
66
|
+ } = e.detail.value;
|
|
67
|
+
|
|
68
|
+ savePassword = savePassword.length > 0;
|
|
69
|
+ username = username.trim();
|
|
70
|
+ password = password.trim();
|
|
71
|
+
|
|
72
|
+ // 用户名,密码,域名(ip)不能为空
|
|
73
|
+ if (username === "" || password === "") {
|
|
74
|
+ uni.showToast({
|
|
75
|
+ icon: "none",
|
|
76
|
+ title: "账号或密码错误",
|
|
77
|
+ });
|
|
78
|
+ return;
|
|
79
|
+ }
|
|
80
|
+
|
|
81
|
+ uni.showLoading({
|
|
82
|
+ title: "登录中",
|
|
83
|
+ mask: true,
|
|
84
|
+ });
|
|
85
|
+
|
|
86
|
+ let postData = {
|
|
87
|
+ username,
|
|
88
|
+ password,
|
|
89
|
+ type: "APP",
|
|
90
|
+ };
|
|
91
|
+
|
|
92
|
+ this.vxLogin(postData).then((res) => {
|
|
93
|
+ uni.hideLoading();
|
|
94
|
+
|
|
95
|
+ if (res.status == 200) {
|
|
96
|
+ //获取角色信息
|
|
97
|
+ res.user = res.user || {};
|
|
98
|
+ res.user.user = res.user.user || {};
|
|
99
|
+ let role = res.user.user.role || [];
|
|
100
|
+ // 护士角色才能登录
|
|
101
|
+ let nurseRole = role.some((item) => item.rolecode === "nurse");
|
|
102
|
+ if (!nurseRole) {
|
|
103
|
+ uni.showToast({
|
|
104
|
+ icon: "none",
|
|
105
|
+ title: "暂无护士角色权限!",
|
|
106
|
+ });
|
|
107
|
+ return;
|
|
108
|
+ }
|
|
109
|
+
|
|
110
|
+ // 如果记住密码,则缓存到本地
|
|
111
|
+ if (savePassword) {
|
|
112
|
+ //记住密码
|
|
113
|
+ uni.setStorageSync("savePasswordObj", {
|
|
114
|
+ username: encryptByEnAES(username), //用户名
|
|
115
|
+ password: encryptByEnAES(password), //密码
|
|
116
|
+ effectiveDuration: Date.now(), //当前时间戳
|
|
117
|
+ });
|
|
118
|
+ } else {
|
|
119
|
+ uni.removeStorageSync("savePasswordObj");
|
|
120
|
+ }
|
|
121
|
+ // 跳转到首页(isShowSeiminModel,是否显示切换科室弹窗)
|
|
122
|
+ uni.redirectTo({
|
|
123
|
+ url: "/pages/index/index",
|
|
124
|
+ });
|
|
125
|
+ this.changeSeiminModel(true);
|
|
126
|
+ } else {
|
|
127
|
+ this.$refs.seiminModel.showChangeDept({
|
|
128
|
+ skin: "toast",
|
|
129
|
+ icon: "error",
|
|
130
|
+ content: res.remarks || "登录失败",
|
|
131
|
+ });
|
|
132
|
+ throw new Error(res.remarks || "登录失败");
|
|
133
|
+ }
|
|
134
|
+ });
|
|
135
|
+ },
|
|
136
|
+ },
|
|
137
|
+ onLoad() {
|
|
138
|
+ // 清除vuex
|
|
139
|
+ this.resetVuex();
|
|
140
|
+ // 是否记住密码
|
|
141
|
+ let savePasswordObj = uni.getStorageSync("savePasswordObj");
|
|
142
|
+ if (savePasswordObj) {
|
|
143
|
+ let {
|
|
144
|
+ username,
|
|
145
|
+ password,
|
|
146
|
+ effectiveDuration
|
|
147
|
+ } = savePasswordObj;
|
|
148
|
+ if (Date.now() - effectiveDuration < 10 * 24 * 60 * 60 * 1000) {
|
|
149
|
+ //记住密码,10天内有效
|
|
150
|
+ this.username = encryptByDeAES(username);
|
|
151
|
+ this.password = encryptByDeAES(password);
|
|
152
|
+ this.savePassword = true;
|
|
153
|
+ }
|
|
154
|
+ }
|
|
155
|
+ },
|
|
156
|
+ };
|
157
|
157
|
</script>
|
158
|
158
|
|
159
|
159
|
<style lang="scss" scoped>
|
160
|
|
- .login {
|
161
|
|
- padding: 180rpx 32rpx 32rpx;
|
162
|
|
- height: 100vh;
|
163
|
|
- background: url("../../static/imgs/background.png") no-repeat center bottom;
|
164
|
|
- background-size: contain;
|
165
|
|
-
|
166
|
|
- .login_title {
|
167
|
|
- text-align: center;
|
168
|
|
- color: $defaultColor;
|
169
|
|
- font-weight: bold;
|
170
|
|
- }
|
171
|
|
-
|
172
|
|
- .form {
|
173
|
|
- .form_item {
|
174
|
|
- margin-top: 32rpx;
|
175
|
|
- @include flex;
|
176
|
|
-
|
177
|
|
- .form_title {
|
178
|
|
- @include flex(flex-start, center);
|
179
|
|
- width: 140rpx;
|
180
|
|
-
|
181
|
|
- .placeholder {
|
182
|
|
- display: inline-block;
|
183
|
|
- width: 1em;
|
184
|
|
- }
|
185
|
|
- }
|
186
|
|
-
|
187
|
|
- .form_input {
|
188
|
|
- box-sizing: content-box;
|
189
|
|
- flex: 1;
|
190
|
|
- padding: 16rpx;
|
191
|
|
- background-color: #fff;
|
192
|
|
- }
|
193
|
|
- }
|
194
|
|
-
|
195
|
|
- .form_submit {
|
196
|
|
- margin-top: 60rpx;
|
197
|
|
- border-radius: 16rpx;
|
198
|
|
-
|
199
|
|
- uni-button {
|
200
|
|
- @include btn_background;
|
201
|
|
- color: #fff;
|
202
|
|
- font-weight: bold;
|
203
|
|
- }
|
204
|
|
- }
|
205
|
|
- }
|
206
|
|
-
|
207
|
|
- .tips {
|
208
|
|
- font-size: 28rpx;
|
209
|
|
- margin-top: 16rpx;
|
210
|
|
- }
|
211
|
|
- }
|
|
160
|
+ .login {
|
|
161
|
+ padding: 180rpx 32rpx 32rpx;
|
|
162
|
+ height: 100vh;
|
|
163
|
+ background: url("../../static/imgs/background.png") no-repeat center bottom;
|
|
164
|
+ background-size: contain;
|
|
165
|
+
|
|
166
|
+ .login_title {
|
|
167
|
+ text-align: center;
|
|
168
|
+ color: $defaultColor;
|
|
169
|
+ font-weight: bold;
|
|
170
|
+ }
|
|
171
|
+
|
|
172
|
+ .form {
|
|
173
|
+ .form_item {
|
|
174
|
+ margin-top: 32rpx;
|
|
175
|
+ @include flex;
|
|
176
|
+
|
|
177
|
+ .form_title {
|
|
178
|
+ @include flex(flex-start, center);
|
|
179
|
+ width: 140rpx;
|
|
180
|
+
|
|
181
|
+ .placeholder {
|
|
182
|
+ display: inline-block;
|
|
183
|
+ width: 1em;
|
|
184
|
+ }
|
|
185
|
+ }
|
|
186
|
+
|
|
187
|
+ .form_input {
|
|
188
|
+ box-sizing: content-box;
|
|
189
|
+ flex: 1;
|
|
190
|
+ padding: 16rpx;
|
|
191
|
+ background-color: #fff;
|
|
192
|
+ }
|
|
193
|
+ }
|
|
194
|
+
|
|
195
|
+ .form_submit {
|
|
196
|
+ margin-top: 60rpx;
|
|
197
|
+ border-radius: 16rpx;
|
|
198
|
+
|
|
199
|
+ uni-button {
|
|
200
|
+ @include btn_background;
|
|
201
|
+ color: #fff;
|
|
202
|
+ font-weight: bold;
|
|
203
|
+ }
|
|
204
|
+ }
|
|
205
|
+ }
|
|
206
|
+
|
|
207
|
+ .tips {
|
|
208
|
+ font-size: 28rpx;
|
|
209
|
+ margin-top: 16rpx;
|
|
210
|
+ }
|
|
211
|
+ }
|
212
|
212
|
</style>
|