index.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. uni.getLocation({
  24. type: 'gcj02',
  25. success: function (res) {
  26. console.log('当前位置的经度:' + res.longitude);
  27. console.log('当前位置的纬度:' + res.latitude);
  28. if(opt.id){
  29. that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat='+res.latitude+'&lng='+res.longitude
  30. }else{
  31. /* if(!that.wxOpendata.shopID||!that.logindata){
  32. uni.navigateTo({
  33. url:'../login/empower'
  34. })
  35. } */
  36. if(that.wxOpendata.code){
  37. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  38. that.url=that.$webURL+'carOwner/index?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat='+res.latitude+'&lng='+res.longitude
  39. }else{
  40. that.url=that.$webURL+'carOwner/index?codeapp=&shopId=&lat='+res.latitude+'&lng='+res.longitude
  41. }
  42. }
  43. },
  44. fail(err) {
  45. console.log(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+'carOwner/index?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat=""&lng=""'
  57. }
  58. }
  59. }
  60. });
  61. console.log(opt)
  62. //opt.id='3A9DBC40-D5D4-43A6-8ACA-5CF909771512'
  63. /* if(opt.shopId){
  64. this.url2='http://wx.32che.cn/weixin/authorize?path=/carOwner/index&isCarOwner=true&shopId='+opt.shopId
  65. } */
  66. //http://192.168.0.215:9588/#/carOwner/index?codeapp=D8E849B9EE0D4A07812BB0186E77B993&lat=36.68013&lng=117.06533
  67. },
  68. methods: {
  69. goUrl(){
  70. },
  71. message(event){
  72. console.log(event);
  73. }
  74. }
  75. }
  76. </script>
  77. <style>
  78. .content {
  79. /* display: flex;
  80. flex-direction: column;
  81. align-items: center;
  82. justify-content: center; */
  83. }
  84. .box{
  85. padding-bottom: env(safe-area-inset-bottom);
  86. }
  87. .logo {
  88. height: 200rpx;
  89. width: 200rpx;
  90. margin-top: 200rpx;
  91. margin-left: auto;
  92. margin-right: auto;
  93. margin-bottom: 50rpx;
  94. }
  95. .text-area {
  96. display: flex;
  97. justify-content: center;
  98. }
  99. .title {
  100. font-size: 36rpx;
  101. color: #8f8f94;
  102. }
  103. </style>