This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-fronted/src/components/common/mixin/beforeMeta2d.js

33 lines
608 B
JavaScript
Raw Normal View History

2023-02-16 16:33:20 +08:00
export default {
data () {
return {
topoData: {},
querysArray: {},
meta2dType: ''
}
},
mounted () {
if (this.meta2dType === 'project') {
setTimeout(() => {
const res = {
topo: {},
elements: [],
timeType: 4
}
this.topoData = res.topo
this.querysArray = res.elements
})
} else {
setTimeout(() => {
const res = {
topo: {},
elements: [],
timeType: 4
}
this.topoData = res.topo
this.querysArray = res.elements
})
}
}
}