login.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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 }).then(res => {
  85. if (res.data.code == 200) {
  86. uni.setStorageSync('token', res.data.result.token);
  87. uni.navigateTo({
  88. url:"/pages/login/change-gongsi?type=" + (parseInt(this.current) + 1)
  89. })
  90. // this.getUserInfo()
  91. } else {
  92. this.$refs.uToast.show({
  93. title: res.data.message,
  94. type: 'error ',
  95. })
  96. }
  97. })
  98. },
  99. getUserInfo() {
  100. this.$http.getUserInfo().then(res => {
  101. if (res.data.code == 200) {
  102. // 是否信息完整
  103. uni.setStorageSync('doctorAndSpecialist', res.data.result.doctorAndSpecialist);
  104. if (res.data.result.completeInformation != 2) {
  105. uni.navigateTo({
  106. url: '/pages/login/perfect',
  107. })
  108. } else {
  109. uni.reLaunch({
  110. url: '/pages/index/index',
  111. })
  112. }
  113. }
  114. })
  115. },
  116. agreement() {
  117. uni.navigateTo({
  118. url: '/pages/login/agreement',
  119. })
  120. },
  121. forget() {
  122. uni.navigateTo({
  123. url: '/pages/login/forget',
  124. })
  125. },
  126. }
  127. }
  128. </script>
  129. <style lang="scss">
  130. page {
  131. height: 100%;
  132. }
  133. .login {
  134. position: relative;
  135. height: 100%;
  136. overflow: hidden;
  137. box-sizing: border-box;
  138. padding: 0 100rpx;
  139. .bgc {
  140. position: absolute;
  141. left: 0;
  142. top: 0;
  143. width: 100%;
  144. height: 100%;
  145. }
  146. .con {
  147. position: relative;
  148. height: 100%;
  149. color: #000;
  150. .h2 {
  151. font-size: 56rpx;
  152. padding-top: 220rpx;
  153. }
  154. .h3 {
  155. font-size: 32rpx;
  156. margin-top: 20rpx;
  157. margin-bottom: 100rpx;
  158. }
  159. .form {
  160. margin-top: 30rpx;
  161. }
  162. .u-scroll-box {
  163. display: block;
  164. .u-tab-item {
  165. margin-right: 60rpx;
  166. }
  167. }
  168. .forget {
  169. text-align: right;
  170. font-size: 28rpx;
  171. color: rgba(0, 0, 0, 0.35);
  172. margin-top: 16rpx;
  173. }
  174. .btn {
  175. margin-top: 100rpx;
  176. height: 80rpx;
  177. text-align: center;
  178. line-height: 80rpx;
  179. background: $color;
  180. border-radius: 40rpx;
  181. font-size: 28rpx;
  182. color: #fff;
  183. }
  184. }
  185. .agreement {
  186. position: fixed;
  187. bottom: 70rpx;
  188. left: 0;
  189. width: 750rpx;
  190. text-align: center;
  191. font-size: 24rpx;
  192. .u-checkbox__label {
  193. display: none;
  194. }
  195. .text {
  196. font-size: 24rpx;
  197. padding-left: 8rpx;
  198. text {
  199. color: $color;
  200. }
  201. }
  202. }
  203. }
  204. </style>