fix(APP功能调整): 文档中的第7、8、10没有做;第4点需要再核查下ITIC、F47曲线中的可容忍事件、不可容忍事件的显示是否正确。
This commit is contained in:
@@ -37,21 +37,22 @@
|
||||
{{ device.equipmentName }}
|
||||
</text>
|
||||
<text class="uni-card__header-content-subtitle uni-ellipsis">
|
||||
{{ device.mac }}
|
||||
<!-- {{ device.mac }}-->
|
||||
</text>
|
||||
<view class="tagBox">
|
||||
<text class="event-tag" :class="device.runStatus == 1 ? 'lx-tag' : 'zx-tag'">{{
|
||||
device.runStatus == 1 ? '离线' : '在线'
|
||||
}}</text>
|
||||
<text class="event-tag" :class="device.runStatus == 1 ? 'lx-tag' : 'zx-tag'">
|
||||
{{ device.runStatus == 1 ? '离线' : '在线' }}
|
||||
</text>
|
||||
<text
|
||||
class="event-tag"
|
||||
:class="device.devType == 'Direct_Connected_Device' ? 'zl-tag' : 'jc-tag'"
|
||||
>
|
||||
{{ device.devType == 'Direct_Connected_Device' ? '治理设备' : '监测设备' }}
|
||||
</text>
|
||||
<text class="event-tag" :class="device.isPrimaryUser == 1 ? 'z-tag' : 'fx-tag'">{{
|
||||
device.isPrimaryUser == 1 ? '主设备' : '分享设备'
|
||||
}}</text></view
|
||||
<text class="event-tag" :class="device.isPrimaryUser == 1 ? 'z-tag' : 'fx-tag'">
|
||||
{{ device.isPrimaryUser == 1 ? '我的设备' : '他人设备' }}
|
||||
</text>
|
||||
</view
|
||||
>
|
||||
</view>
|
||||
</view>
|
||||
@@ -76,7 +77,7 @@
|
||||
<text>{{ device.process == 2 ? '功能调试' : '出厂调试' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="pinToTop" v-if="device.isTop == 1"> 置顶 </view>
|
||||
<view class="pinToTop" v-if="device.isTop == 1"> 置顶</view>
|
||||
</uni-card>
|
||||
</template>
|
||||
<script>
|
||||
@@ -87,7 +88,8 @@ export default {
|
||||
props: {
|
||||
device: {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
default: () => {
|
||||
},
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
@@ -152,6 +154,7 @@ export default {
|
||||
line-height: 1.2;
|
||||
}
|
||||
}
|
||||
|
||||
.uni-card {
|
||||
/deep/ .uni-card__header-box {
|
||||
display: flex;
|
||||
@@ -160,6 +163,7 @@ export default {
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/deep/ .uni-card__header {
|
||||
display: flex;
|
||||
border-bottom: 2rpx #ebeef5 solid;
|
||||
@@ -169,16 +173,20 @@ export default {
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.uni-card .uni-card__header .uni-card__header-content .uni-card__header-content-title {
|
||||
font-size: 30rpx;
|
||||
color: #3a3a3a;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.uni-card .uni-card__header .uni-card__header-content .uni-card__header-content-subtitle {
|
||||
margin-top: 15rpx;
|
||||
font-size: 24rpx;
|
||||
// margin-top: 5px;
|
||||
color: #666666;
|
||||
}
|
||||
|
||||
.uni-card .uni-card__header .uni-card__header-avatar .uni-card__header-avatar-image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
@@ -186,6 +194,7 @@ export default {
|
||||
border-radius: 5px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.uni-card .uni-card__header .uni-card__header-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -193,10 +202,12 @@ export default {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tagBox {
|
||||
display: flex;
|
||||
gap: 15rpx;
|
||||
}
|
||||
|
||||
.event-icon {
|
||||
position: relative;
|
||||
width: 100rpx;
|
||||
@@ -207,6 +218,7 @@ export default {
|
||||
align-items: center;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
|
||||
.event-tag {
|
||||
font-size: 22rpx;
|
||||
padding: 2rpx 10rpx;
|
||||
@@ -220,28 +232,34 @@ export default {
|
||||
background-color: #10b98120;
|
||||
color: #10b981;
|
||||
}
|
||||
|
||||
.lx-tag {
|
||||
background-color: #ff3b3020;
|
||||
color: #ff3b30;
|
||||
}
|
||||
|
||||
.z-tag {
|
||||
background-color: #2563eb20;
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.fx-tag {
|
||||
background-color: #90939920;
|
||||
color: #909399;
|
||||
}
|
||||
|
||||
.zl-tag {
|
||||
// background-color: #007aff20;
|
||||
// color: #007aff;
|
||||
background-color: #007aff20;
|
||||
color: #007aff;
|
||||
}
|
||||
|
||||
.jc-tag {
|
||||
background-color: #007aff20;
|
||||
color: #007aff;
|
||||
}
|
||||
|
||||
.pinToTop {
|
||||
background-color: $uni-theme-color;
|
||||
width: 100rpx;
|
||||
|
||||
Reference in New Issue
Block a user