wallet.vue 693 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <web-view @message="getMessage" :src="url"></web-view>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. url:null,
  11. title:null
  12. };
  13. },
  14. onLoad() {
  15. let h5Login={
  16. platform:'wxMiniprogram',
  17. ukn:encodeURIComponent(uni.getStorageSync('LL_Ukn')).replace(/\+/g,'%2B') ,
  18. token:uni.getStorageSync('token'),
  19. userinfo:JSON.parse(uni.getStorageSync('userInfo')),
  20. user:JSON.parse(uni.getStorageSync('user'))
  21. }
  22. let str=`https://promote.sugarpark.cn/walletHome?h5loginstr=${JSON.stringify(h5Login)}`
  23. this.url=str;
  24. },
  25. methods:{
  26. getMessage(e){
  27. console.log(e);
  28. }
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. </style>