Browse Source

修正h5分享

lipengtao 6 years ago
parent
commit
5d92b00f0a

+ 4 - 1
src/components/ShareOut/index.vue

@ -17,6 +17,7 @@
17 17
  </div>
18 18
</template>
19 19
<script>
20
    import { urlshare } from '@/libs/util';
20 21
  export default {
21 22
    props: {
22 23
      tUrl: {
@ -45,7 +46,9 @@
45 46
          height: 120
46 47
        });
47 48
        qrcode.clear();
48
        qrcode.makeCode(this.tUrl12);
49
        console.log(this.tUrl,1212)
50
        console.log(urlshare())
51
        qrcode.makeCode(urlshare());
49 52
      }
50 53
    }
51 54
  };

+ 2 - 1
src/layout/TheHeader.vue

@ -46,7 +46,7 @@
46 46
</template>
47 47
48 48
<script>
49
  import { ekexiuUrl } from '@/libs/util';
49
  import { sharePage, ekexiuUrl } from '@/libs/util';
50 50
  import { MessageBox } from 'element-ui'
51 51
52 52
  export default {
@ -105,6 +105,7 @@
105 105
    },
106 106
    mounted () {
107 107
      /* eslint-disable no-undef */
108
      sharePage();
108 109
      this.plat = PLAT.info;
109 110
      if (!this.account) {
110 111
        this.$store.dispatch('GetUserInfo').then(res => {})

+ 21 - 1
src/libs/util.js

@ -313,4 +313,24 @@ export const DateFormat = function (fmt) {
313 313
    if (new RegExp('(' + k + ')').test(fmt))
314 314
      fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (('00' + o[k]).substr(('' + o[k]).length)))
315 315
  return fmt
316
} 
316
}
317
318
export const urlshare = function () {
319
  let arrayUrl = ['home', 'company.html', 'org.html', 'expert.html', 'result.html', 'resource.html', 'serve.html', 'content.html']
320
  let arr = arrayUrl.filter(function (item) {
321
    return window.location.href.indexOf(item) !== -1;
322
  })
323
  if (arr && arr.length) {
324
    let index = arr[0].indexOf('.');
325
    let temp = arr[0].substring(0, index);
326
    let url = "http://" + window.location.host + "/h5.html#/" + temp + "?id=" + urlParse('id');
327
    return url;
328
  }
329
}
330
331
export const sharePage = function (par) {
332
  let url = urlshare();
333
  if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
334
    location.href = url
335
  } 
336
}

+ 0 - 3
src/pages/content/show.vue

@ -84,9 +84,6 @@
84 84
    },
85 85
    created() {
86 86
      this.contentId = urlParse('id');
87
      if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){
88
        location.href="http://" + window.location.host + "/h5.html#/content?id="+this.contentId;
89
      }
90 87
      this.elurl = window.location.href;
91 88
      this.getContentInfo();
92 89
      this.getPlatExperts();

+ 11 - 1
src/pages/h5/router/index.js

@ -65,7 +65,7 @@ const constantRouterMap = [
65 65
    path: '',
66 66
    component: Layout,
67 67
    children: [{
68
      path: '/service',
68
      path: '/serve',
69 69
      component: (resolve) => require(['../views/service/service.vue'], resolve),
70 70
      name: 'service',
71 71
      meta: { title: '服务' }
@ -90,6 +90,16 @@ const constantRouterMap = [
90 90
      name: 'product',
91 91
      meta: { title: '产品' }
92 92
    }]
93
  }, 
94
  {
95
    path: '',
96
    component: Layout,
97
    children: [{
98
      path: '/result',
99
      component: (resolve) => require(['../views/result/result.vue'], resolve),
100
      name: 'result',
101
      meta: { title: '专利' }
102
    }]
93 103
  }
94 104
];
95 105