commit
This commit is contained in:
@@ -180,10 +180,10 @@ export default {
|
|||||||
path: '/nonConfomity',
|
path: '/nonConfomity',
|
||||||
menuId: '0119abd677e0204e061eb0f0b8cafda0'
|
menuId: '0119abd677e0204e061eb0f0b8cafda0'
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// title: '工作组',
|
title: '工作组',
|
||||||
// path: '/workingGroup',
|
path: '/workingGroup',
|
||||||
// },
|
},
|
||||||
// {
|
// {
|
||||||
// title: '备案产品标准库',
|
// title: '备案产品标准库',
|
||||||
// path: '/enterpriseStandardFiling',
|
// path: '/enterpriseStandardFiling',
|
||||||
|
|||||||
@@ -19,12 +19,25 @@
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
linkList: [],
|
linkList: [],
|
||||||
|
width: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
watch: {},
|
watch: {
|
||||||
|
width(val) {
|
||||||
|
console.log(val);
|
||||||
|
}
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getLink();
|
this.getLink();
|
||||||
|
this.width = document.getElementById("link").offsetWidth
|
||||||
|
let self = this
|
||||||
|
this.screenWidth = document.body.clientWidth
|
||||||
|
window.onresize = () => {
|
||||||
|
return (() => {
|
||||||
|
console.log(document.body.clientWidth);
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 跳转链接
|
// 跳转链接
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user