场景模型测试工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

410 lines
10 KiB

2 years ago
<template>
<div class="app-container home">
2 years ago
<el-button type="primary" :icon="Download" @click="drawerIshow = true">策略导入</el-button>
2 years ago
<div class="dev_control_wrapper">
2 years ago
2 years ago
<div class="dev_control_item" v-for="item in deviceArr" :key="item.deviceId">
2 years ago
<div class="item_header">
2 years ago
<span>{{ item.deviceName}}</span>
2 years ago
<el-switch v-model="item.deviceRunstatus" @change="handleDevChangeFun(item.deviceId,item.deviceRunstatus)" class="switch" style="--el-switch-on-color: #13ce66; --el-switch-off-color: #dddddd"/>
2 years ago
</div>
<div class="item_bottom">
<div class="item_bottom_img">
2 years ago
<img :src="item.photoUrl" alt="">
2 years ago
</div>
<div class="item_bottom_form">
<el-form :model="form1">
2 years ago
<el-form-item label="当前状态:">
<span :class="{'green':item.deviceRunstatus === true,'red':item.deviceRunstatus === false}">
{{ item.deviceRunstatus === true ? '开启' : '关闭'}}
</span>
</el-form-item>
<el-form-item label="进水温度:"><el-input v-model="form1.intemp" /></el-form-item>
<el-form-item label="出水温度:"><el-input v-model="form1.outtemp" /></el-form-item>
<!-- <el-form-item label="温度:" ><el-input v-model="form1.temp" /></el-form-item>-->
<div class="submit" @click="getSetTemperatureFun(item)">确定</div>
2 years ago
2 years ago
</el-form>
</div>
</div>
</div>
2 years ago
2 years ago
</div>
<div class="dev_control_table">
<div class="control_header"><span>调控日志</span></div>
<div class="control_table">
2 years ago
<el-table :data="controlLogList" height="305px">
2 years ago
<el-table-column label="序号" align="center" width="50"/>
2 years ago
<el-table-column label="设备名称" align="center" prop="deviceName"/>
<el-table-column label="操作内容" align="center" prop="controlValue" width="700"/>
<el-table-column label="操作时间" align="center" prop="createTime"/>
<el-table-column label="操作人员" align="center" prop="createBy"/>
<el-table-column label="操作结果" align="center" prop="controlResult"></el-table-column>
2 years ago
</el-table>
2 years ago
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="[5, 10, 20, 50]"
:small="small"
:disabled="disabled"
:background="background"
layout="total, sizes, prev, pager, next, jumper"
2 years ago
:total="tableLength"
2 years ago
@size-change="handleSizeChange"
@current-change="handleCurrentChange"/>
2 years ago
</div>
</div>
2 years ago
<el-drawer v-model="drawerIshow">
<template #header><h4>策略导入</h4></template>
<template #default>
2 years ago
<el-radio v-for="(item,index) in celueList" :key="index" class="celueBox" v-model="radio" :label="item.sceneName" size="large">
<span style="font-weight: bold; display: inline-block; margin-bottom: 20px;">{{ item.sceneName }}</span>
<div class="celueItem" v-for="items in item.data" :key="items.device_id">
<span>{{ items.device_name }}</span>
<div class="itemsValue">
<span class="txtInput" v-for="itemsValue in items.value" :key="itemsValue.sceneKey">
<span class="txt">{{ itemsValue.sceneContext }}</span>
<input type="text" :value="itemsValue.sceneValue" disabled/>
</span>
</div>
</div>
</el-radio>
2 years ago
</template>
<template #footer>
<div style="flex: auto">
<el-button type="primary" @click="confirmClick">执行</el-button>
</div>
</template>
</el-drawer>
2 years ago
</div>
</template>
<script setup name="Index">
2 years ago
import { Download } from '@element-plus/icons-vue' //element字体图标
import { ref,reactive,onMounted } from 'vue'
2 years ago
import { ElMessageBox,ElMessage } from 'element-plus'
import { getDevice,getControlLogList,getStrategyList,getStartAndStop,getSetTemperature } from '@/api/control/manual'
2 years ago
2 years ago
onMounted(()=>{
getDeviceFun();
2 years ago
getControlLogListFun();
2 years ago
getStrategyListFun()
2 years ago
})
/** 获取所有设备*/
const deviceArr = ref([])
2 years ago
// const isShow1 = ref(true)
// const isShow2 = ref(true)
2 years ago
function getDeviceFun(){
getDevice().then((res)=>{
console.log(res.data)
deviceArr.value = res.data
2 years ago
for(let i = 0;i < res.data.length;i++){
// if(res.data[i].deviceModel == '发热电缆'){
// isShow1.value = false
2 years ago
// isShow2.value = true
// }
2 years ago
}
2 years ago
})
}
2 years ago
2 years ago
/** 设备控制处理*/
2 years ago
const form1 = reactive({
intemp:'',
outtemp:'',
2 years ago
now:''
2 years ago
})
2 years ago
/** 数据表格处理*/
2 years ago
const controlLogList = ref([])
const tableLength = ref()
2 years ago
const currentPage = ref(1)
const pageSize = ref(5)
const small = ref(false)
const background = ref(false)
const disabled = ref(false)
const handleSizeChange = (val) => {
2 years ago
getControlLogListFun()
2 years ago
}
const handleCurrentChange = (val) => {
2 years ago
getControlLogListFun()
2 years ago
}
2 years ago
function getControlLogListFun(){
getControlLogList({
"deviceId": null,
"deviceName": null,
"deviceSn": null,
"controlKey": null,
"controlValue": null,
"controlResult": null,
"controlContext": null,
"pageNum": currentPage.value,
"pageSize": pageSize.value
}).then((res)=>{
tableLength.value = res.total
controlLogList.value = res.rows
for(let i = 0;i < res.rows.length;i++){
if(res.rows[i].controlResult == 1){
res.rows[i].controlResult = '控制中'
}else if(res.rows[i].controlResult == 2){
res.rows[i].controlResult = '控制成功'
}else if(res.rows[i].controlResult == 3){
res.rows[i].controlResult = '控制失败'
}
}
2 years ago
})
}
2 years ago
2 years ago
/** 策略导入处理*/
2 years ago
const drawerIshow = ref(false)
const radio = ref()
2 years ago
const celueList = ref([])
function getStrategyListFun(){
getStrategyList().then((res)=>{
celueList.value = res.data
console.log(res.data)
})
}
2 years ago
function confirmClick() {
ElMessageBox.confirm(`确定执行 ${radio.value} ?`).then(() => {
drawerIshow.value = false;
2 years ago
console.log('确定')
})
2 years ago
}
2 years ago
/** 控制设备启停*/
2 years ago
function handleDevChangeFun(id,sta){
console.log(id,sta)
//1开启,2关闭
sta = sta === true ? 1 : 2
getStartAndStop({
"deviceId": id,
"runStatus": sta
}).then((res)=>{
console.log(res.data)
if(res.code == 200){
ElMessage({
type:'success',
message:'控制成功!'
})
}
})
2 years ago
getControlLogListFun()
2 years ago
}
/** 设置温度*/
function getSetTemperatureFun(item){
console.log(item)
// getSetTemperature({
// "deviceId":100,
// "data":[
// {
// "controlKey":"intemp",
// "controlValue":"28"
// },
// {
// "controlKey":"outtemp",
// "controlValue":"90"
// }]
// }).then((res)=>{
// console.log(res)
// })
}
2 years ago
</script>
<style scoped lang="scss">
2 years ago
.home {
height: calc(100vh - 118px);
.dev_control_wrapper{
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
height: 50%;
overflow-y: auto;
.dev_control_item{
2 years ago
width: 24%;
2 years ago
height: 47%;
margin-right: 12px;
margin-bottom: 12px;
background-color: #2F3D8A;
overflow: hidden;
&:nth-child(4n){
margin-right: 0px;
}
.item_header{
width: 100%;
height: 20%;
background-color: #374590;
padding: 0 10px;
span{
font-size: 16px;
font-weight: bold;
line-height: 37px;
}
.switch{
float: right;
line-height: 37px;
height: 37px;
}
}
.item_bottom{
display: flex;
width: 100%;
height: 80%;
.item_bottom_img{
width: 40%;
height: 100%;
//border: 1px solid red;
padding: 10px;
img{
width: 100%;
height: 100%;
}
}
.item_bottom_form{
width: 60%;
height: 100%;
//border: 1px solid red;
padding: 0 10px 0 0;
.green{
2 years ago
color: #14FF00;
2 years ago
}
.red{
2 years ago
color: red;
2 years ago
}
.submit{
padding: 3px 15px;
border-radius: 2px;
background-color: #2F8EED;
float: right;
margin-top: 8px;
cursor: pointer;
&:hover{
background-color: #5ba2f3;
}
}
}
}
}
}
.dev_control_table{
width: 100%;
height: 50%;
background-color: #2F3D8A;
.control_header{
width: 100%;
height: 10%;
background-color: #374590;
padding: 0 10px;
span{
font-size: 16px;
font-weight: bold;
line-height: 37px;
}
}
.control_table{
2 years ago
position: relative;
2 years ago
width: 100%;
height: 90%;
}
}
}
2 years ago
2 years ago
.celueBox{
width: 100%;
height: auto;
padding: 10px;
margin-bottom: 12px;
border: 1px solid #ddd;
&:hover{
border: 1px solid #409EFF;
}
.celueItem{
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
padding: 10px 0;
border-bottom: 1px solid #dddddd50;
.itemsValue{
display: flex;
justify-content: flex-start;
flex-wrap: nowrap;
width: 80%;
.txtInput{
margin-right: 10px;
.txt{
display: inline-block;
width: 80px;
text-align: right;
}
input{
padding: 3px 3px;
width: 100px;
border: 1px solid #ddd;
}
}
}
}
}
.success {
color: green;
}
.failure {
color: red;
}
2 years ago
::v-deep .el-button{
border-radius: 2px;
margin-bottom: 12px;
}
::v-deep .el-switch__core .el-switch__action{
top: 1px;
width: 17px;
height: 17px;
}
::v-deep .el-form-item--default{
margin-bottom: 3px;
}
::v-deep .el-input__inner{
2 years ago
color: #606266;
2 years ago
}
2 years ago
::v-deep .el-pagination{
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}
::v-deep .el-pagination__total{
color: #f3ffff;
}
::v-deep .el-pagination__jump{
color: #f3ffff;
}
::v-deep .el-pager{
margin: 0 5px;
}
2 years ago
::v-deep .el-table--fit{
background-color: #2D3D88;
}
2 years ago
::v-deep .el-radio{
display: inline-block;
}
::v-deep .el-drawer__body{
overflow-x: hidden;
overflow-y: auto;
}
2 years ago
</style>