质量管理添加flv.js

This commit is contained in:
熊丽君
2021-12-21 14:31:02 +08:00
parent 845c790070
commit 3bed560dea
9 changed files with 514 additions and 536 deletions

View File

@ -62,11 +62,24 @@ export default {
progressBar,
},
data() {
return {}
return {
dataInfo: {},
}
},
mounted() {
this.getData()
},
mounted() {},
beforeDestroy() {},
methods: {},
methods: {
getData() {
this.request({
url: '/hx/qualityAssurance/getQualityManage',
method: 'get',
}).then(({ data }) => {
this.dataInfo = data
})
},
},
}
</script>