|
@@ -46,12 +46,16 @@ var globalHead = new Vue({
|
|
|
articleType: '',
|
|
|
topMenuList:[],
|
|
|
TabList:[
|
|
|
- {name:'产品',link:'/product/produce.html'},
|
|
|
- {name:'仪器',link:'/product/instrument.html'}
|
|
|
+ {name:'产品',link:'/product/instrument.html',value:'1'},
|
|
|
+ {name:'仪器',link:'/product/instrument.html',value:'2'}
|
|
|
],
|
|
|
- NavsList:[]
|
|
|
+ NavsList:[],
|
|
|
+ currenIndex:1
|
|
|
},
|
|
|
methods: {
|
|
|
+ changeline:function(tab){
|
|
|
+ this.currenIndex=tab.value;
|
|
|
+ },
|
|
|
GetNavigationMenu :function(){//获取顶部导航分类
|
|
|
var _self = this;
|
|
|
PublicApi.GetNavigationMenu({},function(response){
|