安全管理-堆叠

This commit is contained in:
hh
2021-12-20 17:35:45 +08:00
parent e806ecbf54
commit 845c790070
4 changed files with 538 additions and 596 deletions

View File

@ -111,9 +111,25 @@ export default {
],
}
},
mounted() {},
mounted() {
this.$nextTick(() => {
this.getData()
})
},
beforeDestroy() {},
methods: {},
methods: {
getData() {
this.request({
url: '/hx/securityManagement/dangerousWork',
method: 'get',
params: {type :1}
}).then(res => {
if (200 == res.code) {
console.log(res)
}
})
}
},
}
</script>