lyn7568 6 gadi atpakaļ
vecāks
revīzija
df749a9a5c

+ 0 - 5
src/components/ShareOut/index.vue

@ -20,9 +20,6 @@
20 20
    import { urlshare } from '@/libs/util';
21 21
  export default {
22 22
    props: {
23
      tUrl: {
24
        type: String
25
      },
26 23
      tPosition: {
27 24
        type: String,
28 25
        default: 'bottom-start'
@ -46,8 +43,6 @@
46 43
          height: 120
47 44
        });
48 45
        qrcode.clear();
49
        console.log(this.tUrl,12)
50
        console.log(urlshare())
51 46
        qrcode.makeCode(urlshare());
52 47
      }
53 48
    }

+ 2 - 2
src/libs/util.js

@ -323,7 +323,7 @@ export const urlshare = function () {
323 323
  if (arr && arr.length) {
324 324
    let index = arr[0].indexOf('.');
325 325
    let temp = arr[0].substring(0, index);
326
    let url = "http://" + window.location.host + "/h5.html#/" + temp + "?id=" + urlParse('id');
326
    let url = 'http://' + window.location.host + '/h5.html#/' + temp + '?id=' + urlParse('id');
327 327
    return url;
328 328
  }
329 329
}
@ -332,5 +332,5 @@ export const sharePage = function (par) {
332 332
  let url = urlshare();
333 333
  if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {
334 334
    location.href = url
335
  } 
335
  }
336 336
}

+ 1 - 3
src/pages/company/show.vue

@ -11,7 +11,7 @@
11 11
            <div class="info-tag"><span v-if="orgInfo.type === '2'" style="margin-right:10px">{{compType[orgInfo.type]}} </span>{{keywordObj[1] ? keywordObj[1].join(" | ") : ''}}</div>
12 12
            <div class="info-operate">
13 13
              <div class="addr">{{citys[orgInfo.addr]}}</div>
14
              <shareOut :tUrl="elurl"></shareOut>
14
              <shareOut></shareOut>
15 15
            </div>
16 16
          </div>
17 17
        </div>
@ -140,7 +140,6 @@
140 140
      return {
141 141
        activeName: 'first',
142 142
        orgInfo: '',
143
        elurl: '',
144 143
        pageSize: 10,
145 144
        pageNo: 1,
146 145
        productCount: 0,
@ -160,7 +159,6 @@
160 159
    },
161 160
    created() {
162 161
      this.companyId = urlParse('id');
163
      this.elurl = window.location.href;
164 162
      this.getDictoryData();
165 163
      this.getorgInfo();
166 164
      this.getCompanyKeyword();

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

@ -11,7 +11,7 @@
11 11
                  <span>{{contentInfo.modifyTime}}</span>
12 12
                  <pageView v-if="contentId" :pageObj="{ tn: 'article', id: contentId, src: '1'}"></pageView>
13 13
                  <span>作者/来源:{{contentInfo.source}}</span>
14
                  <shareOut :tUrl="elurl"></shareOut>
14
                  <shareOut></shareOut>
15 15
                </div>
16 16
              </div>
17 17
            </div>
@ -75,7 +75,6 @@
75 75
      return {
76 76
        /* eslint-disable no-undef */
77 77
        adinfo: PLAT.info.adinfo.mainAd,
78
        elurl: '',
79 78
        contentInfo: '',
80 79
        platExperts: '',
81 80
        platOrgs: '',
@ -84,7 +83,6 @@
84 83
    },
85 84
    created() {
86 85
      this.contentId = urlParse('id');
87
      this.elurl = window.location.href;
88 86
      this.getContentInfo();
89 87
      this.getPlatExperts();
90 88
      this.getPlatOrgs();

+ 1 - 3
src/pages/expert/show.vue

@ -9,7 +9,7 @@
9 9
            <div class="info-tag"><span v-if="expertInfo.title" style="margin-right:10px">{{expertInfo.title}}</span> {{expertInfo.offt}}</div>
10 10
            <div class="info-operate">
11 11
              <div class="addr">{{expertInfo.address}}</div>
12
              <shareOut :tUrl="elurl"></shareOut>
12
              <shareOut></shareOut>
13 13
            </div>
14 14
          </div>
15 15
          <el-row class="goSpan" :gutter="10">
@ -219,7 +219,6 @@
219 219
        activeName: 'first',
220 220
        expertInfo: '',
221 221
        expertId: '',
222
        elurl: '',
223 222
        platServices: [],
224 223
        serCount: 0,
225 224
        loadingModalShow: true, // 是否显示按钮
@ -247,7 +246,6 @@
247 246
    },
248 247
    created() {
249 248
      this.expertId = urlParse('id');
250
      this.elurl = window.location.href;
251 249
      this.getExpertInfo();
252 250
      this.getExpertWave();
253 251
      this.getExpertPatent();

+ 0 - 6
src/pages/h5/views/Result/result.vue

@ -94,8 +94,6 @@
94 94
95 95
<script>
96 96
  import { urlParse, ImageUrl, defaultSet, strToArr, TimeTr } from '@/libs/util';
97
  import collectCo from '@/components/CollectCo';
98
  import contactChat from '@/components/ContactChat';
99 97
100 98
  import baseResult from '@/components/subTemplate/BaseResult';
101 99
  import queryBase from '@/libs/queryBase';
@ -107,7 +105,6 @@
107 105
        activeName: 'first',
108 106
        patentInfo: '',
109 107
        patentId: '',
110
        elurl: '',
111 108
        likePatents: '',
112 109
        patentAuthors: '',
113 110
        defaultExpertImg: defaultSet.img.expert
@ -115,14 +112,11 @@
115 112
    },
116 113
    created() {
117 114
      this.patentId = urlParse('id');
118
      this.elurl = window.location.href;
119 115
      this.getPatentInfo();
120 116
      this.getLikePatents();
121 117
      this.getPatentAuthors();
122 118
    },
123 119
    components: {
124
      collectCo,
125
      contactChat,
126 120
      baseResult
127 121
    },
128 122
    methods: {

+ 0 - 4
src/pages/h5/views/resource/resource.vue

@ -72,7 +72,6 @@
72 72
73 73
  import previewMagnify from '../components/swiperImg';
74 74
  import beyondTo from '@/components/BeyondTo';
75
  import contactChat from '@/components/ContactChat';
76 75
  import baseResource from '@/components/subTemplate/BaseResource';
77 76
78 77
  export default {
@ -80,7 +79,6 @@
80 79
      return {
81 80
        resourceInfo: '',
82 81
        resourceId: '',
83
        elurl: '',
84 82
        tPosition: 'top-start',
85 83
        owner: {
86 84
          id: '',
@ -93,7 +91,6 @@
93 91
    },
94 92
    created() {
95 93
      this.resourceId = urlParse('id');
96
      this.elurl = window.location.href;
97 94
      this.getResourceInfo();
98 95
      this.getLikeResources();
99 96
      this.getLinkmans();
@ -101,7 +98,6 @@
101 98
    components: {
102 99
      previewMagnify,
103 100
      beyondTo,
104
      contactChat,
105 101
      baseResource
106 102
    },
107 103
    methods: {

+ 0 - 6
src/pages/h5/views/service/service.vue

@ -56,9 +56,7 @@
56 56
  import { urlParse, ImageUrl, defaultSet, strToArr } from '@/libs/util';
57 57
58 58
  import previewMagnify from '../components/swiperImg';
59
  import collectCo from '@/components/CollectCo';
60 59
  import beyondTo from '@/components/BeyondTo';
61
  import contactChat from '@/components/ContactChat';
62 60
63 61
  import baseService from '@/components/subTemplate/BaseService';
64 62
@ -67,7 +65,6 @@
67 65
      return {
68 66
        serveInfo: '',
69 67
        serveId: '',
70
        elurl: '',
71 68
        tPosition: 'top-start',
72 69
        ownerB: {
73 70
          id: '',
@ -80,16 +77,13 @@
80 77
    },
81 78
    created() {
82 79
      this.serveId = urlParse('id');
83
      this.elurl = window.location.href;
84 80
      this.getserveInfo();
85 81
      this.getLikeserves();
86 82
      this.getLinkmans();
87 83
    },
88 84
    components: {
89 85
      previewMagnify,
90
      collectCo,
91 86
      beyondTo,
92
      contactChat,
93 87
      baseService
94 88
    },
95 89
    methods: {

+ 1 - 3
src/pages/org/show.vue

@ -11,7 +11,7 @@
11 11
            <div class="info-tag"><span v-if="orgInfo.orgType === '2'" style="margin-right:10px">{{compType[orgInfo.orgType]}}</span></div>
12 12
            <div class="info-operate">
13 13
              <div class="addr">{{orgInfo.city}}</div>
14
              <shareOut :tUrl="elurl"></shareOut>
14
              <shareOut></shareOut>
15 15
            </div>
16 16
          </div>
17 17
          <el-row class="goSpan" :gutter="10">
@ -181,7 +181,6 @@
181 181
        compType: [],
182 182
        orgInfo: '',
183 183
        orgId: '',
184
        elurl: '',
185 184
        platServices: [],
186 185
        serCount: 0,
187 186
        loadingModalShow: true, // 是否显示按钮
@ -208,7 +207,6 @@
208 207
    },
209 208
    created() {
210 209
      this.orgId = urlParse('id');
211
      this.elurl = window.location.href;
212 210
      this.getDictoryData();
213 211
      this.getorgInfo();
214 212
      this.getOrgWave();

+ 1 - 3
src/pages/product/show.vue

@ -12,7 +12,7 @@
12 12
              <div class="info-tag">简介:{{productInfo.cnt}}</div>
13 13
              <div class="info-operate zoom-operate">
14 14
                <!-- <div class="addr">浏览量 10</div> -->
15
                <shareOut :tUrl="elurl" :tPosition="tPosition"></shareOut>
15
                <shareOut :tPosition="tPosition"></shareOut>
16 16
              </div>
17 17
            </div>
18 18
          </div>
@ -87,14 +87,12 @@
87 87
        productInfo: '',
88 88
        companyId: '',
89 89
        keywords: '',
90
        elurl: '',
91 90
        tPosition: 'top-start',
92 91
        otherProducts: ''
93 92
      };
94 93
    },
95 94
    created() {
96 95
      this.productId = urlParse('id');
97
      this.elurl = window.location.href;
98 96
      this.getproductInfo();
99 97
      this.getProductKeyword();
100 98
    },

+ 1 - 3
src/pages/resource/show.vue

@ -12,7 +12,7 @@
12 12
              <div class="info-tag">应用用途:{{resourceInfo.supportedServices}}</div>
13 13
              <div class="info-operate zoom-operate">
14 14
                <collectCo :watchOptions="{oid: resourceId, type: 4}"></collectCo>
15
                <shareOut :tUrl="elurl" :tPosition="tPosition"></shareOut>
15
                <shareOut :tPosition="tPosition"></shareOut>
16 16
              </div>
17 17
            </div>
18 18
          </div>
@ -115,7 +115,6 @@
115 115
      return {
116 116
        resourceInfo: '',
117 117
        resourceId: '',
118
        elurl: '',
119 118
        tPosition: 'top-start',
120 119
        owner: {
121 120
          id: '',
@ -128,7 +127,6 @@
128 127
    },
129 128
    created() {
130 129
      this.resourceId = urlParse('id');
131
      this.elurl = window.location.href;
132 130
      this.getResourceInfo();
133 131
      this.getLikeResources();
134 132
      this.getLinkmans();

+ 1 - 3
src/pages/result/show.vue

@ -9,7 +9,7 @@
9 9
                <div class="info-tit info-tit-big">{{patentInfo.name}}</div>
10 10
                <div class="info-operate zoom-operate">
11 11
                  <collectCo :watchOptions="{oid: patentId, type: 5}"></collectCo>
12
                  <shareOut :tUrl="elurl"></shareOut>
12
                  <shareOut></shareOut>
13 13
                </div>
14 14
              </div>
15 15
            </div>
@ -122,7 +122,6 @@
122 122
        activeName: 'first',
123 123
        patentInfo: '',
124 124
        patentId: '',
125
        elurl: '',
126 125
        likePatents: '',
127 126
        patentAuthors: '',
128 127
        defaultExpertImg: defaultSet.img.expert
@ -130,7 +129,6 @@
130 129
    },
131 130
    created() {
132 131
      this.patentId = urlParse('id');
133
      this.elurl = window.location.href;
134 132
      this.getPatentInfo();
135 133
      this.getLikePatents();
136 134
      this.getPatentAuthors();

+ 1 - 3
src/pages/serve/show.vue

@ -12,7 +12,7 @@
12 12
              <div class="info-tag">服务内容:{{serveInfo.cnt}}</div>
13 13
              <div class="info-operate zoom-operate">
14 14
                <collectCo :watchOptions="{oid: serveId, type: 3}"></collectCo>
15
                <shareOut :tUrl="elurl" :tPosition="tPosition"></shareOut>
15
                <shareOut :tPosition="tPosition"></shareOut>
16 16
              </div>
17 17
            </div>
18 18
          </div>
@ -103,7 +103,6 @@
103 103
      return {
104 104
        serveInfo: '',
105 105
        serveId: '',
106
        elurl: '',
107 106
        tPosition: 'top-start',
108 107
        ownerB: {
109 108
          id: '',
@ -116,7 +115,6 @@
116 115
    },
117 116
    created() {
118 117
      this.serveId = urlParse('id');
119
      this.elurl = window.location.href;
120 118
      this.getserveInfo();
121 119
      this.getLikeserves();
122 120
      this.getLinkmans();