login.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <template>
  2. <view class="page">
  3. <view class="index-navbar">
  4. <view class="" style="position: relative;;">
  5. <view class="back"></view>
  6. <u-navbar title-width='300' title='' :is-back="false" :border-bottom="false"
  7. :background="{background:'rgba(0,0,0,0)'}" :isFixed="true"></u-navbar>
  8. </view>
  9. </view>
  10. <view class="login">
  11. <view class="tabs u-flex">
  12. <view @click="change(0)" :class="tabs==0?'chat1':'chat2'">验证码登录</view>
  13. <view class="line"></view>
  14. <view @click="change(1)" :class="tabs==1?'chat1':'chat2'">密码登录</view>
  15. </view>
  16. <view class="input" style="margin-top: 23px;">
  17. <u-input placeholder-style='font-size: 32rpx;
  18. font-family: PingFangSC, PingFang SC;
  19. font-weight: 400;
  20. color: #222222;opacity: 0.4;' placeholder='请输入手机号' v-model="phone" type="text" :border="false" :clearable='false' />
  21. </view>
  22. <view class="input u-flex" v-if="tabs==0">
  23. <u-input placeholder-style='font-size: 32rpx;
  24. font-family: PingFangSC, PingFang SC;
  25. font-weight: 400;
  26. color: #222222;opacity: 0.4;' placeholder='请输入验证码' v-model="code" type="text" :border="false" :clearable='false' />
  27. <view class="code">
  28. 获取验证码
  29. </view>
  30. </view>
  31. <view class="input u-flex" v-if="tabs==1">
  32. <u-input placeholder-style='font-size: 32rpx;
  33. font-family: PingFangSC, PingFang SC;
  34. font-weight: 400;
  35. color: #222222;opacity: 0.4;' placeholder='请输入密码' v-model="password" type="text" :border="false" :clearable='false' />
  36. </view>
  37. <view class="button" @click="toindex">
  38. 登录
  39. </view>
  40. <view class="zhu" v-if="tabs==0" @click='tozhuce'>
  41. <view class="">
  42. <text>没有账号,</text>
  43. <text style="color: #06A971;">立即注册</text>
  44. </view>
  45. </view>
  46. <view class="zhu u-row-between u-flex" v-if="tabs==1">
  47. <view class="" @click='tozhuce'>
  48. <text>没有账号,</text>
  49. <text style="color: #06A971;">立即注册</text>
  50. </view>
  51. <text @click="forget">忘记密码</text>
  52. </view>
  53. <view class="xie u-flex ">
  54. <u-checkbox shape="circle" v-model="checked"></u-checkbox>
  55. <view class="" style="margin-left: -12rpx;">
  56. <text>阅读并同意</text>
  57. <text style='color:#06A971;'>《隐私政策》</text>
  58. <text>和</text>
  59. <text style='color:#06A971;'>《服务协议》</text>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. </template>
  65. <script>
  66. export default {
  67. data() {
  68. return {
  69. tabs: 0,
  70. phone: '',
  71. checked: false,
  72. code:'',
  73. password:''
  74. };
  75. },
  76. methods: {
  77. tozhuce(){
  78. uni.navigateTo({
  79. url:'/pages/login/register'
  80. })
  81. },
  82. change(index) {
  83. this.tabs = index
  84. },
  85. forget(){
  86. uni.navigateTo({
  87. url:'/pages/login/forgetPassword'
  88. })
  89. },
  90. toindex() {
  91. if(!this.checked){
  92. this.$u.toast('请先勾选协议')
  93. return
  94. }
  95. uni.switchTab({
  96. url: '/pages/index/index'
  97. })
  98. }
  99. }
  100. }
  101. </script>
  102. <style lang="scss">
  103. .xie {
  104. width: 96%;
  105. position: fixed;
  106. bottom: 86rpx;
  107. font-size: 22rpx;
  108. font-family: PingFangSC, PingFang SC;
  109. font-weight: 400;
  110. color: #666666;
  111. align-items: center;
  112. justify-content: center;
  113. }
  114. .page {
  115. height: 100vh;
  116. }
  117. .zhu {
  118. font-size: 24rpx;
  119. font-family: PingFangSC, PingFang SC;
  120. font-weight: 400;
  121. color: #444444;
  122. line-height: 34rpx;
  123. text-align: center;
  124. margin-top: 64rpx;
  125. }
  126. .button {
  127. // width: 656rpx;
  128. height: 92rpx;
  129. background: linear-gradient(316deg, #1EBE8C 0%, #06A971 100%);
  130. box-shadow: 0rpx 32rpx 48rpx -20rpx rgba(6, 169, 113, 0.5);
  131. border-radius: 12rpx;
  132. font-size: 32rpx;
  133. font-family: PingFangSC, PingFang SC;
  134. font-weight: 500;
  135. color: #FFFFFF;
  136. line-height: 92rpx;
  137. margin-top: 52rpx;
  138. text-align: center;
  139. }
  140. .code {
  141. font-size: 32rpx;
  142. font-family: PingFangSC, PingFang SC;
  143. font-weight: 400;
  144. color: #06A971;
  145. opacity: 1;
  146. }
  147. .input {
  148. height: 134rpx;
  149. display: flex;
  150. align-items: center;
  151. border-bottom: 2rpx solid rgba(0, 0, 0, 0.14);
  152. }
  153. .login {
  154. padding: 18rpx 25rpx 0 20rpx;
  155. .chat1 {
  156. font-size: 36rpx;
  157. font-family: PingFangSC, PingFang SC;
  158. font-weight: 500;
  159. color: #222222;
  160. opacity: 0.999;
  161. }
  162. .line {
  163. width: 2rpx;
  164. height: 30rpx;
  165. opacity: 0.3;
  166. background: #979797;
  167. margin: 0 20px 0 20px;
  168. }
  169. .chat2 {
  170. font-size: 36rpx;
  171. font-family: PingFangSC, PingFang SC;
  172. font-weight: 500;
  173. color: #222222;
  174. opacity: 0.5;
  175. }
  176. }
  177. .index-navbar {
  178. // position: sticky;
  179. // top: 0;
  180. // left: 0;
  181. // width: 100vw;
  182. // z-index: 100;
  183. // overflow: hidden;
  184. .back {
  185. position: absolute;
  186. top: 0;
  187. left: 0;
  188. z-index: -1;
  189. width: 100vw;
  190. height: 494rpx;
  191. background: linear-gradient(180deg, #D7F5EB 0%, #FFFFFF 100%);
  192. }
  193. }
  194. </style>