修改 变电站 名称
This commit is contained in:
@@ -33,7 +33,7 @@
|
||||
<vxe-column field="zc" title="暂降(骤升)幅值(%)" sortable></vxe-column>
|
||||
<vxe-column field="zc" title="暂降原因" sortable></vxe-column>
|
||||
<vxe-column field="zc" title="严重度" sortable></vxe-column>
|
||||
<vxe-column title="操作" >
|
||||
<vxe-column title="操作">
|
||||
<template #default="{ row }">
|
||||
<el-button type="text" size="small" link>查看波形</el-button>
|
||||
</template>
|
||||
@@ -72,9 +72,13 @@ const header = ref()
|
||||
const distributionData: any = ref([])
|
||||
|
||||
const tableStore = new TableStore({
|
||||
url: '/event-boot/area/getAreaLineDetail',
|
||||
url: '/event-boot/voltageRideThrough/view',
|
||||
method: 'POST',
|
||||
column: [],
|
||||
beforeSearchFun: () => {
|
||||
tableStore.table.params.areaId =tableStore.table.params.deptIndex
|
||||
tableStore.table.params.type =tableStore.table.params.radio
|
||||
},
|
||||
loadCallback: () => {
|
||||
titleA.value = tableStore.table.params.statisticalType.name
|
||||
header.value.areaRef.change()
|
||||
|
||||
@@ -65,11 +65,11 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="变电站:" prop="substation">
|
||||
<el-form-item label="厂站名称:" prop="substation">
|
||||
<el-input
|
||||
v-model="form.substation"
|
||||
autocomplete="off"
|
||||
placeholder="请输入变电站"
|
||||
placeholder="请输入厂站名称"
|
||||
:disabled="openType == 'detail'"
|
||||
/>
|
||||
</el-form-item>
|
||||
|
||||
@@ -146,7 +146,7 @@ const tableStore = new TableStore({
|
||||
},
|
||||
{
|
||||
field: 'substation',
|
||||
title: '变电站',
|
||||
title: '厂站名称',
|
||||
minWidth: 100,
|
||||
formatter: (row: any) => {
|
||||
row.cellValue = row.cellValue ? row.cellValue : '/'
|
||||
|
||||
@@ -122,7 +122,7 @@ const tableStore = new TableStore({
|
||||
3: '退运'
|
||||
}
|
||||
},
|
||||
{ field: 'substation', title: '变电站', minWidth: 100 },
|
||||
{ field: 'substation', title: '厂站名称', minWidth: 100 },
|
||||
{
|
||||
field: 'status',
|
||||
title: '流程状态',
|
||||
|
||||
@@ -85,8 +85,8 @@
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item for="-" label="变电站:" prop="substation">
|
||||
<el-input v-model="form.substation" autocomplete="off" placeholder="请输入变电站" />
|
||||
<el-form-item for="-" label="厂站名称:" prop="substation">
|
||||
<el-input v-model="form.substation" autocomplete="off" placeholder="请输入厂站名称" />
|
||||
</el-form-item>
|
||||
<el-form-item
|
||||
for="-"
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
})?.label
|
||||
}}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="变电站">
|
||||
<el-descriptions-item label="厂站名称">
|
||||
{{ detailData.substation }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="工程名">
|
||||
|
||||
@@ -88,7 +88,7 @@ const tableStore = new TableStore({
|
||||
},
|
||||
{
|
||||
field: 'substation',
|
||||
title: '变电站',
|
||||
title: '厂站名称',
|
||||
minWidth: 100,
|
||||
formatter: (row: any) => {
|
||||
row.cellValue = row.cellValue ? row.cellValue : '/'
|
||||
|
||||
@@ -94,7 +94,7 @@ const tableStore = new TableStore({
|
||||
3: '退运'
|
||||
}
|
||||
},
|
||||
{ field: 'substation', title: '变电站', minWidth: 100 },
|
||||
{ field: 'substation', title: '厂站名称', minWidth: 100 },
|
||||
{
|
||||
field: 'createBy',
|
||||
title: '填报人',
|
||||
|
||||
@@ -91,7 +91,7 @@ const tableStore = new TableStore({
|
||||
},
|
||||
{
|
||||
field: 'substation',
|
||||
title: '变电站',
|
||||
title: '厂站名称',
|
||||
minWidth: 100,
|
||||
formatter: (row: any) => {
|
||||
return row.cellValue ? row.cellValue : '/'
|
||||
|
||||
@@ -702,6 +702,7 @@ const terminalModelList = [
|
||||
const substationList: any = ref([])
|
||||
//字典获取通讯类型
|
||||
const frontTypeList = dictData.getBasicData('Front_Type', ['CLD', '61850'])
|
||||
console.log("🚀 ~ frontTypeList:", frontTypeList)
|
||||
//定义通讯状态下拉框数据
|
||||
const communicationStatusList = [
|
||||
{
|
||||
|
||||
@@ -48,6 +48,12 @@
|
||||
<el-descriptions-item label="检测终端名称">
|
||||
{{ detailData.supervisionTempDeviceReport?.monitoringTerminalName }}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="通讯类型">
|
||||
{{
|
||||
frontTypeList.filter(item => item.id == detailData.supervisionTempDeviceReport?.frontType)[0]?.name ||
|
||||
detailData.supervisionTempDeviceReport?.frontType
|
||||
}}
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="电压互感器类型">
|
||||
{{
|
||||
voltageTransformerTypeList.find(item => {
|
||||
@@ -293,6 +299,7 @@ const { query } = useRoute() // 查询参数
|
||||
const props = defineProps({
|
||||
id: propTypes.string.def(undefined)
|
||||
})
|
||||
|
||||
const detailLoading = ref(false) // 表单的加载中
|
||||
const detailData = ref<any>({}) // 详情数据
|
||||
const queryId = query.id as unknown as string // 从 URL 传递过来的 id 编号
|
||||
@@ -318,6 +325,7 @@ const userStateList = reactive([
|
||||
])
|
||||
const dictData = useDictData()
|
||||
//字典获取所在地市
|
||||
const frontTypeList = dictData.getBasicData('Front_Type', ['CLD', '61850'])
|
||||
const areaOptionList = dictData.getBasicData('jibei_area')
|
||||
//定义监测终端安装位置下拉框数据
|
||||
const monitoringDeviceInstallationPositionList = [
|
||||
|
||||
Reference in New Issue
Block a user