Browse Source

document title

lyn7568 6 years ago
parent
commit
1d62e96920

+ 2 - 2
config/prod.env.js

@ -3,6 +3,6 @@ module.exports = {
3 3
  NODE_ENV: '"production"',
4 4
  ENV_CONFIG:'"prod"',
5 5
  BASE_API: '""',
6
  // KX_API: '"https://www.ekexiu.com"'
7
  KX_API: '"http://192.168.3.233:81"'
6
  KX_API: '"http://www.ekexiu.com"'
7
  // KX_API: '"http://192.168.3.233:81"'
8 8
}

+ 1 - 0
src/components/CityPicker/index.vue

@ -114,6 +114,7 @@ export default {
114 114
      const si = this.addrCode.substring(0, 4) + '00'
115 115
      if (this.provinceArr) {
116 116
        var p = this.provinceArr[s]
117
        this.cityArr = p.children
117 118
        this.sheng = p.value
118 119
        this.shi = p.children[si].value
119 120
      }

+ 1 - 0
src/pages/center/center.js

@ -11,6 +11,7 @@ new Vue({
11 11
  store: store,
12 12
  render: h => h(App),
13 13
  created () {
14
    document.title = '个人中心-' + PLAT.info.title
14 15
    router.afterEach((to, from, next) => {
15 16
      window.scrollTo(0, 0);
16 17
    });

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

@ -212,6 +212,7 @@
212 212
            if (obj.logo === '') {
213 213
              obj.logo = defaultSet.img.org
214 214
            }
215
            document.title = obj.name + '-' + PLAT.info.title
215 216
            this.orgInfo = obj
216 217
          };
217 218
        });

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

@ -97,6 +97,7 @@
97 97
            if ($info.modifyTime) {
98 98
              $info.modifyTime = commenTime($info.modifyTime, true)
99 99
            }
100
            document.title = $info.title + '-' + PLAT.info.title
100 101
            this.contentInfo = $info;
101 102
          };
102 103
        });

+ 1 - 0
src/pages/demand/show.vue

@ -174,6 +174,7 @@
174 174
        }, (res) => {
175 175
          if (res.success) {
176 176
            var $info = res.data;
177
            document.title = $info.title + '-' + PLAT.info.title
177 178
            this.demandInfo = $info;
178 179
          };
179 180
        });

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

@ -313,6 +313,7 @@
313 313
                $info.resAreas.push($info.researchAreas[i].caption);
314 314
              }
315 315
            }
316
            document.title = $info.name + '-' + PLAT.info.title
316 317
            this.expertInfo = $info;
317 318
          };
318 319
        });

+ 3 - 0
src/pages/index/permission.js

@ -3,6 +3,9 @@ import store from '@/store'
3 3
import { Message } from 'element-ui'
4 4
5 5
router.beforeEach((to, from, next) => {
6
  if (to.meta.title) {
7
    document.title = to.meta.title + '-' + PLAT.info.title
8
  }
6 9
  /* 判断该路由是否需要登录权限 */
7 10
  if (to.matched.some(record => record.meta.requireAuth)) {
8 11
    // 是否登录

+ 2 - 2
src/pages/org/show.vue

@ -85,7 +85,7 @@
85 85
                  <span>机构详情</span>
86 86
                </div>
87 87
                <div class="content">
88
                  <el-row :gutter="10">
88
                  <el-row :gutter="6">
89 89
                    <el-col :span="12" v-if="orgInfo.name">
90 90
                      <el-col :span="6">机构名称:</el-col>
91 91
                      <el-col :span="18">{{orgInfo.name}}</el-col>
@ -279,7 +279,7 @@
279 279
            if ($info.foundTime) {
280 280
              $info.foundTime = TimeTr($info.foundTime);
281 281
            }
282
282
            document.title = ($info.forShort ? $info.forShort : $info.name) + '-' + PLAT.info.title
283 283
            this.orgInfo = $info;
284 284
          };
285 285
        });

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

@ -113,6 +113,7 @@
113 113
            if ($info.img) {
114 114
              $info.img = strToArr($info.img);
115 115
            }
116
            document.title = $info.name + '-' + PLAT.info.title
116 117
            this.companyId = $info.companyId;
117 118
            this.productInfo = $info;
118 119
            this.getOtherProducts($info.companyId);

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

@ -174,6 +174,7 @@
174 174
              };
175 175
              that.getHotResources({ 'orgId': $info.orgId }, true)
176 176
            }
177
            document.title = $info.resourceName + '-' + PLAT.info.title
177 178
            that.resourceInfo = $info;
178 179
          };
179 180
        });

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

@ -157,6 +157,7 @@
157 157
            if ($info.pubDay) {
158 158
              $info.pubDay = TimeTr($info.pubDay);
159 159
            }
160
            document.title = $info.name + '-' + PLAT.info.title
160 161
            this.patentInfo = $info;
161 162
          };
162 163
        });

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

@ -157,6 +157,7 @@
157 157
              }
158 158
              this.getHotserves($info.category, $info.owner)
159 159
            }
160
            document.title = $info.name + '-' + PLAT.info.title
160 161
            this.serveInfo = $info
161 162
          };
162 163
        });