绘制并联调icd文件管理页面
绘制并联调终端型号管理页面
This commit is contained in:
@@ -1632,6 +1632,7 @@
|
||||
defineOptions({
|
||||
name: 'device-boot/deviceter'
|
||||
})
|
||||
import { getDevTypeList } from '@/api/device-boot/modelManage'
|
||||
import 'splitpanes/dist/splitpanes.css'
|
||||
import { Splitpanes, Pane } from 'splitpanes'
|
||||
import { LocationInformation } from '@element-plus/icons-vue'
|
||||
@@ -1685,7 +1686,7 @@ const comTypeStatusArr = dictData.getBasicData('Front_Type')
|
||||
const factoryArr = dictData.getBasicData('Dev_Manufacturers')
|
||||
const voltageLevelArr = dictData.getBasicData('Dev_Voltage_Stand')
|
||||
|
||||
const typeArr = dictData.getBasicData('Dev_Type')
|
||||
const typeArr = ref(dictData.getBasicData('Dev_Type'))
|
||||
const industryTypeArr = dictData.getBasicData('Business_Type')
|
||||
const loadTypeArr = dictData.getBasicData('Interference_Source')
|
||||
const optionarr = ref([
|
||||
@@ -2120,7 +2121,7 @@ const add = () => {
|
||||
}
|
||||
|
||||
deviceBODetail.value.manufacturer = factoryArr[0].id
|
||||
deviceBODetail.value.devType = typeArr[0].value
|
||||
deviceBODetail.value.devType = typeArr.value[0].value
|
||||
deviceBODetail.value.frontType = comTypeStatusArr[0].value
|
||||
deviceBODetail.value.nodeId = affiliatiedFrontArr.value[0].id
|
||||
busBarDetail.value.scale = voltageLevelArr[0].id
|
||||
@@ -2973,10 +2974,15 @@ onMounted(() => {
|
||||
size.value = Math.round((180 / dom.offsetHeight) * 100)
|
||||
}
|
||||
if (VITE_FLAG) {
|
||||
|
||||
getYwZtSubstation({ orgId: '' }).then(res => {
|
||||
powerStationList.value = res.data
|
||||
})
|
||||
}
|
||||
}else{
|
||||
getDevTypeList().then(res => {
|
||||
typeArr.value = res.data
|
||||
})
|
||||
}
|
||||
category()
|
||||
})
|
||||
area()
|
||||
|
||||
Reference in New Issue
Block a user