seimin 2 år sedan
förälder
incheckning
e5101715f9

+ 26 - 29
App.vue

@@ -1,34 +1,31 @@
1 1
 <script>
2
-// import { mapActions } from "vuex";
3
-export default {
4
-  methods: {
5
-    // ...mapActions("demo", ["getData"]),
6
-  },
7
-  onLaunch: function () {
8
-    console.log("App Launch");
9
-  },
10
-  onShow: function () {
11
-    console.log("App Show");
12
-  },
13
-  onHide: function () {
14
-    console.log("App Hide");
15
-  },
16
-  mounted() {
17
-    // this.getData().then((res) => {
18
-    //   console.log(res);
19
-    // });
20
-  },
21
-};
2
+	export default {
3
+		onLaunch: function() {
4
+			console.log("App Launch");
5
+		},
6
+		onShow: function() {
7
+			console.log("App Show");
8
+		},
9
+		onHide: function() {
10
+			console.log("App Hide");
11
+		},
12
+		onPageNotFound(res) {
13
+			wx.reLaunch({
14
+				url: '/pages/login/login',
15
+			})
16
+		},
17
+	};
22 18
 </script>
23 19
 
24 20
 <style lang="scss">
25
-/*每个页面公共css */
26
-// @import "@/uni_modules/uni-scss/index.scss";
27
-// 设置整个项目的样式
28
-page {
29
-  background-color: #f9fafb;
30
-  * {
31
-    box-sizing: border-box;
32
-  }
33
-}
21
+	/*每个页面公共css */
22
+	// @import "@/uni_modules/uni-scss/index.scss";
23
+	// 设置整个项目的样式
24
+	page {
25
+		background-color: #f9fafb;
26
+
27
+		* {
28
+			box-sizing: border-box;
29
+		}
30
+	}
34 31
 </style>

+ 1 - 1
components/seiminModel/seiminModel.vue

@@ -75,7 +75,7 @@
75 75
     },
76 76
     computed: {
77 77
       ...mapState('other', ["nurseDeptSwitchTip"]),
78
-      ...mapState("user", ["loginInfo"]),
78
+      ...mapState("login", ["loginInfo"]),
79 79
     },
80 80
     methods: {
81 81
       // 显示弹窗

+ 1 - 1
pages/index/index.vue

@@ -112,7 +112,7 @@
112 112
       };
113 113
     },
114 114
     computed: {
115
-      ...mapState("user", ["loginInfo"]),
115
+      ...mapState("login", ["loginInfo"]),
116 116
       ...mapState('other', [
117 117
         "isShowSeiminModel",
118 118
         "deptDisplay",

+ 204 - 204
pages/login/login.vue

@@ -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>

+ 1 - 1
pages/orderList/orderList.vue

@@ -102,7 +102,7 @@
102 102
       };
103 103
     },
104 104
     computed: {
105
-      ...mapState("user", ["loginInfo"]),
105
+      ...mapState("login", ["loginInfo"]),
106 106
     },
107 107
     methods: {
108 108
       ...mapActions("dictionary", ["vxDictionary"]),

+ 1 - 1
pages/quickCreateOrder/quickCreateOrder.vue

@@ -133,7 +133,7 @@
133 133
       };
134 134
     },
135 135
     computed: {
136
-      ...mapState('user', ['loginInfo']),
136
+      ...mapState('login', ['loginInfo']),
137 137
       ...mapState('other', [
138 138
         "qucikCreateOrderType",
139 139
         "qucikCreateOrderTypeId",

+ 2 - 2
pages/searchDept/searchDept.vue

@@ -61,7 +61,7 @@
61 61
       };
62 62
     },
63 63
     computed: {
64
-      ...mapState("user", ["loginInfo"]),
64
+      ...mapState("login", ["loginInfo"]),
65 65
       ...mapState('other', [
66 66
         "deptDisplay",
67 67
         "searchDeptParams",
@@ -84,7 +84,7 @@
84 84
         "changeSeiminModel",
85 85
         "changeSearchDeptResultList",
86 86
       ]),
87
-      ...mapMutations("user", ["changeLoginInfo"]),
87
+      ...mapMutations("login", ["changeLoginInfo"]),
88 88
       init() {
89 89
         this.loadOldKeyword();
90 90
       },

+ 24 - 37
request/auth.js

@@ -1,45 +1,32 @@
1 1
 // 引入vuex配置
2 2
 import store from '../store'
3 3
 // 页面白名单
4
-const whiteList = []
5
-
4
+const whiteList = ['/pages/login/login']
5
+const funs = ['navigateTo', 'redirectTo', 'reLaunch', 'switchTab'];
6 6
 
7 7
 function hasPermission(url) {
8
-  // 在白名单中或有token,直接跳转
9
-  if (whiteList.indexOf(url) !== -1 || store.state.user.loginInfo) {
10
-    return true
11
-  }
12
-  return false
8
+	console.log('跳转', url);
9
+	// 在白名单中或有token,直接跳转
10
+	if (whiteList.indexOf(url) !== -1 || store.state.login.loginInfo.user) {
11
+		return true
12
+	}
13
+	return false
13 14
 }
14 15
 
15
-uni.addInterceptor('navigateTo', {
16
-  // 页面跳转前进行拦截, invoke根据返回值进行判断是否继续执行跳转
17
-  invoke(e) {
18
-    if (!hasPermission(e.url)) {
19
-      uni.reLaunch({
20
-        url: '/pages/login/login'
21
-      })
22
-      return false
23
-    }
24
-    return true
25
-  },
26
-  success(e) {
27
-    // console.log(e)
28
-  }
29
-})
30
-
31
-uni.addInterceptor('switchTab', {
32
-  // tabbar页面跳转前进行拦截
33
-  invoke(e) {
34
-    if (!hasPermission(e.url)) {
35
-      uni.reLaunch({
36
-        url: '/pages/login/login'
37
-      })
38
-      return false
39
-    }
40
-    return true
41
-  },
42
-  success(e) {
43
-    // console.log(e)
44
-  }
16
+funs.forEach(v => {
17
+	uni.addInterceptor(v, {
18
+		// 页面跳转前进行拦截, invoke根据返回值进行判断是否继续执行跳转
19
+		invoke(e) {
20
+			if (!hasPermission(e.url)) {
21
+				uni.reLaunch({
22
+					url: '/pages/login/login'
23
+				})
24
+				return false
25
+			}
26
+			return true
27
+		},
28
+		success(e) {
29
+			// console.log(e)
30
+		}
31
+	})
45 32
 })

+ 1 - 1
request/config.js

@@ -11,7 +11,7 @@ const config = {
11 11
 };
12 12
 // 后端服务地址
13 13
 const baseUrls = {
14
-  development: "http://localhost/service", //开发环境
14
+  development: "http://192.168.3.108/service", //开发环境
15 15
   production: "http://192.168.3.108/service", //生产环境
16 16
 };
17 17
 config.baseUrl = baseUrls[process.env.NODE_ENV];

+ 53 - 22
store/index.js

@@ -9,35 +9,66 @@ import Vue from "vue";
9 9
 import Vuex from "vuex";
10 10
 
11 11
 import other from "./modules/other";
12
-import user from "./modules/user";
12
+import login from "./modules/login";
13 13
 import dictionary from "./modules/dictionary";
14 14
 import system from "./modules/system";
15 15
 
16 16
 Vue.use(Vuex);
17 17
 
18 18
 const myPlugin = (store) => {
19
-  // 当 store 初始化后调用
20
-  let vuexStorage = uni.getStorageSync("vuexStorage");
21
-  if (
22
-    vuexStorage &&
23
-    vuexStorage.user &&
24
-    vuexStorage.dictionary &&
25
-    vuexStorage.system &&
26
-    vuexStorage.other
27
-  ) {
28
-    store.replaceState(vuexStorage);
29
-  }
30
-  store.subscribe((mutation, state) => {
31
-    uni.setStorageSync("vuexStorage", state);
32
-  });
19
+	// 所有的模块配置(新增模块需要手动添加进去)
20
+	const customModules = [{
21
+			name: 'other',
22
+			aliasName: 'Other',
23
+			isLocalstorage: true
24
+		},
25
+		{
26
+			name: 'login',
27
+			aliasName: 'Login',
28
+			isLocalstorage: true
29
+		},
30
+		{
31
+			name: 'dictionary',
32
+			aliasName: 'Dictionary',
33
+			isLocalstorage: false
34
+		},
35
+		{
36
+			name: 'system',
37
+			aliasName: 'System',
38
+			isLocalstorage: false
39
+		},
40
+	];
41
+	// 需要缓存的模块
42
+	const localstorageModules = customModules.filter(v => v.isLocalstorage);
43
+	// 当 store 初始化后调用
44
+	let vuexStorage = uni.getStorageSync("vuexStorage");
45
+	if (vuexStorage) {
46
+		customModules.forEach(v => {
47
+			if (v.isLocalstorage) {
48
+				store.commit(`${v.name}/resetVx${v.aliasName}`, vuexStorage[v.name]);
49
+			} else {
50
+				store.commit(`${v.name}/resetVx${v.aliasName}`);
51
+			}
52
+		})
53
+	}
54
+	store.subscribe((mutation, state) => {
55
+		const isLocalstorageFlag = localstorageModules.some(v => mutation.type.startsWith(`${v.name}/`));
56
+		if (isLocalstorageFlag) {
57
+			const obj = {};
58
+			localstorageModules.forEach(v => {
59
+				obj[v.name] = state[v.name];
60
+			})
61
+			uni.setStorageSync("vuexStorage", obj);
62
+		}
63
+	});
33 64
 };
34 65
 
35 66
 export default new Vuex.Store({
36
-  modules: {
37
-    user,
38
-    dictionary,
39
-    system,
40
-    other,
41
-  },
42
-  plugins: [myPlugin],
67
+	modules: {
68
+		login,
69
+		dictionary,
70
+		system,
71
+		other,
72
+	},
73
+	plugins: [myPlugin],
43 74
 });

+ 3 - 2
store/modules/user.js

@@ -2,6 +2,7 @@ import {
2 2
   reqLogin
3 3
 } from "@/request/api.js";
4 4
 import cloneDeep from 'lodash/cloneDeep'
5
+import pick from 'lodash/pick'
5 6
 const stateReset = {
6 7
   loginInfo: {}, //当前登录用户信息
7 8
 };
@@ -9,8 +10,8 @@ const state = cloneDeep(stateReset);
9 10
 const getters = {};
10 11
 const mutations = {
11 12
   // 重置数据
12
-  resetVxLogin(state) {
13
-    Object.assign(state, cloneDeep(stateReset))
13
+  resetVxLogin(state,args={}) {
14
+	  Object.assign(state, cloneDeep(stateReset),pick(args,Object.keys(cloneDeep(stateReset))));
14 15
   },
15 16
   // 登录
16 17
   vxLogin(state, args) {

+ 3 - 2
store/modules/other.js

@@ -1,4 +1,5 @@
1 1
 import cloneDeep from 'lodash/cloneDeep'
2
+import pick from 'lodash/pick'
2 3
 const stateReset = {
3 4
   isShowSeiminModel: false, //是否显示切换科室弹窗
4 5
   qucikCreateOrderType: "", //快捷建单类型
@@ -22,8 +23,8 @@ const state = cloneDeep(stateReset);
22 23
 const getters = {};
23 24
 const mutations = {
24 25
   // 重置数据
25
-  resetVxOther(state) {
26
-    Object.assign(state, cloneDeep(stateReset));
26
+  resetVxOther(state,args = {}) {
27
+    Object.assign(state, cloneDeep(stateReset),pick(args,Object.keys(cloneDeep(stateReset))));
27 28
   },
28 29
   //是否显示切换科室弹窗
29 30
   changeSeiminModel(state, args) {