|
@@ -1,12 +1,31 @@
|
|
|
<template>
|
|
|
- <a-card :bordered="false" v-show="visible" class="card" :title="modalTitle">
|
|
|
- <a-row :gutter="48" slot="extra">
|
|
|
- <a-col :md="48" :sm="48">
|
|
|
- <span class="table-page-search-submitButtons" style="float: right">
|
|
|
- <a-button style="margin-left: 8px" type="default" @click="handleCancel()">返回</a-button>
|
|
|
- </span>
|
|
|
- </a-col>
|
|
|
- </a-row>
|
|
|
+ <a-modal
|
|
|
+ :title="modalTitle"
|
|
|
+ :width="1200"
|
|
|
+ :visible="visible"
|
|
|
+ :confirmLoading="confirmLoading"
|
|
|
+ class="ant-modal2"
|
|
|
+ @cancel="handleCancel"
|
|
|
+ :footer="null"
|
|
|
+ >
|
|
|
+ <div class="table-operator" style="margin-bottom: 8px;">
|
|
|
+ <a-row>
|
|
|
+ <a-col :md="16">
|
|
|
+ <a-date-picker
|
|
|
+ :format="BaseTool.Date.PICKER_NORM_DATE_PATTERN"
|
|
|
+ @change="onChange"
|
|
|
+ v-model="searchDay"/>
|
|
|
+ <a-button
|
|
|
+ style="margin-left: 8px"
|
|
|
+ v-if="$auth('remote-opc-logs-export')"
|
|
|
+ type="primary"
|
|
|
+ icon="download"
|
|
|
+ @click="doExport">导出
|
|
|
+ </a-button>
|
|
|
+ </a-col>
|
|
|
+ </a-row>
|
|
|
+ </div>
|
|
|
+ <a-divider>详情</a-divider>
|
|
|
<detail-list title="" :col="2">
|
|
|
<detail-list-item term="点位id">{{ model.sbId }}</detail-list-item>
|
|
|
<detail-list-item term="点位名称">{{ model.sbName }}</detail-list-item>
|
|
@@ -25,9 +44,11 @@
|
|
|
<detail-list-item term="更新人">{{ model.updateUserId }}</detail-list-item>
|
|
|
<detail-list-item term="更新日期">{{ model.updateTime }}</detail-list-item>-->
|
|
|
</detail-list>
|
|
|
+ <a-divider orientation="left">趋势图</a-divider>
|
|
|
<div style="width: 100%">
|
|
|
<div id="container"></div>
|
|
|
</div>
|
|
|
+ <a-divider orientation="left">数组明细</a-divider>
|
|
|
<div>
|
|
|
<a-table
|
|
|
bordered
|
|
@@ -39,11 +60,12 @@
|
|
|
|
|
|
</a-table>
|
|
|
</div>
|
|
|
- </a-card>
|
|
|
+ </a-modal>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { Chart } from '@antv/g2'
|
|
|
+import { exportRemoteOpcLogOneDay, queryRemoteOpcLogByDTO } from '@/api/remote/opc-log'
|
|
|
import DetailList from '@/components/tools/DetailList'
|
|
|
const DetailListItem = DetailList.Item
|
|
|
|
|
@@ -59,6 +81,7 @@ export default {
|
|
|
confirmLoading: false,
|
|
|
mdl: {},
|
|
|
modalTitle: null,
|
|
|
+ searchDay: null,
|
|
|
map: {},
|
|
|
visible: false,
|
|
|
// 下拉框map
|
|
@@ -100,12 +123,28 @@ export default {
|
|
|
this.map = this.DictCache.getLabelByValueMapByType(this.DictCache.TYPE.REMOTE_OPC)
|
|
|
},
|
|
|
methods: {
|
|
|
- base (record) {
|
|
|
+ base (record, param) {
|
|
|
this.visible = true
|
|
|
this.modalTitle = '详情'
|
|
|
- this.model = record
|
|
|
- this.chartsData = JSON.parse(record.dataJsonStr)
|
|
|
- this.getCharts(this.chartsData)
|
|
|
+ if (!this.BaseTool.Object.isBlank(record)) {
|
|
|
+ this.model = record
|
|
|
+ if (this.model.dataJsonStr == null) {
|
|
|
+ this.$message.info('无数据')
|
|
|
+ }
|
|
|
+ this.chartsData = JSON.parse(this.model.dataJsonStr)
|
|
|
+ this.getCharts(this.chartsData)
|
|
|
+ } else {
|
|
|
+ queryRemoteOpcLogByDTO(param).then((res) => {
|
|
|
+ this.model = res.data
|
|
|
+ if (this.model.dataJsonStr == null) {
|
|
|
+ this.$message.info('无数据')
|
|
|
+ }
|
|
|
+ this.chartsData = JSON.parse(this.model.dataJsonStr)
|
|
|
+ this.getCharts(this.chartsData)
|
|
|
+ }).catch(() => {
|
|
|
+ this.confirmLoading = false
|
|
|
+ })
|
|
|
+ }
|
|
|
},
|
|
|
getCharts (data) {
|
|
|
this.chart && this.chart.destroy()// 防止点击搜索按钮新增一个
|
|
@@ -151,6 +190,28 @@ export default {
|
|
|
this.chart.point().position('time*value')
|
|
|
this.chart.render()
|
|
|
},
|
|
|
+ onChange (date, dateString) {
|
|
|
+ const param = {}
|
|
|
+ param.positionNum = this.model.positionNum
|
|
|
+ param.year = date.format(this.BaseTool.Date.PICKER_NORM_YEAR)
|
|
|
+ param.month = date.format(this.BaseTool.Date.PICKER_NORM_MONTH_ONE)
|
|
|
+ param.day = date.format(this.BaseTool.Date.PICKER_NORM_DAY_ONE)
|
|
|
+ queryRemoteOpcLogByDTO(param).then((res) => {
|
|
|
+ this.model = res.data
|
|
|
+ if (this.model.dataJsonStr == null) {
|
|
|
+ this.$message.info('无数据')
|
|
|
+ }
|
|
|
+ this.chartsData = JSON.parse(this.model.dataJsonStr)
|
|
|
+ this.getCharts(this.chartsData)
|
|
|
+ }).catch(() => {
|
|
|
+ this.confirmLoading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ doExport () {
|
|
|
+ exportRemoteOpcLogOneDay(this.model).then(file => {
|
|
|
+ this.BaseTool.UPLOAD.downLoadExportExcel(file)
|
|
|
+ })
|
|
|
+ },
|
|
|
handleCancel () {
|
|
|
this.visible = false
|
|
|
this.confirmLoading = false
|