home.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <web-view :src="url" @message="message"></web-view>
  5. </view>
  6. <!-- <view>12zf</view> -->
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. data() {
  12. return {
  13. url: '',
  14. shareData:'',
  15. wxOpendata:'',
  16. id:'',
  17. }
  18. },
  19. onLoad(opt) {
  20. this.wxOpendata=uni.getStorageSync("wxOpendata");
  21. var that=this;
  22. if (opt.path) {
  23. //this.url = `${this.url}${options.path}`
  24. //this.url = opt.path
  25. console.log('options', opt)
  26. this.url=JSON.parse(opt.path).url+"?id="+opt.id+"&codeapp="+that.wxOpendata.code+'&shareID='+opt.shareID
  27. }else{
  28. uni.getLocation({
  29. type: 'wgs84',
  30. success: function (res) {
  31. if(opt.id){
  32. that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat='+res.latitude+'&lng='+res.longitude
  33. }else{
  34. if(!that.wxOpendata.shopID){
  35. uni.navigateTo({
  36. url:'../login/empower'
  37. })
  38. }
  39. if(that.wxOpendata.code){
  40. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  41. that.url=that.$webURL+'?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat='+res.latitude+'&lng='+res.longitude
  42. }
  43. }
  44. },
  45. fail(err) {
  46. if(opt.id){
  47. that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat=""&lng=""'
  48. }else{
  49. if(!that.wxOpendata.shopID){
  50. uni.navigateTo({
  51. url:'../login/empower'
  52. })
  53. }
  54. if(that.wxOpendata.code){
  55. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  56. that.url=that.$webURL+'?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat=""&lng=""'
  57. }
  58. }
  59. }
  60. });
  61. }
  62. /* if(opt.id){
  63. this.url=this.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+this.wxOpendata.code
  64. }else{
  65. if(!this.wxOpendata.shopID){
  66. uni.navigateTo({
  67. url:'../login/empower'
  68. })
  69. }
  70. if(this.wxOpendata.code){
  71. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  72. this.url=this.$webURL+'?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  73. }
  74. } */
  75. /* if(opt.shopId){
  76. this.url2='http://wx.32che.cn/weixin/authorize?path=/carOwner/index&isCarOwner=true&shopId='+opt.shopId
  77. } */
  78. },
  79. methods: {
  80. message(event){
  81. console.log(event);
  82. let { data } = event.mp.detail
  83. console.log('message', data)
  84. this.shareData = JSON.parse(data.pop())
  85. console.log(this.shareData)
  86. //this.shareData= event.mp.detail
  87. },
  88. },
  89. onShareAppMessage(){
  90. console.log(this.shareData)
  91. var share={
  92. url:this.shareData.path
  93. }
  94. var obj=JSON.stringify(share)
  95. console.log(obj)
  96. /*
  97. if (this.shareData) {
  98. path = shareData.path
  99. } */
  100. return {
  101. title:'1111',
  102. //path: 'pages/index/home?path='+ encodeURI(obj),
  103. path: 'pages/index/home?path='+ obj+'&id='+this.shareData.id+'&shareID='+this.shareData.shareID,
  104. imageUrl:this.shareData.img,
  105. success: function (res) {
  106. // 转发成功
  107. wx.showToast({
  108. title: "转发成功",
  109. icon: 'success',
  110. duration: 2000
  111. })
  112. },
  113. fail: function (res) {
  114. // 转发失败
  115. },
  116. }
  117. }
  118. }
  119. </script>
  120. <style>
  121. .content {
  122. /* display: flex;
  123. flex-direction: column;
  124. align-items: center;
  125. justify-content: center; */
  126. }
  127. .box{
  128. padding-bottom: env(safe-area-inset-bottom);
  129. }
  130. .logo {
  131. height: 200rpx;
  132. width: 200rpx;
  133. margin-top: 200rpx;
  134. margin-left: auto;
  135. margin-right: auto;
  136. margin-bottom: 50rpx;
  137. }
  138. .text-area {
  139. display: flex;
  140. justify-content: center;
  141. }
  142. .title {
  143. font-size: 36rpx;
  144. color: #8f8f94;
  145. }
  146. </style>