血透系统pad前端

login.vue 4.5KB

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