提交 8f1555f4 authored 作者: 何宗全's avatar 何宗全

详情回显问题

上级 ca33b510
......@@ -2,7 +2,7 @@
<!-- 巡检管理搜索页 -->
<view class="search-com">
<view class="search-com-left">
<uni-data-select v-if="!hiddenSearch.includes('inspectionType')" class="uni-search-item"
<uni-data-select v-if="!hiddenSearch.includes('inspectionType')" class="uni-search-item bigLong"
v-model="searchFrom.inspectionType" :localdata="inspectArr" @change="(e) => change(e, 'inspectionType')"
placeholder="类型"></uni-data-select>
......@@ -46,12 +46,20 @@
},
{
value: "1",
text: "机房巡检"
text: "机房日常巡检"
},
{
value: "2",
text: "井道巡检"
},
{
value: "3",
text: "机房月度巡检"
},
{
value: "4",
text: "机房年度巡检"
},
],
synchronization: [{
value: "-1",
......@@ -114,6 +122,9 @@
background: #fff;
border-radius: 10px;
border: none !important;
&.bigLong{
width: 240px;
}
}
}
......
......@@ -13,6 +13,20 @@
title="物理环境"
></detailItem>
<!-- 空调系统 -->
<detailItem
v-if="detailsItem.ktxt"
:detailObj="detailsItem.ktxt"
title="空调系统"
></detailItem>
<!-- UPS系统 -->
<detailItem
v-if="detailsItem.upsxt"
:detailObj="detailsItem.upsxt"
title="UPS系统"
></detailItem>
<!-- 安防系统 -->
<detailItem
v-if="detailsItem.afxt"
......@@ -21,6 +35,13 @@
:isShowItem="true"
></detailItem>
<!-- 屏蔽系统 -->
<detailItem
v-if="detailsItem.pbxt"
:detailObj="detailsItem.pbxt"
title="屏蔽系统"
></detailItem>
<!-- 电池状态 -->
<detailItem
v-if="detailsItem.dczt"
......@@ -45,6 +66,27 @@
type="3"
></detailItem>
<!-- 内网监管在线平台 -->
<detailItem
v-if="detailsItem.nwjgzx"
:detailObj="detailsItem.nwjgzx"
title="内网监管在线平台"
></detailItem>
<!-- 专网监管在线平台 -->
<detailItem
v-if="detailsItem.zwjgzx"
:detailObj="detailsItem.zwjgzx"
title="专网监管在线平台"
></detailItem>
<!-- LED屏 -->
<detailItem
v-if="detailsItem.ledp"
:detailObj="detailsItem.ledp"
title="LED屏"
></detailItem>
<!-- 电力系统 -->
<detailItem
v-if="detailsItem.dlxt"
......@@ -77,61 +119,89 @@
:hasLabel="false"
></detailItem>
<!-- 月度巡检 start -->
<!-- 空调系统 -->
<detailItem
v-if="detailsItem.ktxt"
:detailObj="detailsItem.ktxt"
v-if="detailsItem.monthKtxt"
:detailObj="detailsItem.monthKtxt"
title="空调系统"
></detailItem>
<!-- UPS系统 -->
<detailItem
v-if="detailsItem.upsxt"
:detailObj="detailsItem.upsxt"
v-if="detailsItem.monthUpsxt"
:detailObj="detailsItem.monthUpsxt"
title="UPS系统"
></detailItem>
<!-- 冷通道系统 -->
<!-- 供配电系统 -->
<detailItem
v-if="detailsItem.monthGpdxt"
:detailObj="detailsItem.monthGpdxt"
title="供配电系统"
></detailItem>
<!-- 照明系统 -->
<detailItem
v-if="detailsItem.ltdxt"
:detailObj="detailsItem.ltdxt"
title="冷通道系统"
v-if="detailsItem.monthZmxt"
:detailObj="detailsItem.monthZmxt"
title="照明系统"
></detailItem>
<!-- 防雷接地系统 -->
<detailItem
v-if="detailsItem.monthFljdxt"
:detailObj="detailsItem.monthFljdxt"
title="防雷接地系统"
></detailItem>
<!-- 屏蔽系统 -->
<detailItem
v-if="detailsItem.pbxt"
:detailObj="detailsItem.pbxt"
v-if="detailsItem.monthPbxt"
:detailObj="detailsItem.monthPbxt"
title="屏蔽系统"
></detailItem>
<!-- 月度巡检 end -->
<!-- 年度巡检 start -->
<!-- 除湿机 -->
<!-- 防雷接地系统 -->
<detailItem
v-if="detailsItem.csj"
:detailObj="detailsItem.csj"
title="除湿机"
v-if="detailsItem.yearFljdxt"
:detailObj="detailsItem.yearFljdxt"
title="防雷接地系统"
></detailItem>
<!-- 内网监管在线平台 -->
<!-- 屏蔽系统 -->
<detailItem
v-if="detailsItem.nwjgzx"
:detailObj="detailsItem.nwjgzx"
title="内网监管在线平台"
v-if="detailsItem.yearPbxt"
:detailObj="detailsItem.yearPbxt"
title="屏蔽系统"
></detailItem>
<!-- 专网监管在线平台 -->
<!-- 动力环境监控系统 -->
<detailItem
v-if="detailsItem.zwjgzx"
:detailObj="detailsItem.zwjgzx"
title="专网监管在线平台"
v-if="detailsItem.yearDlhjjkxt"
:detailObj="detailsItem.yearDlhjjkxt"
title="动力环境监控系统"
></detailItem>
<!-- LED屏 -->
<!-- 空调系统 -->
<detailItem
v-if="detailsItem.ledp"
:detailObj="detailsItem.ledp"
title="LED屏"
v-if="detailsItem.yearKtxt"
:detailObj="detailsItem.yearKtxt"
title="空调系统"
></detailItem>
<!-- UPS系统 -->
<detailItem
v-if="detailsItem.yearUpsxt"
:detailObj="detailsItem.yearUpsxt"
title="UPS系统"
></detailItem>
<!-- 年度巡检 end -->
</view>
</view>
</template>
......
......@@ -106,16 +106,16 @@ export default {
{
label: "内机、外壳外观破损",
inspectionResult: "",
inspectionResultLable: "",
lableArr: ["有", "无"],
inspectionResultLable: "",
lableArr: ["无", "有"],
conclusion: "",
photos: [],
},
{
label: "面板故障、告警提示",
inspectionResult: "",
inspectionResultLable: "",
lableArr: ["有", "无"],
inspectionResultLable: "",
lableArr: ["无", "有"],
conclusion: "",
photos: [],
},
......
......@@ -154,8 +154,8 @@ export default {
{
label: "异常告警",
inspectionResult: "",
inspectionResultLable: "",
lableArr: ["有", "无"],
inspectionResultLable: "",
lableArr: ["无", "有"],
conclusion: "",
photos: [],
},
......
......@@ -90,8 +90,8 @@ export default {
{
label: "异常告警",
inspectionResult: "",
inspectionResultLable: "",
lableArr: ["有", "无"],
inspectionResultLable: "",
lableArr: ["无", "有"],
conclusion: "",
photos: [],
},
......
......@@ -15,7 +15,7 @@
</uni-nav-bar>
<!-- Tab 操作区域 -->
<view class="module">
<view class="location">{{ location }} {{ inspectionCode }}</view>
<view class="location">{{ location }}</view>
<scroll-view
scroll-x
......
......@@ -188,7 +188,7 @@
this.notSynchronizationList
);
let timeStr = moment().format("yyyy_MM_DD_hh_mm_ss");
let timeStr = moment().format("yyyy_MM_DD_HH_mm_ss");
const JFXJ_DATA = notSynchronizationList
.filter((item) => item.inspectionType == 1)
......
......@@ -1750,17 +1750,6 @@ export const tabsInfo1 = [
"2、监控:有监控的机房需确保监控摄像头‌设备正常运作;监控摄像头外观无破损。",
],
},
// {
// label: "冷通道系统",
// value: "ltdxt",
// status: 0,
// text: [
// "1、实际温度:查看冷通道内温度监测数据,确认温度维持在 18-27℃ 标准区间",
// "2、实际湿度:检查相对湿度,确保数值在 40%-60% 范围内",
// "3、天窗闭合:检查通道顶部天窗闭合状态",
// "4、异常告警:检查显示屏有无历史告警或当前告警记录,如有异常及时记录并处理",
// ],
// },
{
label: "屏蔽系统",
value: "pbxt",
......@@ -1771,14 +1760,6 @@ export const tabsInfo1 = [
"3、滤波器运行:用手背轻触滤波器外壳,感知温度是否正常,无局部过热、烫手情况,听是否有异响",
],
},
// {
// label: "除湿机",
// value: "csj",
// status: 0,
// text: [
// "1、温度、湿度显示:查看除湿机温湿度面板显示是否正常,温度与湿度和实际是否明显偏差",
// ],
// },
{
label: "设备告警",
value: "sbgj",
......@@ -1910,17 +1891,6 @@ export const tabsInfo2 = [
"2、监控:有监控的机房需确保监控摄像头‌设备正常运作;监控摄像头外观无破损。",
],
},
// {
// label: "冷通道系统",
// value: "ltdxt",
// status: 0,
// text: [
// "1、实际温度:查看冷通道内温度监测数据,确认温度维持在 18-27℃ 标准区间",
// "2、实际湿度:检查相对湿度,确保数值在 40%-60% 范围内",
// "3、天窗闭合:检查通道顶部天窗闭合状态",
// "4、异常告警:检查显示屏有无历史告警或当前告警记录,如有异常及时记录并处理",
// ],
// },
{
label: "屏蔽系统",
value: "pbxt",
......@@ -1931,14 +1901,6 @@ export const tabsInfo2 = [
"3、滤波器运行:用手背轻触滤波器外壳,感知温度是否正常,无局部过热、烫手情况,听是否有异响",
],
},
// {
// label: "除湿机",
// value: "csj",
// status: 0,
// text: [
// "1、温度、湿度显示:查看除湿机温湿度面板显示是否正常,温度与湿度和实际是否明显偏差",
// ],
// },
{
label: "电池状态",
value: "dczt",
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论