login.vue 5.3 KB

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