血透系统pad前端

login.vue 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <div class="container">
  3. <div class="newLogin">
  4. <div class="login">
  5. <div class="logo">
  6. <img src="../../assets/login/newLogo.png" alt />
  7. </div>
  8. <div class="reg">
  9. <div class="welcome">欢迎登录</div>
  10. <div class="form">
  11. <ul>
  12. <li>
  13. <span class="iconfont">&#xe78b;</span>
  14. <input placeholder="请输入手机号" type="tel" class="tel" v-model="form.mobile" />
  15. </li>
  16. <li>
  17. <span class="iconfont">&#xe6c0;</span>
  18. <input placeholder="请输入密码" type="password" class="tel" v-model="form.pwd" />
  19. </li>
  20. </ul>
  21. </div>
  22. <!-- <router-link to="/product"> -->
  23. <button
  24. class="loginBtn"
  25. @click="loginAction"
  26. :class="loginDisable ? 'disableLoginBtn' : ''"
  27. :disabled="loginDisable"
  28. >登录</button>
  29. <div class="newForget">忘记密码</div>
  30. <!-- </router-link> -->
  31. <!-- <div class="forget">
  32. <a href="">免密码登录</a>
  33. <a href="">忘记密码?</a>
  34. </div>-->
  35. </div>
  36. </div>
  37. </div>
  38. </div>
  39. </template>
  40. <script>
  41. import { loginByPwd } from "@/api/login";
  42. import { hex_md5 } from "@/utils/md5";
  43. import { getLoginInfoCache, cacheLoginInfo } from "@/utils/admin_info_cache";
  44. export default {
  45. name: "Home",
  46. data() {
  47. return {
  48. form: {
  49. mobile: "",
  50. pwd: ""
  51. }
  52. };
  53. },
  54. computed: {
  55. loginDisable() {
  56. // return false
  57. return (
  58. this.form.mobile.length == 0 ||
  59. /^1[2345789]\d{9}$/.test(this.form.mobile) == false ||
  60. this.form.pwd.length == 0
  61. );
  62. }
  63. },
  64. created() {
  65. var loginInfo = getLoginInfoCache();
  66. this.form.mobile = loginInfo.mobile;
  67. this.form.pwd = loginInfo.password;
  68. },
  69. methods: {
  70. loginAction: function() {
  71. loginByPwd(this.form.mobile, hex_md5(this.form.pwd)).then(rs => {
  72. var resp = rs.data;
  73. if (resp.state == 1) {
  74. cacheLoginInfo(this.form.mobile, this.form.pwd);
  75. console.log(resp);
  76. var user = resp.data.user;
  77. var org = resp.data.org;
  78. var subscibe = resp.data.subscibe;
  79. var config_list = resp.data.config_list;
  80. var template_info = resp.data.template_info;
  81. var filed_list = resp.data.filed_list;
  82. console.log(resp.data.filed_list);
  83. console.log(filed_list);
  84. this.$store.dispatch("InitUserInfo", {
  85. user: user,
  86. org: org,
  87. subscibe: subscibe,
  88. template_info: template_info,
  89. filed_list: filed_list
  90. });
  91. this.$store.dispatch("SetConfigList", config_list);
  92. // this.$router.push({path: "/product"})
  93. this.$router.push({ path: "/main" });
  94. } else {
  95. this.$toast({
  96. message: resp.msg
  97. });
  98. }
  99. });
  100. }
  101. }
  102. };
  103. </script>
  104. <style rel="stylesheet/scss" lang="scss" scoped >
  105. .container {
  106. // background: $white-bg;
  107. background: #f5f5f5;
  108. @include box-sizing;
  109. position: fixed;
  110. width: 100%;
  111. height: 100%;
  112. display: flex;
  113. justify-content: space-between;
  114. .newLogin {
  115. width: 90%;
  116. height: 90%;
  117. margin: auto;
  118. box-shadow: 0px 2px 25px 0px rgba(37, 143, 252, 0.1);
  119. border-radius: 14px;
  120. background: #fff;
  121. }
  122. .login {
  123. // @include box-shadow;
  124. @include text-align;
  125. @include display-flex;
  126. @include align-items-center;
  127. // @include justify-content-center;
  128. @include flex-direction;
  129. height: 100%;
  130. .logo {
  131. padding: 3rem 0 1rem;
  132. img {
  133. width: 40%;
  134. height: auto;
  135. display: inline-block;
  136. }
  137. }
  138. .reg {
  139. width: 8.77rem;
  140. .welcome {
  141. text-align: left;
  142. font-size: 0.55rem;
  143. font-weight: 400;
  144. color: rgba(37, 143, 252, 1);
  145. margin-bottom: 0.5rem;
  146. // line-height: 14px;
  147. }
  148. .newForget {
  149. text-align: right;
  150. font-size: 0.5rem;
  151. font-weight: 400;
  152. color: rgba(37, 143, 252, 1);
  153. margin-top: 0.5rem;
  154. }
  155. .form {
  156. border: 1px $border-color solid;
  157. border-radius: 4px;
  158. li {
  159. border-bottom: 1px $border-color solid;
  160. @include align-items-center;
  161. @include text-align;
  162. @include display-flex;
  163. @include box-sizing;
  164. .tel {
  165. padding: 0.4rem 0;
  166. width: 90%;
  167. border: none;
  168. outline: none;
  169. font-size: 0.45rem;
  170. }
  171. .mint-cell {
  172. width: 100%;
  173. }
  174. &:last-child {
  175. border: none;
  176. }
  177. .iconfont {
  178. color: $main-color;
  179. font-size: 0.5rem;
  180. margin: 0 0.46rem;
  181. }
  182. }
  183. }
  184. .forget {
  185. text-align: left;
  186. padding: 0.45rem 1rem;
  187. a {
  188. float: left;
  189. font-size: 0.28rem;
  190. color: $main-color;
  191. &:nth-child(2) {
  192. color: #999999;
  193. float: right;
  194. }
  195. &:active {
  196. background: $white-bg;
  197. }
  198. }
  199. }
  200. .loginBtn {
  201. width: 100%;
  202. height: 1.3rem;
  203. line-height: 1.3rem;
  204. background: $main-color;
  205. color: #fff;
  206. font-size: 0.45rem;
  207. @include text-align;
  208. border-radius: 4px;
  209. margin: 40px 0 0 0;
  210. }
  211. .disableLoginBtn {
  212. background: lightgray;
  213. }
  214. }
  215. }
  216. }
  217. </style>