Compare commits

..

No commits in common. "3092d08a92cc36c206bca60ef70bbfc23157593c" and "1928aeaa61c3985b5ef0448cb265fbf70fb6e9ab" have entirely different histories.

4 changed files with 8 additions and 70 deletions

View File

@ -1047,7 +1047,7 @@
}
.sensorSet .sensor-view .right .right-top .input-sel {
margin: 15px 0 30px;
margin: 30px 0;
}
.sensorSet .sensor-view .right .right-top .input-sel > .title {
@ -1065,7 +1065,6 @@
cursor: pointer;
white-space: nowrap;
margin-right: 30px;
padding: 0 0 15px 0;
}
.sensorSet .sensor-view .right .right-top .right-sel > div > .no-sel {
@ -1099,22 +1098,6 @@
margin-right: 30px;
}
.sensorSet.sensorSet-con .right-sel {
width: 100%;
flex-wrap: wrap;
}
.sensorSet.sensorSet-con .right-sel .sensor-type-div {
margin-bottom: 0;
background: unset;
border: none;
height: auto;
}
.sensorSet.sensorSet-con .right-sel .sensor-type-div .sensor-sel > div {
padding-left: 0;
}
.sensorSet .sensor-type .sensor-title {
font-size: 20px;
font-family: Microsoft YaHei;
@ -1123,10 +1106,6 @@
padding: 20px 0;
}
.sensorSet .sensor-type .sensor-title .sensor-sel > div {
padding-left: 0;
}
.sensorSet .sensor-type .sensor-type-div {
width: 100%;
height: 66px;

File diff suppressed because one or more lines are too long

View File

@ -1104,7 +1104,7 @@
border-bottom: 1px solid rgba(0, 180, 255, 0.35);
.input-sel {
margin: 15px 0 30px;
margin: 30px 0;
>.title {
@ -1115,14 +1115,14 @@
.right-sel {
display: flex;
align-items: center;
>div {
display: flex;
align-items: center;
cursor: pointer;
white-space: nowrap;
margin-right: 30px;
padding:0 0 15px 0;
>.no-sel {
margin-right: 10px;
width: 35px;
@ -1159,23 +1159,6 @@
}
}
&.sensorSet-con{
.right-sel{
width: 100%;
flex-wrap: wrap;
.sensor-type-div{
margin-bottom: 0;
background: unset;
border: none;
height: auto;
.sensor-sel{
>div{
padding-left: 0;
}
}
}
}
}
.sensor-type {
.sensor-title {
font-size: 20px;
@ -1183,11 +1166,6 @@
font-weight: bold;
color: #FFFFFF;
padding: 20px 0;
.sensor-sel{
>div{
padding-left: 0;
}
}
}
.sensor-type-div {

View File

@ -1,5 +1,5 @@
<template>
<div class="irrigateSet sensorSet sensorSet-con">
<div class="irrigateSet sensorSet">
<div class="table-title">
<img src="../../assets/image/sensor.png" alt=""> 传感器配置界面
</div>
@ -20,25 +20,6 @@
<div v-else class="sel"></div>
有效性
</div>
<div class="sensor-type">
<template v-for="item, index in openTypeList" >
<div class="sensor-type-div" v-if="active==index" >
<div class="sensor-sel">
<div>
<div @click="changeTypeOpen(index, '0')" :class="item == '1' ? 'no-sel' : 'sel'">
</div>
485通讯类型的传感器
</div>
<div>
<div @click="changeTypeOpen(index, '1')" :class="item == '0' ? 'no-sel' : 'sel'">
</div>
4-20ma模拟量类型的传感器
</div>
</div>
</div>
</template>
</div>
</div>
<div class="input-sel">
<div class="title">专感器类型</div>
@ -100,7 +81,7 @@
</div>
</div>
<!-- <div class="sensor-type">
<div class="sensor-type">
<div class="sensor-title">通道输入信号类型</div>
<div class="sensor-type-div" v-for="item, index in openTypeList" :key="index">
<div class="name">{{ index + 1 }}通道</div>
@ -115,7 +96,7 @@
</div>
</div>
</div>
</div> -->
</div>
</div>
</template>
<script>