index.vue 5.8 KB

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