login.vue 4.3 KB

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