login.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <template>
  2. <view class="login">
  3. <statusBar :item='navBarData'></statusBar>
  4. <view class="img">
  5. <image src="http://43.139.158.220:5007/img/static/yym/image7.png" mode="aspectFill"></image>
  6. </view>
  7. <view class="mid">
  8. <!-- <radio value="r1" @click="radioCheck" size="10" :checked="isOK" /> -->
  9. <view class="" style="position: relative;padding-left:30rpx;">
  10. 我已阅读并同意<text>《教育小程序服务条款》</text><text>《 隐私协议》</text>新用户自动注册
  11. <view class="quan" @click="isDui">
  12. <image v-if="isShow" class="dui" src="http://43.139.158.220:5007/img/static/yym/dui.png"
  13. mode="aspectFill"></image>
  14. </view>
  15. </view>
  16. </view>
  17. <!--
  18. <button class="btn" open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
  19. <image class="avatar" :src="avatarUrl"></image>
  20. </button> -->
  21. <button class="btn" @click="gotoIndex">一键登录</button>
  22. <!-- <button class="btn" open-type="getPhoneNumber" @getphonenumber="getPhoneNumber">一键登录</button> -->
  23. <view class="footer" @click="goto">
  24. <text>手机号登录/账号密码登录</text>
  25. </view>
  26. <!-- <button @click="kk">111</button> -->
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. avatarUrl: 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0',
  34. isOK: false,
  35. navBarData: {
  36. title: '首页',
  37. btn: 1 //判断是否显示返回按钮
  38. },
  39. isMsg: 0,
  40. isShow: false
  41. };
  42. },
  43. methods: {
  44. onChooseAvatar(e) {
  45. console.log(e);
  46. const {
  47. avatarUrl
  48. } = e.detail
  49. this.avatarUrl = avatarUrl
  50. let openid=uni.getStorageSync('oId')
  51. const uploadTask = uni.uploadFile({
  52. url: 'http://localhost:3001/img', // post请求地址
  53. filePath: avatarUrl,
  54. name: 'file', // 待确认
  55. header: {
  56. // 不要写这个不然报错
  57. // 'Content-Type': 'multipart/form-data',
  58. },
  59. formData: {
  60. // 携带的用户数据
  61. userId: openid, // 用户ID
  62. },
  63. success: function(res) {
  64. return res
  65. let url = JSON.parse(res.data)
  66. console.log(url.data);
  67. url.data = url.data.replace(/\\/g, '/')
  68. that.$store.commit('updateAvatar', url.data)
  69. uni.showToast({
  70. title: '修改成功',
  71. duration: 2000
  72. });
  73. },
  74. fail: function(uploadFileFail) {
  75. console.log('Error:', uploadFileFail.data);
  76. },
  77. complete: () => {
  78. // 接口调用结束的回调函数(调用成功、失败都会执行)
  79. // console.log('Complete:');
  80. }
  81. });
  82. },
  83. getPhoneNumber(e) {
  84. console.log(e.detail.code) // 动态令牌
  85. console.log(e.detail.errMsg) // 回调信息(成功失败都会返回)
  86. console.log(e.detail.errno) // 错误码(失败时返回)
  87. },
  88. gotoIndex() {
  89. let oId=uni.getStorageSync('oId')
  90. console.log('gotoIndex:',oId);
  91. let all=[]
  92. // 检查是否注册过
  93. this.$request('/selectUser', 'POST', {
  94. oId:oId,
  95. }).then(res => {
  96. console.log('selectUser',res[0]);
  97. console.log(res[0]==false);
  98. if(res[0]==false) {
  99. console.log('还未注册过,开始注册');
  100. this.$request('/login', 'POST', {
  101. openid:oId,
  102. Nme:'默认名称',
  103. avatar:'http://43.139.158.220:5007/img/static/mine/Avatar_default.png'
  104. }).then(res => {
  105. console.log(res,11111);
  106. uni.setStorageSync('token',res.token)
  107. // 注册过后重新登录
  108. this.gotoIndex()
  109. })
  110. }else{
  111. console.log('登录过了',res[0]);
  112. this.$store.dispatch('asyncUpdateUser',res[0][0])
  113. }
  114. })
  115. uni.switchTab({
  116. url:'/pages/index/index'
  117. })
  118. },
  119. goto() {
  120. uni.navigateTo({
  121. url: "/pages/login_two/login_two"
  122. })
  123. },
  124. radioCheck() {
  125. this.isOK = !this.isOK
  126. },
  127. isDui() {
  128. this.isShow = !this.isShow
  129. }
  130. },
  131. onLoad(opt) {
  132. console.log(opt);
  133. this.isMsg = opt.id
  134. console.log(this.$store.state);
  135. }
  136. }
  137. </script>
  138. <style lang="scss">
  139. .login {
  140. background-color: #ffffff;
  141. height: 100vh;
  142. .avatar-wrapper {
  143. width: 300rpx;
  144. background-color: #fff;
  145. margin: auto;
  146. }
  147. .avatar {
  148. width: 60rpx;
  149. height: 60rpx;
  150. }
  151. .img {
  152. // padding: 10vh 0;
  153. padding-top: 10vh;
  154. margin-bottom: 10vh;
  155. width: 750rpx;
  156. display: flex;
  157. justify-content: center;
  158. image {
  159. width: 200rpx;
  160. height: 200rpx;
  161. border-radius: 50%;
  162. }
  163. }
  164. .mid {
  165. display: flex;
  166. justify-content: flex-start;
  167. width: 750rpx;
  168. padding: 0rpx 50rpx;
  169. font-size: 13px;
  170. .quan {
  171. position: absolute;
  172. flex-shrink: 0;
  173. top: 0;
  174. left: -10rpx;
  175. width: 32rpx;
  176. height: 32rpx;
  177. border-radius: 50%;
  178. margin-top: 5rpx;
  179. margin-right: 10rpx;
  180. border: 1px #bdbdbd solid;
  181. display: flex;
  182. justify-content: center;
  183. align-items: center;
  184. .dui {
  185. width: 32rpx;
  186. height: 32rpx;
  187. }
  188. }
  189. text {
  190. color: #4a97f2;
  191. }
  192. }
  193. .btn {
  194. background-color: #0056a8;
  195. color: #ffffff;
  196. border-radius: 30px;
  197. margin: 30rpx 55rpx;
  198. padding: 10rpx 0;
  199. display: flex;
  200. align-items: center;
  201. justify-content: center;
  202. // padding: 0rpx 10rpx;
  203. font-size: 16px;
  204. }
  205. .footer {
  206. display: flex;
  207. justify-content: center;
  208. font-size: 14px;
  209. margin: auto;
  210. color: #666666;
  211. }
  212. }
  213. </style>