login.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <template>
  2. <view>
  3. <view class="remain">
  4. <h1>欢迎回来</h1>
  5. <view class="wel">请登录您的账号</view>
  6. </view>
  7. <view class="form">
  8. <u-form :model="form" ref="uForm" label-width="100px" label-position="top">
  9. <u-form-item label="手机号" prop="phone">
  10. <view class="form-input">
  11. <u-input v-model="form.phone" type="number" border="surround" maxlength='11'
  12. placeholder='请输入手机号码' :clearable='false' />
  13. </view>
  14. </u-form-item>
  15. <u-form-item label="密码" prop="password">
  16. <view class="form-input">
  17. <u-input v-model="form.password" type="password" placeholder='请输入密码' :clearable='false' />
  18. </view>
  19. </u-form-item>
  20. </u-form>
  21. <view style="font-size: 13px;">忘记密码?</view>
  22. <view class="btn">
  23. <view style="margin-bottom: 15px; font-size: 17px;">
  24. <!-- <u-radio-group v-model="value" :wrap="true">
  25. <u-radio :label="radioLabel"></u-radio>
  26. </u-radio-group> -->
  27. <radio>登录同意《<view class="txt" @click="toAgreement(1)">用户协议</view>》和《<view class="txt" @click="toAgreement(2)">隐私政策</view>》</radio>
  28. </view>
  29. <view>
  30. <u-button type="error" shape="circle" text="登录" @click="submit()"></u-button>
  31. </view>
  32. <view class="tip" @click="toRegister()">还没有账号?马上注册</view>
  33. </view>
  34. </view>
  35. </view>
  36. </template>
  37. <script>
  38. export default {
  39. data() {
  40. return {
  41. sliderVerifyFLag: false, //滑块验证
  42. form: {
  43. phone: '',
  44. password: ''
  45. },
  46. rules: {
  47. phone: [{
  48. required: true,
  49. message: '请输入手机号',
  50. trigger: 'blur,change'
  51. },
  52. {
  53. // 自定义验证函数,见上说明
  54. validator: (rule, value, callback) => {
  55. // 上面有说,返回true表示校验通过,返回false表示不通过
  56. // uni.$u.test.mobile()就是返回true或者false的
  57. return uni.$u.test.mobile(value);
  58. },
  59. message: '手机号码不正确',
  60. // 触发器可以同时用blur和change
  61. trigger: ['change', 'blur'],
  62. }
  63. ],
  64. password: [{
  65. required: true,
  66. message: '请输入密码',
  67. trigger: 'blur,change'
  68. }]
  69. },
  70. // radioLabel: "登录同意《用户协议》和《隐私政策》",
  71. value: '',
  72. }
  73. },
  74. onReady() {
  75. this.$refs.uForm.setRules(this.rules);
  76. },
  77. methods: {
  78. submit() {
  79. this.$refs.uForm.validate().then(res => {
  80. this.$api.doLogin(this.form).then(resp => {
  81. if(resp.code==200){
  82. let data = resp.data;
  83. // uni.setStorageSync('userInfo', resp.data);
  84. uni.setStorageSync('token',data.tokenInfo.tokenValue)
  85. uni.$u.toast('登录成功,欢迎你'+data.appUser.name)
  86. uni.switchTab({
  87. url: '/pages/index/index'
  88. });
  89. }
  90. })
  91. }).catch(errors => {
  92. console.log(errors)
  93. // uni.$u.toast('校验失败')
  94. })
  95. },
  96. radioChange() {
  97. console.log("1111")
  98. },
  99. toRegister() {
  100. uni.navigateTo({
  101. url: '/pages/login/chooseRole'
  102. });
  103. },
  104. toAgreement(id) {
  105. uni.navigateTo({
  106. url: '/pages/login/userAgreement?id='+id
  107. });
  108. }
  109. }
  110. }
  111. </script>
  112. <style lang="scss">
  113. page {
  114. background-color: #fff;
  115. padding: 30px;
  116. }
  117. .remain {
  118. // margin: 40px 10px 0;
  119. text-align: center;
  120. }
  121. .wel {
  122. margin-top: 10px;
  123. }
  124. .form {
  125. // margin: 0 30px;
  126. height: 200px;
  127. // display: flex;
  128. // align-items: center;
  129. // justify-content: center;
  130. }
  131. .form-input {
  132. width: 100%;
  133. background-color: #E8E8E8;
  134. border-radius: 5px;
  135. margin-top: 5px;
  136. }
  137. .btn {
  138. margin: 25px 10px;
  139. }
  140. .tip {
  141. margin-top: 30px;
  142. text-align: center;
  143. font-size: 14px;
  144. }
  145. .txt{
  146. color: #00BFFF;
  147. }
  148. </style>