empower.vue 4.8 KB

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