|
@@ -3,7 +3,7 @@
|
|
|
<div class="composite-left-box">
|
|
|
<basicTree :treeData="treeData" @selectChange="selectChange"></basicTree>
|
|
|
</div>
|
|
|
- <!-- 光钎,束管 -->
|
|
|
+ <!-- 光纤,束管 -->
|
|
|
<div class="composite-right-box">
|
|
|
<div style="width:100%;height:100%"
|
|
|
v-if="echartDataGx.xData.length != 0 || echartDataGx.yData.length != 0 || echartDataGx.yData1.length != 0 || card3List.length != 0 || echartData.xData.length != 0 || echartData.yData.length != 0 || echartData.yData1.length != 0">
|
|
@@ -13,12 +13,12 @@
|
|
|
<div :class="flagShow == 'gx' ? 'gx-center-box1' : 'gx-center-box'"
|
|
|
v-if="flagShow == 'gx' || flagShow == 'all'">
|
|
|
<div class="gx-center-item-title">
|
|
|
- <div class="item-left">光钎测温系统温度实时监测</div>
|
|
|
+ <div class="item-left">光纤测温系统温度实时监测</div>
|
|
|
<a-select style="width: 180px" :options="gxSelectList" size="small" placeholder="请选择"
|
|
|
v-model:value="gxSelect" allowClear @change="pointChange"></a-select>
|
|
|
</div>
|
|
|
<div class="gx-center-item-content">
|
|
|
- <basicEchartLine :gridV="gridV" :echartData="echartDataGx"></basicEchartLine>
|
|
|
+ <basicEchartLine :gridV="gridV" :markLine="markLine1" :echartData="echartDataGx"></basicEchartLine>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -37,7 +37,7 @@
|
|
|
<a-range-picker v-model:value="TimeRange" :format="dateFormat" @change="onDataChange" />
|
|
|
</div>
|
|
|
<div class="content-area">
|
|
|
- <basicEchartLine :gridV="gridV" :echartData="echartData"></basicEchartLine>
|
|
|
+ <basicEchartLine :gridV="gridV1" :markLine="markLine2" :echartData="echartData"></basicEchartLine>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
@@ -70,13 +70,13 @@ let card3List = reactive<any[]>([])
|
|
|
|
|
|
//数据随便写的,不符合实际情况,因为懒得改
|
|
|
const treeData = reactive<any[]>([
|
|
|
- // { name: "81203综放工作面", value: "111", id: '1', pid: null },
|
|
|
+ // { name: "81203综采工作面", value: "111", id: '1', pid: null },
|
|
|
// { name: "束管监测系统", value: "222", id: '1-2', pid: '1' },
|
|
|
- // { name: "81203综放工作面", value: "458", id: '2', pid: null },
|
|
|
+ // { name: "81203综采工作面", value: "458", id: '2', pid: null },
|
|
|
// { name: "束管监测系统", value: "445", id: '2-1', pid: '2' },
|
|
|
// { name: "束管监测系统", value: "456", id: '2-2', pid: '2' },
|
|
|
// { name: "束管监测系统", value: "647", id: '2-3', pid: '2' },
|
|
|
- // { name: "81203综放工作面", value: "189", id: '3', pid: null },
|
|
|
+ // { name: "81203综采工作面", value: "189", id: '3', pid: null },
|
|
|
// { name: "束管监测系统", value: "664", id: '3-1', pid: '3' },
|
|
|
// { name: "束管监测系统", value: "652", id: '3-2', pid: '3' },
|
|
|
// { name: "束管监测系统", value: "732", id: '3-3', pid: '3' },
|
|
@@ -87,13 +87,41 @@ let gasType = ref('')
|
|
|
let pointCode = ref('')
|
|
|
let flagShow = ref('')
|
|
|
let dateFormat = ref('YYYY-MM-DD');
|
|
|
-let TimeRange = ref<[Dayjs, Dayjs]>([dayjs(dayjs(new Date().getTime()).format('YYYY-MM-DD'), dateFormat.value), dayjs(dayjs(new Date().getTime()+ 24 * 60 * 60 * 1000).format('YYYY-MM-DD'), dateFormat.value)])
|
|
|
+let TimeRange = ref<[Dayjs, Dayjs]>([dayjs(dayjs(new Date().getTime()).format('YYYY-MM-DD'), dateFormat.value), dayjs(dayjs(new Date().getTime() + 24 * 60 * 60 * 1000).format('YYYY-MM-DD'), dateFormat.value)])
|
|
|
let gridV = reactive({
|
|
|
+ top: '13%',
|
|
|
+ left: '3%',
|
|
|
+ right: '3%',
|
|
|
+ bottom: '10%',
|
|
|
+})
|
|
|
+let gridV1 = reactive({
|
|
|
top: '8%',
|
|
|
left: '3%',
|
|
|
right: '3%',
|
|
|
bottom: '10%',
|
|
|
})
|
|
|
+let markLine1 = reactive({ //最大值和最小值
|
|
|
+ data: [{
|
|
|
+ name: '预警值40°C',
|
|
|
+ yAxis: 40,
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ position: 'insideEndTop',
|
|
|
+ formatter: '预警值40°C',
|
|
|
+ color: '#FF5D1D',
|
|
|
+ fontSize: 12,
|
|
|
+ },
|
|
|
+ lineStyle: {
|
|
|
+ normal: {
|
|
|
+ width: 1,
|
|
|
+ color: "#FF5D1D",
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ },
|
|
|
+ ]
|
|
|
+})
|
|
|
+let markLine2=reactive({})
|
|
|
|
|
|
let echartData = reactive(
|
|
|
{
|
|
@@ -135,7 +163,7 @@ function getMonitor() {
|
|
|
|
|
|
//时间选项切换
|
|
|
function onDataChange(value, dateString) {
|
|
|
- TimeRange.value = [ value[0], value[1]]
|
|
|
+ TimeRange.value = [value[0], value[1]]
|
|
|
}
|
|
|
|
|
|
//获取左侧菜单树
|
|
@@ -155,14 +183,14 @@ async function getFireAreaInfos() {
|
|
|
cardContentList[2]['val'] = treeData[0].infoTypeTwo.aveTemperature
|
|
|
if (treeData[0]['gxcwCnt'] > 0 && treeData[0]['sgjcCnt'] > 0) {
|
|
|
flagShow.value = 'all'
|
|
|
- //获取工作面光钎条数及测点编号
|
|
|
+ //获取工作面光纤条数及测点编号
|
|
|
getInfosByAreaCodeList()
|
|
|
//获取工作面束管测点编号列表
|
|
|
getSgjcPointInfoList()
|
|
|
|
|
|
} else if (treeData[0]['gxcwCnt'] > 0) {
|
|
|
flagShow.value = 'gx'
|
|
|
- //获取工作面光钎条数及测点编号
|
|
|
+ //获取工作面光纤条数及测点编号
|
|
|
getInfosByAreaCodeList()
|
|
|
} else if (treeData[0]['sgjcCnt'] > 0) {
|
|
|
flagShow.value = 'sg'
|
|
@@ -185,13 +213,13 @@ function selectChange(treeNode) {
|
|
|
let sgjcCnt = treeData.filter((s) => s.name == treeNode.node.dataRef.title)[0]['sgjcCnt']
|
|
|
if (gxcwCnt > 0 && sgjcCnt > 0) {
|
|
|
flagShow.value = 'all'
|
|
|
- //获取工作面光钎条数及测点编号
|
|
|
+ //获取工作面光纤条数及测点编号
|
|
|
getInfosByAreaCodeList()
|
|
|
//获取工作面束管测点编号列表
|
|
|
getSgjcPointInfoList()
|
|
|
} else if (gxcwCnt > 0) {
|
|
|
flagShow.value = 'gx'
|
|
|
- //获取工作面光钎条数及测点编号
|
|
|
+ //获取工作面光纤条数及测点编号
|
|
|
getInfosByAreaCodeList()
|
|
|
|
|
|
} else if (sgjcCnt > 0) {
|
|
@@ -201,7 +229,7 @@ function selectChange(treeNode) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-//获取工作面光钎条数及测点编号
|
|
|
+//获取工作面光纤条数及测点编号
|
|
|
async function getInfosByAreaCodeList() {
|
|
|
let res = await getInfosByAreaCode({ areaCode: areaCode.value })
|
|
|
if (res.length != 0) {
|
|
@@ -213,16 +241,16 @@ async function getInfosByAreaCodeList() {
|
|
|
})
|
|
|
})
|
|
|
gxSelect.value = gxSelect.value ? gxSelect.value : res[0]['pointCode']
|
|
|
- //获取光钎测温图表数据
|
|
|
+ //获取光纤测温图表数据
|
|
|
getGxcwHistoryDataByPointCodeList()
|
|
|
}
|
|
|
}
|
|
|
-//工作面光钎测温测点编号选项切换
|
|
|
+//工作面光纤测温测点编号选项切换
|
|
|
function pointChange(val) {
|
|
|
gxSelect.value = val
|
|
|
getGxcwHistoryDataByPointCodeList()
|
|
|
}
|
|
|
-//获取光钎测温图表数据
|
|
|
+//获取光纤测温图表数据
|
|
|
async function getGxcwHistoryDataByPointCodeList() {
|
|
|
let res = await getGxcwHistoryDataByPointCode({ pointCode: gxSelect.value })
|
|
|
echartDataGx.xData.length = 0
|
|
@@ -262,7 +290,7 @@ async function getSgjcRealDataByPointCodeList() {
|
|
|
if (res.length != 0) {
|
|
|
card3List.length = 0
|
|
|
res.forEach(el => {
|
|
|
- card3List.push({ title: el.type, ndLabel: '浓度', ndVal: el.currentValue, tLabel: '时间', tVal: el.time, aLabel: '位置', aVal: el.position,unit:el.unit||'' })
|
|
|
+ card3List.push({ title: el.type, ndLabel: '浓度', ndVal: el.currentValue, tLabel: '时间', tVal: el.time, aLabel: '位置', aVal: el.position, unit: el.unit || '' })
|
|
|
})
|
|
|
gasType.value = gasType.value ? gasType.value : card3List[0]['title']
|
|
|
//获取束管曲线数据
|
|
@@ -276,9 +304,9 @@ function toggleChange(title) {
|
|
|
}
|
|
|
//获取束管曲线数据
|
|
|
async function getSgjcHistoryDataList() {
|
|
|
- let startTime=`${dayjs(TimeRange.value[0]).format('YYYY-MM-DD')} 00:00:00`
|
|
|
- let endTime=`${dayjs(TimeRange.value[1]).format('YYYY-MM-DD')} 00:00:00`
|
|
|
- let res = await getSgjcHistoryData({ pointCode: pointCode.value, type: gasType.value, startTime: startTime, endTime:endTime })
|
|
|
+ let startTime = `${dayjs(TimeRange.value[0]).format('YYYY-MM-DD')} 00:00:00`
|
|
|
+ let endTime = `${dayjs(TimeRange.value[1]).format('YYYY-MM-DD')} 00:00:00`
|
|
|
+ let res = await getSgjcHistoryData({ pointCode: pointCode.value, type: gasType.value, startTime: startTime, endTime: endTime })
|
|
|
echartData.xData.length = 0
|
|
|
echartData.yData.length = 0
|
|
|
echartData.yData1.length = 0
|