empower.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <template>
  2. <view class="container" >
  3. <view ><!-- vsv-if="!wxOpendata&&isload" -->
  4. <view class="logoBox">
  5. <image src="../../static/img/euro.png" mode="" class="euroImg"></image>
  6. </view>
  7. <view class="title1">请完成微信授权以继续使用</view>
  8. <button class="wxlogin" @click="wxgologin">授权微信用户信息</button>
  9. <view class="title2" @click="goIndex">取消授权</view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. wxdata:'',
  18. wxCode:'',
  19. openID:'',
  20. session_key:'',
  21. wxPhoneData:'',
  22. type:'',
  23. wxOpendata:'',
  24. isload:false,
  25. shopID:'',
  26. loginType:'',
  27. }
  28. },
  29. onLoad(opt) {
  30. this.type=opt.type;
  31. this.loginType=opt.loginType;
  32. this.wxOpendata=uni.getStorageSync("wxOpendata");
  33. if(this.loginType==1){
  34. }else{
  35. if( this.wxOpendata){
  36. /* uni.switchTab({
  37. url:'../index/index'
  38. }) */
  39. uni.navigateTo({
  40. url:'../index/index'
  41. })
  42. }else{
  43. this.isload=true;
  44. }
  45. }
  46. if(opt.shopId){
  47. this.shopID=opt.shopId
  48. }
  49. },
  50. methods: {
  51. goIndex(){
  52. /* uni.switchTab({
  53. url:'../index/index'
  54. }) */
  55. uni.navigateTo({
  56. url:'../index/index'
  57. })
  58. },
  59. getPhoneNumber: function(e) {
  60. console.log(e);
  61. this.wxPhoneData=e.detail;
  62. this.gologin()
  63. //this.wxgologin()
  64. },
  65. privacyClick(){
  66. this.privacyCk=!this.privacyCk
  67. },
  68. iphoneLogin(){
  69. uni.navigateTo({
  70. url:'iphoneLogin'
  71. })
  72. },
  73. wxgologin(){
  74. var that=this;
  75. uni.getUserProfile({
  76. lang:'zh_CN',
  77. desc:'登录',
  78. success:(res)=>{
  79. console.log(res);
  80. that.wxdata=res;
  81. uni.setStorage({
  82. key: 'wxdata',
  83. data: res,
  84. success: function () {
  85. that.ipLogin()
  86. }
  87. });
  88. },
  89. fail:(res)=>{
  90. console.log(res)
  91. }
  92. });
  93. },
  94. ipLogin(){
  95. var that=this;
  96. uni.showLoading({ title: '加载中'});
  97. uni.login({
  98. provider: 'weixin',
  99. success: function (loginRes) {
  100. console.log(loginRes)
  101. that.wxCode=loginRes.code
  102. that.getWxOpenID()
  103. //that.gologin()
  104. }
  105. });
  106. },
  107. gologin(){
  108. /* if(this.wxPhoneData&&this.wxCode){
  109. this.getWxOpenID()
  110. } */
  111. },
  112. getWxOpenID(){
  113. var that=this;
  114. this.$http('km66MiniApp/sys/getWxOpenID', {
  115. code:this.wxCode,
  116. shopID:this.shopID,
  117. nickName:this.wxdata.userInfo.nickName,
  118. headUrl:this.wxdata.userInfo.avatarUrl,
  119. },'GET').then(res => {
  120. console.log(res)
  121. this.openID=res.data.openid;
  122. this.session_key=res.data.session_key;
  123. this.shopID=res.data.shopID
  124. console.log(this.openID)
  125. uni.setStorage({
  126. key: 'wxOpendata',
  127. data: res.data,
  128. success: function (rrr) {
  129. // that.ipLogin()
  130. uni.hideLoading();
  131. if(that.shopID){
  132. uni.redirectTo({
  133. url:'login?shopId='+that.shopID
  134. })
  135. }else{
  136. uni.navigateTo({
  137. url:'../user/scanCode'
  138. })
  139. }
  140. /* if(!that.type){
  141. uni.switchTab({
  142. url:'../index/index'
  143. })
  144. }else{
  145. uni.redirectTo({
  146. url:'login'
  147. })
  148. } */
  149. }
  150. });
  151. //this.Login()
  152. })
  153. },
  154. Login(){
  155. var that=this;
  156. this.$http('miniApp/sys/wxLogin', {
  157. openID:this.openID,
  158. encrypData:this.wxPhoneData.encryptedData,
  159. iv:this.wxPhoneData.iv,
  160. sessionKey:this.session_key,
  161. nickName:this.wxdata.userInfo.nickName,
  162. headUrl:this.wxdata.userInfo.avatarUrl,
  163. },).then(res => {
  164. //console.log(res)
  165. uni.hideLoading();
  166. if(res.code==0){
  167. uni.setStorage({
  168. key: 'logodata',
  169. data: res.data,
  170. success: function () {
  171. }
  172. });
  173. uni.showToast({
  174. title: '登录成功',
  175. icon:'none',
  176. duration: 3000
  177. });
  178. uni.switchTab({
  179. url:'../index/index'
  180. })
  181. }else{
  182. uni.showToast({
  183. title: res.msg,
  184. icon:'none',
  185. duration: 3000
  186. });
  187. }
  188. })
  189. }
  190. }
  191. }
  192. </script>
  193. <style scoped>
  194. .euroImg{
  195. width: 290rpx;
  196. height: 361rpx;
  197. }
  198. .logoBox{
  199. text-align: center;
  200. padding-top: 160rpx;
  201. }
  202. .title1{
  203. font-size: 26rpx;
  204. text-align: center;
  205. color: #576B95;
  206. padding-top: 150rpx;
  207. }
  208. .wxlogin{
  209. width: 658rpx;
  210. height: 88rpx;
  211. background: linear-gradient(113deg, #FF630F 0%, #FF450F 100%);
  212. border-radius: 10rpx;
  213. line-height: 88rpx;
  214. text-align: center;
  215. color: #FFFFFF;
  216. font-size: 30rpx;
  217. margin-top: 20rpx;
  218. }
  219. .title2{
  220. width: 100vw;
  221. position: fixed;
  222. left: 0;
  223. bottom: 50rpx;
  224. font-size: 26rpx;
  225. text-align: center;
  226. color: #576B95;
  227. }
  228. </style>