login.vue 5.7 KB

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