公司官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

74 lines
1.9 KiB

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'
import './units/rem';
import 'swiper/dist/css/swiper.min.css'
import 'swiper/dist/js/swiper.min'
import axios from 'axios'
import VuePreview from 'vue-preview'
import Meta from 'vue-meta'
Vue.use(Meta,VuePreview)
Vue.config.productionTip = false
Vue.prototype.$axios = axios
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: {
App
},
template: '<App/>',
data: {
keywords: "",
description: "",
title: "",
viewId: 1
},
created() {
this.getSEO();
// 全局配置
router.beforeEach((to, from, next) => {
// Change doc title
if (to.meta.title == '逸旁科技') {
this.viewId = 1;
} else if (to.meta.title == '逸旁科技') {
this.viewId = 2;
}
console.log(this.viewId);
this.getSEO(this.viewId);
next();
})
},
methods: {
//获取seo
getSEO(viewId) {
this.$axios.post("http://gw.x-embers.com/api/index/seo", {
"view_id": this.viewId
}).then((response) => {
let res = response.data;
console.log(res.data);
if (res.status == 1) {
this.keywords = res.data.key_words;
this.description = res.data.description;
this.title = res.data.title;
document.title = this.title || '逸旁科技';
document.title = to.meta.title || '斗麦科技'
document.querySelector('meta[name="Keywords"]').setAttribute('content', this.keywords)
document.querySelector('meta[name="Description"]').setAttribute('content', this.description)
} else {
this.$layer.msg(res.message);
}
}).catch((err) => {
console.log(err);
})
}
},
})