login.vue 5.2 KB

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