123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <view class="content">
- <view class="box">
- <web-view :src="url" @message="message"></web-view>
- </view>
- <!-- <view>12zf</view> -->
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- url: '',
-
- wxOpendata:'',
- logindata:'',
- id:'',
- }
- },
- onLoad(opt) {
- var that=this;
- this.wxOpendata=uni.getStorageSync("wxOpendata");
- this.logindata=uni.getStorageSync("logindata");
- if (opt.path) {
- //this.url = `${this.url}${options.path}`
- //this.url = opt.path
- console.log('options', opt)
- //console.log(opt)
- var url=opt.path.replace('$', '?')
- this.url=url+"&codeapp="+that.wxOpendata.code+'&shareID='+opt.shareID+'&type='+opt.type+'&isDmsOpen='+that.wxOpendata.isDmsOpen+'&isMarketingOpen='+that.wxOpendata.isMarketingOpen
- console.log(url)
- }else{
- uni.getLocation({
- type: 'gcj02',
- success: function (res) {
- console.log('当前位置的经度是:' + res.longitude);
- console.log('当前位置的纬度:' + res.latitude);
- if(opt.id){
- 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
- }else{
- /* if(!that.wxOpendata.shopID||!that.logindata){
- uni.navigateTo({
- url:'../login/empower'
- })
- } */
-
- if(that.wxOpendata.code){
- //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
- 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
- }else{
- that.url=that.$webURL+'carOwner/index?codeapp=&shopId=&lat='+res.latitude+'&lng='+res.longitude
- }
- }
- },
- fail(err) {
- console.log(err)
- if(opt.id){
- that.url=that.$webURL+'paySuccess?orderId='+opt.id+'&hideHeader=true&codeapp='+that.wxOpendata.code+'&lat=""&lng=""'
- }else{
- if(!that.wxOpendata.shopID){
- uni.navigateTo({
- url:'../login/empower'
- })
- }
- if(that.wxOpendata.code){
- //this.url='http://dms.32che.cn/#/carOwner/index?codeapp='+this.wxOpendata.code+ '&shopId='+this.wxOpendata.shopID
- that.url=that.$webURL+'carOwner/index?codeapp='+that.wxOpendata.code+ '&shopId='+that.wxOpendata.shopID+'&lat=""&lng=""'
- }
- }
- }
- });
- }
-
-
- console.log(opt)
- //opt.id='3A9DBC40-D5D4-43A6-8ACA-5CF909771512'
-
-
- /* if(opt.shopId){
- this.url2='http://wx.32che.cn/weixin/authorize?path=/carOwner/index&isCarOwner=true&shopId='+opt.shopId
- } */
- //http://192.168.0.215:9588/#/carOwner/index?codeapp=D8E849B9EE0D4A07812BB0186E77B993&lat=36.68013&lng=117.06533
-
-
-
- },
-
-
-
-
- methods: {
- goUrl(){
-
- },
- message(event){
- console.log(event);
- let { data } = event.mp.detail
- console.log('message', data)
- this.shareData = JSON.parse(data.pop())
- console.log(this.shareData)
- //this.shareData= event.mp.detail
- },
- },
- onShareAppMessage(){
- console.log(this.shareData)
- /* var share={
- url:this.shareData.path
- }
- var obj=JSON.stringify(share) */
- var newUrl=this.shareData.path.replace('?', '$')
- console.log(newUrl)
- /*
- if (this.shareData) {
- path = shareData.path
- } */
- return {
- title:this.shareData.title,
- path: 'pages/index/index?path='+ encodeURI(newUrl),
- //path: 'pages/index/home?path='+ obj+'&id='+this.shareData.id+'&shareID='+this.shareData.shareID,
- imageUrl:this.shareData.img,
- desc:this.shareData.desc,
- success: function (res) {
- // 转发成功
- wx.showToast({
- title: "转发成功",
- icon: 'success',
- duration: 2000
- })
- },
- fail: function (res) {
- // 转发失败
- },
- }
-
- }
- }
- </script>
- <style>
- .content {
- /* display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center; */
-
- }
- .box{
- padding-bottom: env(safe-area-inset-bottom);
-
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- display: flex;
- justify-content: center;
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- </style>
|