loginByCode.vue 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <template>
  2. <view class="container">
  3. <TopBar :icon="topbarIcon" :title="topbarTitle"></TopBar>
  4. <view class="tip font44 fw600" style="margin-top: 100rpx;">
  5. 验证码登录
  6. </view>
  7. <view class="phone-tip font28 fw400" style="margin-top: 24rpx;">
  8. 短信验证码已发送至:
  9. </view>
  10. <view class="phone-tip font28 fw400">
  11. {{phone}}
  12. </view>
  13. <view class="input-box flex-between">
  14. <input type="number" maxlength="6" placeholder="请输入验证码" placeholder-style="color:#494667;font-size:28rpx;" class="input fw500 font32" v-model="code" @input="inputChange" focus="true">
  15. <image src="../../static/input-clear.png" mode="aspectFill" class="clear" v-show="phone!==''" @click="clear"></image>
  16. </view>
  17. <view class="btn font32 fw400" :class="timer===null?'primarybg':''" @click="reGetCode">
  18. {{btnStr}}
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import TopBar from '@/components/TopBar/TopBar.vue';
  24. export default {
  25. components:{TopBar},
  26. data() {
  27. return {
  28. topbarIcon:'back',
  29. topbarTitle:'',
  30. phone:'',
  31. code:'',
  32. btnStr:'',
  33. time:0,
  34. timer:'',
  35. verCodeOption:{
  36. scene: "VerCodeLogin",
  37. verCodeLogin:{
  38. phone: "",
  39. verCode: ""
  40. },
  41. androidMarket:'WechatMP',
  42. model:'',
  43. wxLoginInfo:{
  44. openId:null,
  45. unionId:null
  46. },
  47. },
  48. };
  49. },
  50. onLoad(option) {
  51. console.log(option)
  52. this.phone=option.phone;
  53. this.reGetCode()
  54. },
  55. methods:{
  56. clear(){
  57. this.code='';
  58. },
  59. inputChange(e){
  60. if(e.detail.value.length===6){
  61. const that=this;
  62. uni.login({//免密登录
  63. success:(res)=>{
  64. that.$api.login.wxLogin({
  65. scene: "WxMPLogin",
  66. miniProgramEncryUserInfoParam:{
  67. jsCode:res.code
  68. }
  69. }).then(result=>{
  70. if(result.status==='Succ'){
  71. uni.setStorageSync('openId',result.data.wxLoginInfo.openId);
  72. uni.setStorageSync('unionId',result.data.wxLoginInfo.unionId);
  73. let deviceConfig=uni.getSystemInfoSync();
  74. this.verCodeOption.verCodeLogin.phone=this.phone;
  75. this.verCodeOption.verCodeLogin.verCode=this.code;
  76. this.verCodeOption.model=deviceConfig.model;
  77. this.verCodeOption.wxLoginInfo.openId=result.data.wxLoginInfo.openId;
  78. this.verCodeOption.wxLoginInfo.unionId=result.data.wxLoginInfo.unionId;
  79. this.$api.login.login(this.verCodeOption).then(res=>{
  80. if(res.data.frozen){
  81. uni.showToast({
  82. icon:"none",
  83. title:res.data.msg
  84. });
  85. return;
  86. }
  87. if(res.data.succ){
  88. uni.setStorageSync('LL_Ukn',res.data.userToken.ukn);
  89. uni.setStorageSync('token',res.data.userToken.token);
  90. uni.setStorageSync('userInfo',JSON.stringify(res.data));
  91. uni.setStorageSync('user',JSON.stringify(res.data.userToken.user));
  92. uni.setStorageSync('isLogin','yes');
  93. this.$api.public.aliossCdn({}).then(cdnRes=>{
  94. this.$store.commit('setImageCdn',cdnRes.data.pictureCdn);
  95. this.$store.commit('setVideoCdn',cdnRes.data.videoCdn);
  96. })
  97. if(res.data.isNew){
  98. uni.navigateTo({
  99. url:'/pages/info/sex'
  100. })
  101. return;
  102. }
  103. this.getMineDetail(res.data.regStepNew);
  104. //全局分享
  105. uni.onAppRoute(()=>{
  106. const pages=getCurrentPages();
  107. let page=pages[pages.length-1];
  108. if(page.route!=='pages/friends/user'){
  109. let inviteCode=JSON.parse(uni.getStorageSync('userInfo')).inviteCode
  110. page.onShareAppMessage=()=>{
  111. return{
  112. title:'我在糖果公园等你哟~',
  113. page:`pages/friends/friends?inviteCode=${inviteCode}`,
  114. imageUrl:'https://zhenyanapp-gen.oss-cn-qingdao.aliyuncs.com/wechat-mini-pro/app-share.png'
  115. }
  116. }
  117. }
  118. })
  119. }
  120. else{
  121. uni.showToast({
  122. title:res.data.msg,icon:'none'
  123. })
  124. }
  125. })
  126. this.$api.public.aliossCdn({}).then(cdnRes=>{
  127. this.$store.commit('setImageCdn',cdnRes.data.pictureCdn);
  128. this.$store.commit('setVideoCdn',cdnRes.data.videoCdn);
  129. })
  130. }
  131. })
  132. },
  133. fail: (err) => {
  134. console.log(err)
  135. }
  136. });
  137. }
  138. },
  139. reGetCode(){
  140. this.time=60;
  141. this.btnStr=`重新获取(${--this.time}s)`;
  142. clearInterval(this.timer);
  143. this.timer=null;
  144. this.timer=setInterval(()=>{
  145. if(this.time<=1){
  146. clearInterval(this.timer);
  147. this.timer=null;
  148. this.btnStr="重新获取"
  149. }
  150. else{
  151. this.btnStr=`重新获取(${--this.time}s)`
  152. }
  153. },1000)
  154. },
  155. getMineDetail(regStepNew){
  156. let user=JSON.parse(uni.getStorageSync('user'));
  157. this.$api.public.mineDetail({
  158. getAlbum:true,
  159. completeUser:user
  160. }).then(res=>{
  161. this.$store.commit('setUserInfo',res.data);
  162. uni.setStorageSync('userInfo',JSON.stringify(res.data));//正式环境删除
  163. let step=regStepNew||uni.getStorageSync('regStep');
  164. switch(step){
  165. case 'Sex':
  166. uni.navigateTo({
  167. url:'/pages/info/sex'
  168. })
  169. break;
  170. case 'SocialImage':
  171. uni.navigateTo({
  172. url:'/pages/info/figure'
  173. })
  174. break;
  175. case 'SocialData':
  176. uni.navigateTo({
  177. url:'/pages/info/datum'
  178. })
  179. break;
  180. case 'CityStay':
  181. uni.navigateTo({
  182. url:'/pages/info/city'
  183. })
  184. break;
  185. case 'WxInfo':
  186. uni.navigateTo({
  187. url:'/pages/info/wechat'
  188. })
  189. break;
  190. case 'Basic':
  191. case 'Index':
  192. uni.switchTab({
  193. url:'/pages/friends/friends'
  194. })
  195. break;
  196. }
  197. })
  198. },
  199. }
  200. }
  201. </script>
  202. <style lang="scss">
  203. .container{
  204. background-color: $bgcolor1;
  205. width: 100vw;
  206. height: 100vh;
  207. .tip{
  208. color: $fontcolor5;
  209. padding-left: 60rpx;
  210. }
  211. .phone-tip{
  212. color: $fontcolor2;
  213. padding-left: 60rpx;
  214. }
  215. .input-box{
  216. margin: 0rpx 60rpx;
  217. margin-top: 160rpx;
  218. background-color: $bgcolor3;
  219. border-radius: 16rpx;
  220. height: 112rpx;
  221. padding: 0rpx 32rpx;
  222. .input{
  223. color: $fontcolor5;
  224. }
  225. .clear{
  226. width: 32rpx;
  227. height: 32rpx;
  228. }
  229. }
  230. .btn{
  231. margin: 0rpx 60rpx;
  232. margin-top: 120rpx;
  233. background-color: $fontcolor1;
  234. height: 104rpx;
  235. border-radius: 52rpx;
  236. line-height: 104rpx;
  237. text-align: center;
  238. color: $fontcolor3;
  239. }
  240. .link{
  241. box-sizing: border-box;
  242. margin: 0rpx 60rpx;
  243. margin-top: 30rpx;
  244. background-color: transparent;
  245. height: 104rpx;
  246. border-radius: 52rpx;
  247. line-height: 104rpx;
  248. text-align: center;
  249. color: $fontcolor3;
  250. border: 1rpx solid $fontcolor1;
  251. }
  252. .primarybg{
  253. background-color: $primary !important;
  254. color: $fontcolor5 !important;
  255. }
  256. }
  257. </style>