Commit 5d923820 authored by 王亚晖's avatar 王亚晖

创建调度管理菜单文件

parent 88b2f6e5
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
</el-card> </el-card>
<el-table <el-table
ref="tableRef" ref="tableRef"
v-model:checked="checkedRows" v-model:checked="selectedRows"
show-header="true" show-header="true"
:height="tableHeight" :height="tableHeight"
:cell-style="setCellStyle" :cell-style="setCellStyle"
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
const enterpriseId = store.getters.getEnterpriseId(); const enterpriseId = store.getters.getEnterpriseId();
const props = defineProps(['activeRadio']); const props = defineProps(['activeRadio']);
const tableRef = ref(null); const tableRef = ref(null);
const checkedRows = ref([]); const selectedRows = ref([]);
const isLoading= ref(true); const isLoading= ref(true);
const visibleData = ref([]); const visibleData = ref([]);
const tableHeight = ref(500); const tableHeight = ref(500);
...@@ -109,7 +109,7 @@ ...@@ -109,7 +109,7 @@
if(enterpriseId === "9BCA54BC-8F27-4849-8D7D-50C5099E1949".toLowerCase()){ if(enterpriseId === "9BCA54BC-8F27-4849-8D7D-50C5099E1949".toLowerCase()){
type = 1; type = 1;
} }
var result = await http.post('/api/remote/TransferStatus',{"SupplyType":type, "DeviceId": props.activeRadio}); var result = await http.post('/api/remote/GetTransferStatus',{"SupplyType":type, "DeviceId": props.activeRadio});
console.log(result); console.log(result);
visibleData.value = result.data; visibleData.value = result.data;
isLoading.value = false; isLoading.value = false;
...@@ -117,12 +117,22 @@ ...@@ -117,12 +117,22 @@
initData(); initData();
async function ReadStatus(){ async function ReadStatus(){
if(selectedRows){
selectedRows.value.forEach(item =>{
ReadStation(item);
})
}
} }
async function WriteStatus(){ async function WriteStatus(){
} }
async function ReadStation(value){
var result = await http.post('', value);
var jobj = result.data;
console.log(jobj);
}
onMounted(() => { onMounted(() => {
setContentHeight(); setContentHeight();
window.addEventListener('resize', setContentHeight); window.addEventListener('resize', setContentHeight);
......
<template>
生产与结算数据分析表
</template>
\ No newline at end of file
<template>
年度参数管理
</template>
\ No newline at end of file
<template>
锅炉参数配置
</template>
\ No newline at end of file
<template>
能源消耗
</template>
\ No newline at end of file
<template>
瞬时热量对比配置
</template>
\ No newline at end of file
<template>
天气工况
</template>
\ No newline at end of file
<template>
气象干预
</template>
\ No newline at end of file
<template>
风力配置管理
</template>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment