This commit is contained in:
2023-05-18 11:14:03 +08:00
parent 948cc07a9c
commit 61d55ac797
26 changed files with 41 additions and 41 deletions

View File

@@ -54,6 +54,7 @@
import { tableHeight } from '@/utils/index'
import { pageProcess } from '@/api/qualityManagement'
import { timeFormatter } from '@/utils'
import { getParamList } from '@/api/processManagement'
const tableProps = [
{
prop: 'unitName',
@@ -185,10 +186,16 @@ export default {
console.log(val)
if (val.type === 'processParameters') {
this.processParametersVisible = true
this.getProcess()
} else if (val.type === 'deviceParameters') {
this.deviceParametersVisible = true
}
},
getProcess() {
getParamList().then((res) => {
console.log(res)
})
},
handleCloseProcess() {},
handleCloseDevice() {}
}