login.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. <template>
  2. <view class="login">
  3. <u-toast ref="uToast" />
  4. <image class="bgc" src="../../static/img/group.png" mode=""></image>
  5. <view class="con">
  6. <view class="h2">你好,</view>
  7. <view class="h3">欢迎使用病例收集及调研问卷项目</view>
  8. <u-tabs :list="list" bar-width="140" font-size="36" :gutter="50" bg-color="transparent" :is-scroll="false" :current="current" @change="change"></u-tabs>
  9. <view class="form">
  10. <view class="input">
  11. <u-input v-model="phone" maxlength="11" :clearable="false" type="number" :border="border" placeholder="请输入账号" />
  12. </view>
  13. <view class="input">
  14. <u-input v-model="password" :clearable="false" type="password" :border="border" placeholder="请输入密码" />
  15. </view>
  16. <view class="forget" @click="forget()">
  17. 忘记密码
  18. </view>
  19. </view>
  20. <view class="btn" @click="passwordLogin()">
  21. 登录
  22. </view>
  23. </view>
  24. <view class="agreement flex u-row-center">
  25. <u-checkbox-group @change="checkboxGroupChange">
  26. <u-checkbox v-model="checked" shape="circle" active-color="#167FFF"></u-checkbox>
  27. </u-checkbox-group>
  28. <view class="text">已阅读并同意<text @click="agreement()">《隐私协议》</text></view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default {
  34. data() {
  35. return {
  36. list: [{
  37. name: '医生登录'
  38. }, {
  39. name: '专家登录'
  40. }],
  41. current: 0,
  42. phone: '',
  43. password: '',
  44. checked: false
  45. }
  46. },
  47. methods: {
  48. change(index) {
  49. this.current = index;
  50. },
  51. checkboxGroupChange(e) {
  52. console.log(this.checked);
  53. },
  54. // 登录
  55. passwordLogin() {
  56. if (this.phone == '') {
  57. this.$refs.uToast.show({
  58. title: '请输入手机号',
  59. type: 'error ',
  60. })
  61. return;
  62. }
  63. // if(!this.$checkMobile(this.phone)){
  64. // this.$refs.uToast.show({
  65. // title: '请输入正确手机号的格式',
  66. // type: 'error ',
  67. // })
  68. // return;
  69. // }
  70. if (this.password == '') {
  71. this.$refs.uToast.show({
  72. title: '请输入密码',
  73. type: 'error ',
  74. })
  75. return;
  76. }
  77. if (!this.checked) {
  78. this.$refs.uToast.show({
  79. title: '请选中并阅读隐私协议',
  80. type: 'error ',
  81. })
  82. return;
  83. }
  84. this.$http.passwordLogin({ sf: parseFloat(this.current) + 1, phone: this.phone, password: this.password })
  85. .then(res => {
  86. if (res.data.code == 200) {
  87. uni.setStorageSync('token', res.data.result.token);
  88. this.getUserInfo()
  89. } else {
  90. this.$refs.uToast.show({
  91. title: res.data.message,
  92. type: 'error ',
  93. })
  94. }
  95. })
  96. },
  97. getUserInfo() {
  98. this.$http.getUserInfo()
  99. .then(res => {
  100. if (res.data.code == 200) {
  101. // 是否信息完整
  102. uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
  103. if (res.data.result.completeInformation != 2) {
  104. uni.navigateTo({
  105. url: '/pages/login/perfect',
  106. })
  107. } else {
  108. uni.reLaunch({
  109. url: '/pages/index/index',
  110. })
  111. }
  112. }
  113. })
  114. },
  115. agreement() {
  116. uni.navigateTo({
  117. url: '/pages/login/agreement',
  118. })
  119. },
  120. forget() {
  121. uni.navigateTo({
  122. url: '/pages/login/forget',
  123. })
  124. },
  125. }
  126. }
  127. </script>
  128. <style lang="scss">
  129. page {
  130. height: 100%;
  131. }
  132. .login {
  133. position: relative;
  134. height: 100%;
  135. overflow: hidden;
  136. box-sizing: border-box;
  137. padding: 0 100rpx;
  138. .bgc {
  139. position: absolute;
  140. left: 0;
  141. top: 0;
  142. width: 100%;
  143. height: 100%;
  144. }
  145. .con {
  146. position: relative;
  147. height: 100%;
  148. color: #000;
  149. .h2 {
  150. font-size: 56rpx;
  151. padding-top: 220rpx;
  152. }
  153. .h3 {
  154. font-size: 32rpx;
  155. margin-top: 20rpx;
  156. margin-bottom: 100rpx;
  157. }
  158. .form {
  159. margin-top: 30rpx;
  160. }
  161. .u-scroll-box {
  162. display: block;
  163. .u-tab-item {
  164. margin-right: 60rpx;
  165. }
  166. }
  167. .forget {
  168. text-align: right;
  169. font-size: 28rpx;
  170. color: rgba(0, 0, 0, 0.35);
  171. margin-top: 16rpx;
  172. }
  173. .btn {
  174. margin-top: 100rpx;
  175. height: 80rpx;
  176. text-align: center;
  177. line-height: 80rpx;
  178. background: $color;
  179. border-radius: 40rpx;
  180. font-size: 28rpx;
  181. color: #fff;
  182. }
  183. }
  184. .agreement {
  185. position: fixed;
  186. bottom: 70rpx;
  187. left: 0;
  188. width: 750rpx;
  189. text-align: center;
  190. font-size: 24rpx;
  191. .u-checkbox__label {
  192. display: none;
  193. }
  194. .text {
  195. font-size: 24rpx;
  196. padding-left: 8rpx;
  197. text {
  198. color: $color;
  199. }
  200. }
  201. }
  202. }
  203. </style>