123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- <template>
- <!-- 外因火灾 -->
- <view class="fire-detail-out">
- <view class="top-area">
- <view class="top-card">
- <view class="card-box" v-for="(item, index) in cardList" :key="index">
- <view class="box-item">
- <view class="box-val">{{ item.value }}</view>
- <view class="box-name">{{ item.name }}</view>
- </view>
- </view>
- </view>
- </view>
- <view class="center-area">
- <view class="bot-title">
- <view style="font-weight: bold">光钎测温系统温度实时监测</view>
- </view>
- <view class="echartBox">
- <LineChart :chartData="option" :style="{ width: '100%' }"></LineChart>
- </view>
- </view>
- <view class="bot-area" v-for="(item, index) in botList" :key="index">
- <view class="bot-title">
- <view style="font-weight: bold">{{ item.title }}</view>
- </view>
- <view class="bot-content">
- <view class="h-table">
- <view class="table-head" v-if="item.title == '烟雾传感器监测'">
- <view
- class="head-item"
- v-for="(items, index) in headList"
- :key="index"
- >{{ items.title }}</view
- >
- </view>
- <view class="table-head" v-else>
- <view
- class="head-item1"
- v-for="(items, index) in headList1"
- :key="index"
- >{{ items.title }}
- </view>
- </view>
- <view class="table-content">
- <view
- class="content-tr"
- v-if="item.title == '烟雾传感器监测'"
- v-for="(ite, ind) in tableDataYw"
- :key="ind"
- >
- <view class="content-td td">{{ ite.strinstallpos }}</view>
- <view class="content-td td1">{{ ite.val }}</view>
- <view class="content-td td2">{{ ite.warnLevel_str }}</view>
- <view class="content-td td3">{{ ite.readTime }}</view>
- </view>
- <view
- class="content-tr"
- v-if="item.title == '一氧化碳传感器监测'"
- v-for="(ite, ind) in tableDataCo"
- :key="ind"
- >
- <view class="content-td td">{{ ite.strinstallpos }}</view>
- <view class="content-td td1">{{ ite.warnLevel_str }}</view>
- <view class="content-td td2">{{ ite.readTime }}</view>
- </view>
- <view
- class="content-tr"
- v-if="item.title == '自动喷淋灭火装置监测'"
- v-for="(ite, ind) in tableDataPl"
- :key="ind"
- >
- <view class="content-td td">{{ ite.strinstallpos }}</view>
- <view class="content-td td1">{{ ite.warnLevel_str }}</view>
- <view class="content-td td2">{{ ite.readTime }}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import api from "@/api/api";
- export default {
- name: "fireDetailOut",
- props: {
- detailWy: {
- type: Object,
- default: () => {
- return {};
- },
- },
- },
- data() {
- return {
- option: "",
- myChart: null,
- xData: [],
- yData: [],
- cardList: [
- { name: "最高温度()", value: 0 },
- { name: "最低温度()", value: 0 },
- { name: "平均温度()", value: 0 },
- { name: "状态", value: "正常" },
- ],
- botList: [
- { title: "烟雾传感器监测" },
- { title: "一氧化碳传感器监测" },
- { title: "自动喷淋灭火装置监测" },
- ],
- headList: [
- { title: "设备名称" },
- { title: "值" },
- { title: "状态" },
- { title: "时间" },
- ],
- headList1: [{ title: "设备名称" }, { title: "状态" }, { title: "时间" }],
- tableDataYw: [],
- tableDataCo: [],
- tableDataPl: [],
- };
- },
- watch: {
- detailWy: {
- handler(newW, oldW) {
- console.log(newW, "newW--------------");
- let that = this;
- that.xData = [];
- that.yData = [];
- if (JSON.stringify(newW) != "{}") {
- if (newW.fiber.length != 0) {
- that.cardList[0].value = newW.fiber[0].readData.fmax;
- that.cardList[1].value = newW.fiber[0].readData.fmin;
- that.cardList[2].value = newW.fiber[0].readData.favg;
- that.cardList[3].value = newW.fiber[0].warnFlag
- ? "存在风险"
- : "正常";
- JSON.parse(newW.fiber[0].readData.fibreTemperature).forEach(
- (el) => {
- that.xData.push(el.pos);
- that.yData.push(el.value);
- this.initChart();
- }
- );
- } else {
- that.cardList[0].value = "--";
- that.cardList[1].value = "--";
- that.cardList[2].value = "--";
- that.cardList[3].value = "正常";
- }
- if (newW.smoke.length != 0) {
- that.tableDataYw = newW.smoke.map((el) => {
- return {
- strinstallpos: el.strinstallpos,
- val: el.readData.smokeval,
- warnLevel_str:
- el.warnLevel_str == "正常" ? "低风险" : el.warnLevel_str,
- readTime: el.readTime,
- };
- });
- } else {
- that.tableDataYw = [];
- }
- if (newW.co.length != 0) {
- that.tableDataCo = newW.co;
- } else {
- that.tableDataCo = [];
- }
- if (newW.spray.length != 0) {
- that.tableDataPl = newW.spray;
- } else {
- that.tableDataPl = [];
- }
- }
- },
- immediate: true,
- deep: true,
- },
- },
- mounted() {},
- methods: {
- //初始化echarts实例
- initChart() {
- this.option = {
- categories: this.xData.slice(-10) || [],
- series: [
- {
- name: "当前温度",
- data: this.yData.slice(-10) || [],
- },
- ],
- };
- },
- },
- computed: {},
- };
- </script>
- <style lang="scss" scoped>
- .fire-detail-out {
- width: 100%;
- height: 100%;
- // box-sizing: border-box;
- // overflow-y: auto;
- .top-area {
- width: 100%;
- padding: 10px;
- background-color: #fff;
- margin-bottom: 2px;
- box-sizing: border-box;
- .top-card {
- width: 100%;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- flex-wrap: wrap;
- .card-box {
- width: calc(50% - 5px);
- height: 60px;
- border-radius: 5px;
- background: linear-gradient(
- to right,
- rgba(55, 135, 254, 0.08),
- rgba(4, 184, 255, 0.08),
- rgba(60, 161, 237, 0.08)
- );
- &:nth-child(1) {
- margin-bottom: 10px;
- margin-right: 5px;
- }
- &:nth-child(2) {
- margin-bottom: 10px;
- margin-left: 5px;
- }
- &:nth-child(3) {
- margin-right: 5px;
- }
- &:nth-child(4) {
- margin-left: 5px;
- }
- }
- .card-box:nth-child(1) .box-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- height: 100%;
- padding: 0px 15px;
- background: url("/static/zgwd.png") no-repeat right;
- background-size: auto 80%;
- }
- .card-box:nth-child(2) .box-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- height: 100%;
- padding: 0px 15px;
- background: url("/static/zdwd.png") no-repeat right;
- background-size: auto 80%;
- }
- .card-box:nth-child(3) .box-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- height: 100%;
- padding: 0px 15px;
- background: url("/static/pjwd.png") no-repeat right;
- background-size: auto 80%;
- }
- .card-box:nth-child(4) .box-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- width: 100%;
- height: 100%;
- padding: 0px 15px;
- background: url("/static/zt.png") no-repeat right;
- background-size: auto 80%;
- }
- }
- .box-item .box-val {
- height: 28px;
- line-height: 28px;
- color: #0eb4fc;
- font-weight: bold;
- }
- .box-item .box-name {
- font-size: 12px;
- }
- }
- .center-area {
- width: 100%;
- padding: 10px;
- background-color: #fff;
- margin-bottom: 2px;
- box-sizing: border-box;
- .bot-title {
- height: 28px;
- margin-bottom: 5px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .echartBox {
- width: 100%;
- height: 220px;
- }
- }
- .bot-area {
- width: 100%;
- padding: 10px;
- background-color: #fff;
- margin-bottom: 2px;
- box-sizing: border-box;
- .bot-title {
- height: 28px;
- margin-bottom: 5px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .bot-content {
- width: 100%;
- height: 240px;
- .h-table {
- width: 100%;
- height: 100%;
- border: 1px solid #0eb4fc;
- .table-head {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 36px;
- border-bottom: 1px solid #0eb4fc;
- .head-item {
- font-size: 12px;
- color: #0eb4fc;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: bold;
- &:nth-child(1) {
- width: 30%;
- }
- &:nth-child(2) {
- width: 20%;
- }
- &:nth-child(3) {
- width: 20%;
- }
- &:nth-child(4) {
- width: 30%;
- }
- }
- .head-item1 {
- font-size: 12px;
- color: #0eb4fc;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: bold;
- &:nth-child(1) {
- width: 30%;
- }
- &:nth-child(2) {
- width: 30%;
- }
- &:nth-child(3) {
- width: 40%;
- }
- }
- }
- .table-content {
- height: calc(100% - 36px);
- overflow-y: auto;
- .content-tr {
- height: 80px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- &:nth-child(odd) {
- background-color: #f3faff;
- }
- &:nth-child(even) {
- background-color: #e8f5ff;
- }
- .content-td {
- height: 100%;
- font-size: 12px;
- display: flex;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- .td {
- width: 30%;
- }
- .td1 {
- width: 20%;
- }
- .td2 {
- width: 20%;
- }
- .td3 {
- width: 30%;
- }
- }
- }
- }
- }
- }
- }
- </style>
|