Browse Source

浏览页面增加浏览量

lipengtao 6 years ago
parent
commit
a97bcffff9

+ 1 - 0
config/dev.env.js

@ -6,6 +6,7 @@ module.exports = merge(prodEnv, {
6 6
  NODE_ENV: '"development"',
7 7
  ENV_CONFIG:'"dev"',
8 8
  BASE_API: '""',
9
  PLAT_ID: '"F5DEA8EDB12E421A9FC4B701BB6176A6"',
9 10
  KX_API: '"http://192.168.3.233:81"',
10 11
  HT_API: '"http://192.168.3.233:83"',
11 12
})

+ 1 - 0
config/prod.env.js

@ -3,6 +3,7 @@ module.exports = {
3 3
  NODE_ENV: '"production"',
4 4
  ENV_CONFIG:'"prod"',
5 5
  BASE_API: '""',
6
  PLAT_ID: '"F5DEA8EDB12E421A9FC4B701BB6176A6"',
6 7
  // KX_API: '"http://www.ekexiu.com"',
7 8
  // HT_API: '"http://www.xttjpt.cn:88"'
8 9
  KX_API: '"http://192.168.3.233:81"',

+ 15 - 3
src/components/pageView/index.vue

@ -11,6 +11,8 @@
11 11
    data() {
12 12
      return {
13 13
        HT_API: process.env.HT_API,
14
        KX_API: process.env.KX_API,
15
        platform: process.env.PLAT_ID,
14 16
        pageCount: 0,
15 17
        logImg: ''
16 18
      }
@ -23,15 +25,25 @@
23 25
    },
24 26
    methods: {
25 27
      wlog(obj) {
26
        this.logImg = this.HT_API + '/ajax/img?__lt=' + obj.tn + '&id=' + obj.id + '&src=' + obj.src + '&_t=' + (new Date().getTime())
28
        if (obj.tn === 'ware' || obj.tn === 'resource' || obj.tn === 'ppatent') {
29
          this.logImg = this.KX_API + '/ajax/img?__lt=' + obj.tn + '&id=' + obj.id + '&src=' + obj.src + '&platform=' + this.platform + '&_t=' + (new Date().getTime())
30
        } else {
31
          this.logImg = this.HT_API + '/ajax/img?__lt=' + obj.tn + '&id=' + obj.id + '&src=' + obj.src + '&_t=' + (new Date().getTime())
32
        } 
27 33
      },
28 34
      queryPageView() {
29 35
        var that = this
30
        axios.get(that.HT_API + '/ajax/log/qo/sum',{
31
          params: {
36
        let obj = {
32 37
            tn: that.pageObj.tn,
33 38
            id: that.pageObj.id
34 39
          }
40
        let url = that.HT_API;
41
        if (obj.tn === 'ware' || obj.tn === 'resource' || obj.tn === 'ppatent') {
42
          obj.platform = this.platform
43
          url = this.KX_API
44
        }
45
        axios.get( url + '/ajax/log/qo/sum',{
46
          params: obj
35 47
        }).then(res => {
36 48
          if (res.data.success) {
37 49
            that.pageCount = res.data.data

+ 4 - 2
src/pages/h5/views/Result/result.vue

@ -7,6 +7,7 @@
7 7
            <div class="headcon-box detail-box">
8 8
              <div class="show-info">
9 9
                <div class="info-tit info-tit-big">{{patentInfo.name}}</div>
10
                <pageView v-if="patentId" :pageObj="{ tn: 'ppatent', id: patentId, src: '2', noShow: true}"></pageView>
10 11
              </div>
11 12
            </div>
12 13
          </div>
@ -97,7 +98,7 @@
97 98
98 99
  import baseResult from '@/components/subTemplate/BaseResult';
99 100
  import queryBase from '@/libs/queryBase';
100
101
  import pageView from '@/components/pageView';
101 102
  export default {
102 103
    data() {
103 104
      return {
@ -117,7 +118,8 @@
117 118
      this.getPatentAuthors();
118 119
    },
119 120
    components: {
120
      baseResult
121
      baseResult,
122
      pageView
121 123
    },
122 124
    methods: {
123 125
      getPatentInfo() {

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

@ -14,6 +14,7 @@
14 14
              </div>
15 15
        </div>
16 16
        <div class="content-wrapper">
17
            <pageView v-if="resourceId" :pageObj="{ tn: 'resource', id: resourceId, src: '2', noShow: true}"></pageView>
17 18
            <beyondTo v-if="owner.id" :ownerId="owner.id" :ownerType="owner.type" :styFlag="true"></beyondTo>
18 19
        </div>
19 20
        
@ -77,7 +78,7 @@
77 78
  import previewMagnify from '../components/swiperImg';
78 79
  import beyondTo from '@/components/BeyondTo';
79 80
  import baseResource from '@/components/subTemplate/BaseResource';
80
81
  import pageView from '@/components/pageView';
81 82
  export default {
82 83
    data() {
83 84
      return {
@ -102,7 +103,8 @@
102 103
    components: {
103 104
      previewMagnify,
104 105
      beyondTo,
105
      baseResource
106
      baseResource,
107
      pageView
106 108
    },
107 109
    methods: {
108 110
      getResourceInfo() {

+ 4 - 1
src/pages/h5/views/service/service.vue

@ -8,6 +8,7 @@
8 8
        <div class="content-wrapper">
9 9
          <div class="show-info">
10 10
            <div class="info-tit info-tit-big" style="font-size: 20px; line-height:30px; margin-bottom: 4px;">{{serveInfo.name}}</div>
11
            <pageView v-if="serveId" :pageObj="{ tn: 'ware', id: serveId, src: '2', noShow: true}"></pageView>
11 12
            <div class="info-tag">内容:{{serveInfo.cnt}}</div>
12 13
          </div>
13 14
        </div>
@ -63,6 +64,7 @@
63 64
  import beyondTo from '@/components/BeyondTo';
64 65
65 66
  import baseService from '@/components/subTemplate/BaseService';
67
  import pageView from '@/components/pageView';
66 68
67 69
  export default {
68 70
    data() {
@ -88,7 +90,8 @@
88 90
    components: {
89 91
      previewMagnify,
90 92
      beyondTo,
91
      baseService
93
      baseService,
94
      pageView
92 95
    },
93 96
    methods: {
94 97
      getserveInfo() {

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

@ -11,6 +11,7 @@
11 11
              <div class="info-tit info-tit-big">{{resourceInfo.resourceName}}</div>
12 12
              <div class="info-tag">应用用途:{{resourceInfo.supportedServices}}</div>
13 13
              <div class="info-operate zoom-operate">
14
                <pageView v-if="resourceId" :pageObj="{ tn: 'resource', id: resourceId, src: '1'}"></pageView>
14 15
                <collectCo :watchOptions="{oid: resourceId, type: 4}"></collectCo>
15 16
                <shareOut :tPosition="tPosition"></shareOut>
16 17
              </div>
@ -107,6 +108,7 @@
107 108
  import collectCo from '@/components/CollectCo';
108 109
  import beyondTo from '@/components/BeyondTo';
109 110
  import contactChat from '@/components/ContactChat';
111
  import pageView from '@/components/pageView';
110 112
111 113
  import baseResource from '@/components/subTemplate/BaseResource';
112 114
@ -137,7 +139,8 @@
137 139
      collectCo,
138 140
      beyondTo,
139 141
      contactChat,
140
      baseResource
142
      baseResource,
143
      pageView
141 144
    },
142 145
    methods: {
143 146
      getResourceInfo() {

+ 5 - 2
src/pages/result/show.vue

@ -8,7 +8,8 @@
8 8
              <div class="show-info">
9 9
                <div class="info-tit info-tit-big">{{patentInfo.name}}</div>
10 10
                <div class="info-operate zoom-operate">
11
                  <collectCo :watchOptions="{oid: patentId, type: 5}"></collectCo>
11
                  <pageView v-if="patentId" :pageObj="{ tn: 'ppatent', id: patentId, src: '1'}"></pageView>
12
                  <collectCo :watchOptions="{oid: patentId, type: 5}" style="margin-left:10px;"></collectCo>
12 13
                  <shareOut></shareOut>
13 14
                </div>
14 15
              </div>
@ -113,6 +114,7 @@
113 114
114 115
  import baseResult from '@/components/subTemplate/BaseResult';
115 116
  import queryBase from '@/libs/queryBase';
117
  import pageView from '@/components/pageView';
116 118
117 119
  export default {
118 120
    data() {
@ -137,7 +139,8 @@
137 139
      shareOut,
138 140
      collectCo,
139 141
      contactChat,
140
      baseResult
142
      baseResult,
143
      pageView
141 144
    },
142 145
    methods: {
143 146
      getPatentInfo() {

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

@ -11,6 +11,7 @@
11 11
              <div class="info-tit info-tit-big">{{serveInfo.name}}</div>
12 12
              <div class="info-tag">服务内容:{{serveInfo.cnt}}</div>
13 13
              <div class="info-operate zoom-operate">
14
                <pageView v-if="serveId" :pageObj="{ tn: 'ware', id: serveId, src: '1'}"></pageView>
14 15
                <collectCo :watchOptions="{oid: serveId, type: 3}"></collectCo>
15 16
                <shareOut :tPosition="tPosition"></shareOut>
16 17
              </div>
@ -97,6 +98,7 @@
97 98
  import contactChat from '@/components/ContactChat';
98 99
99 100
  import baseService from '@/components/subTemplate/BaseService';
101
  import pageView from '@/components/pageView';
100 102
101 103
  export default {
102 104
    data() {
@ -125,7 +127,8 @@
125 127
      collectCo,
126 128
      beyondTo,
127 129
      contactChat,
128
      baseService
130
      baseService,
131
      pageView
129 132
    },
130 133
    methods: {
131 134
      getserveInfo() {