index.vue 4.7 KB

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