login_Wechat.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <template>
  2. <view class="login_Wechat">
  3. <statusBar :item='navBarData'></statusBar>
  4. <view class="block">
  5. <button class="avatar-wrapper" open-type="chooseAvatar" @chooseavatar="onChooseAvatar">
  6. <image class="avatar" :src="avatarUrl"></image>
  7. </button>
  8. </view>
  9. <view class="inp">
  10. <view class="nc">昵称:</view>
  11. <input type="nickname" class="weui-input" :value="nickname" @blur="inpvalue" placeholder="请输入昵称" />
  12. </view>
  13. <view class="mid">
  14. <!-- <radio value="r1" @click="radioCheck" size="10" :checked="isOK" /> -->
  15. <view class="" style="position: relative;padding-left:30rpx;">
  16. 我已阅读并同意<text>《教育小程序服务条款》</text>和 <text>《 隐私协议》</text>新用户自动注册
  17. <view class="quan" @click="isDui">
  18. <image v-if="isShow" class="dui" src="https://teacherapi.cocorobo.cn/teaching-file/static//yym/dui.png"
  19. mode="aspectFill"></image>
  20. </view>
  21. </view>
  22. </view>
  23. <button class="btn" @click="gotoIndex">一键登录</button>
  24. <view class="footer" @click="goto">
  25. <text>手机号登录/账号密码登录</text>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. export default {
  31. data() {
  32. return {
  33. avatarUrl: '',
  34. nickname: '',
  35. isShow: false,
  36. navBarData: {
  37. title: '登录页',
  38. btn: 1 //判断是否显示返回按钮
  39. },
  40. };
  41. },
  42. methods: {
  43. // 选择名称
  44. inpvalue(e) {
  45. this.nickname = e.detail.value
  46. },
  47. // 上传图片
  48. onChooseAvatar(e) {
  49. const {
  50. avatarUrl
  51. } = e.detail
  52. console.log(avatarUrl);
  53. let that = this
  54. const uploadTask = uni.uploadFile({
  55. url: 'http://139.159.246.165:7006/img', // post请求地址
  56. // url: 'https://cxcy.ssti.net.cn/api/UploadFirmFile', // post请求地址
  57. // filePath: tempFilePaths,
  58. filePath: avatarUrl,
  59. name: 'file', // 待确认
  60. header: {
  61. // 不要写这个不然报错
  62. // 'Content-Type': 'multipart/form-data',
  63. },
  64. success: function(res) {
  65. console.log(res);
  66. that.avatarUrl = res.data
  67. },
  68. fail: function(uploadFileFail) {
  69. console.log('Error:', uploadFileFail.data);
  70. },
  71. complete: () => {
  72. // 接口调用结束的回调函数(调用成功、失败都会执行)
  73. // console.log('Complete:');
  74. }
  75. });
  76. // this.avatarUrl = avatarUrl
  77. },
  78. // 登录
  79. gotoIndex() {
  80. if (this.avatarUrl ==
  81. 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0'
  82. ) {
  83. uni.showToast({
  84. title: '请选择头像',
  85. icon: 'error',
  86. duration: 1000
  87. });
  88. return
  89. }
  90. if (this.nickname == '') {
  91. uni.showToast({
  92. title: '请输入昵称',
  93. icon: 'error',
  94. duration: 1000
  95. });
  96. return
  97. }
  98. if(!this.isShow) return uni.showToast({title: '请勾选条约',icon: 'error',duration: 1000});
  99. let oId = uni.getStorageSync('oId')
  100. console.log('gotoIndex:', oId);
  101. // let all = []
  102. // 检查是否注册过
  103. this.$request('/selectUser', 'POST', {
  104. oId: oId,
  105. }).then(res => {
  106. console.log('selectUser', res[0]);
  107. console.log(res[0] == false);
  108. // 账号第一次登录,还没注册过
  109. if (res[0] == false) {
  110. console.log('还未注册过,开始注册');
  111. this.$request('/login', 'POST', {
  112. openid: oId,
  113. Nme: this.nickname,
  114. // avatar: 'https://teacherapi.cocorobo.cn/teaching-file/static//mine/Avatar_default.png'
  115. avatar: this.avatarUrl
  116. }).then(res => {
  117. console.log('注册成功', res);
  118. uni.setStorageSync('token', res.token)
  119. // 注册过后重新登录
  120. this.gotoIndex()
  121. })
  122. } else {
  123. console.log('已注册过直接登录', res[0][0]);
  124. // 修改昵称头像
  125. this.$request('/updateUser',"POST",{
  126. openid: oId,
  127. Nme: this.nickname,
  128. avatar: this.avatarUrl
  129. }).then(res=>{
  130. console.log('updateUser',res);
  131. this.$request('/selectUser', 'POST', {
  132. oId: oId,
  133. }).then(res => {
  134. this.$store.dispatch('asyncUpdateUser', res[0][0])
  135. })
  136. })
  137. }
  138. })
  139. uni.switchTab({
  140. url: '/pages/index/index'
  141. })
  142. },
  143. // 跳转其他登录方式
  144. goto() {
  145. uni.navigateTo({
  146. url: "/pages/login_two/login_two"
  147. })
  148. },
  149. // 勾选取消条约
  150. isDui() {
  151. this.isShow = !this.isShow
  152. },
  153. getdata(){
  154. this.$request('/selectUserInfo', "POST", {openid: uni.getStorageSync('oId')}).then(res => {
  155. console.log('获取渲染数据',res[0][0]);
  156. let data=res[0][0]
  157. console.log(data);
  158. if(!data){
  159. return
  160. }else{
  161. this.avatarUrl=data.avatar
  162. this.nickname=data.username
  163. }
  164. })
  165. }
  166. },
  167. onLoad() {
  168. this.avatarUrl =
  169. 'https://mmbiz.qpic.cn/mmbiz/icTdbqWNOwNRna42FI242Lcia07jQodd2FJGIYQfG0LAJGFxM4FbnQP6yfMxBgJ0F3YRqJCJ1aPAK2dQagdusBZg/0';
  170. this.getdata()
  171. }
  172. }
  173. </script>
  174. <style lang="scss">
  175. .login_Wechat {
  176. width: 750rpx;
  177. height: 100vh;
  178. background-color: #ffffff;
  179. }
  180. .block {
  181. width: 750rpx;
  182. height: 30vh;
  183. display: flex;
  184. justify-content: center;
  185. align-items: center;
  186. }
  187. .footer {
  188. display: flex;
  189. justify-content: center;
  190. font-size: 14px;
  191. margin: auto;
  192. color: #666666;
  193. }
  194. .avatar-wrapper {
  195. width: 200rpx;
  196. height: 200rpx;
  197. padding: 0;
  198. image {
  199. width: 200rpx;
  200. height: 200rpx;
  201. }
  202. }
  203. .inp {
  204. display: flex;
  205. align-items: center;
  206. padding: 0rpx 50rpx;
  207. .nc {
  208. // width: 150rpx;
  209. text-align: left;
  210. }
  211. .weui-input {}
  212. }
  213. .mid {
  214. display: flex;
  215. justify-content: flex-start;
  216. width: 750rpx;
  217. padding: 0rpx 50rpx;
  218. font-size: 13px;
  219. margin-top: 80rpx;
  220. .quan {
  221. position: absolute;
  222. flex-shrink: 0;
  223. top: 0;
  224. left: -10rpx;
  225. width: 32rpx;
  226. height: 32rpx;
  227. border-radius: 50%;
  228. margin-top: 5rpx;
  229. margin-right: 10rpx;
  230. border: 1px #bdbdbd solid;
  231. display: flex;
  232. justify-content: center;
  233. align-items: center;
  234. .dui {
  235. width: 32rpx;
  236. height: 32rpx;
  237. }
  238. }
  239. text {
  240. color: #4a97f2;
  241. }
  242. }
  243. .btn {
  244. background-color: #0056a8;
  245. color: #ffffff;
  246. border-radius: 30px;
  247. margin: 30rpx 55rpx;
  248. // padding: 10rpx 0;
  249. display: flex;
  250. align-items: center;
  251. justify-content: center;
  252. margin-top: 30rpx;
  253. // padding: 0rpx 10rpx;
  254. font-size: 16px;
  255. }
  256. </style>