This commit is contained in:
zhutianqi
2021-11-04 17:54:43 +08:00
parent 0fe7cd8384
commit 9e848f0fdd
3 changed files with 20 additions and 6 deletions
+4 -4
View File
@@ -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',
+14 -1
View File
@@ -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