home.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. id:'',
  16. }
  17. },
  18. onLoad(opt) {
  19. var that=this;
  20. this.wxOpendata=uni.getStorageSync("wxOpendata");
  21. uni.getLocation({
  22. type: 'wgs84',
  23. success: function (res) {
  24. if(opt.id){
  25. that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat='+res.latitude+'&lng='+res.longitude
  26. }else{
  27. if(!that.wxOpendata.shopID){
  28. uni.navigateTo({
  29. url:'../login/empower'
  30. })
  31. }
  32. if(that.wxOpendata.code){
  33. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  34. that.url=that.$webURL+'?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat='+res.latitude+'&lng='+res.longitude
  35. }
  36. }
  37. },
  38. fail(err) {
  39. if(opt.id){
  40. that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat=""&lng=""'
  41. }else{
  42. if(!that.wxOpendata.shopID){
  43. uni.navigateTo({
  44. url:'../login/empower'
  45. })
  46. }
  47. if(that.wxOpendata.code){
  48. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  49. that.url=that.$webURL+'?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat=""&lng=""'
  50. }
  51. }
  52. }
  53. });
  54. /* if(opt.id){
  55. this.url=this.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+this.wxOpendata.code
  56. }else{
  57. if(!this.wxOpendata.shopID){
  58. uni.navigateTo({
  59. url:'../login/empower'
  60. })
  61. }
  62. if(this.wxOpendata.code){
  63. //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  64. this.url=this.$webURL+'?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
  65. }
  66. } */
  67. /* if(opt.shopId){
  68. this.url2='http://wx.32che.cn/weixin/authorize?path=/carOwner/index&isCarOwner=true&shopId='+opt.shopId
  69. } */
  70. },
  71. methods: {
  72. message(event){
  73. console.log(event);
  74. }
  75. }
  76. }
  77. </script>
  78. <style>
  79. .content {
  80. /* display: flex;
  81. flex-direction: column;
  82. align-items: center;
  83. justify-content: center; */
  84. }
  85. .box{
  86. padding-bottom: env(safe-area-inset-bottom);
  87. }
  88. .logo {
  89. height: 200rpx;
  90. width: 200rpx;
  91. margin-top: 200rpx;
  92. margin-left: auto;
  93. margin-right: auto;
  94. margin-bottom: 50rpx;
  95. }
  96. .text-area {
  97. display: flex;
  98. justify-content: center;
  99. }
  100. .title {
  101. font-size: 36rpx;
  102. color: #8f8f94;
  103. }
  104. </style>