|
@@ -23,7 +23,7 @@
|
|
|
<template slot="title">
|
|
|
{{ item.description }}
|
|
|
</template>
|
|
|
- <div class="info" @click="handleInfo(item)"> {{ item.result }}</div>
|
|
|
+ <div class="info" @click="handleInfo(item)" @click.right.prevent="handleView(item)"> {{ item.result }}</div>
|
|
|
</a-tooltip>
|
|
|
</VueDragResize>
|
|
|
</div>
|
|
@@ -63,19 +63,25 @@
|
|
|
</a-table> -->
|
|
|
</a-drawer>
|
|
|
<BaseChartInfo ref="baseChartInfo" @ok="handleOk"/>
|
|
|
+ <detail ref="detailModal" @ok="handleOk" />
|
|
|
+
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import VueDragResize from 'vue-drag-resize'
|
|
|
import { getSbPositionTree, fetchSbPosition } from '@/api/sb/position'
|
|
|
-import { queryRemoteOpc, updateRemoteOpc } from '@/api/remote/opc'
|
|
|
+import { queryRemoteOpc, updateRemoteOpc,
|
|
|
+ fetchRemoteOpc
|
|
|
+} from '@/api/remote/opc'
|
|
|
+import Detail from '@/views/remote/opc/modules/Detail.vue'
|
|
|
import BaseChartInfo from './modules/BaseChartInfo.vue'
|
|
|
export default {
|
|
|
name: 'Opc',
|
|
|
components: {
|
|
|
VueDragResize,
|
|
|
- BaseChartInfo
|
|
|
+ BaseChartInfo,
|
|
|
+ Detail
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
@@ -163,6 +169,12 @@ export default {
|
|
|
const model = this.$refs.baseChartInfo
|
|
|
model.base(remoteOpc)
|
|
|
},
|
|
|
+ handleView (record) {
|
|
|
+ fetchRemoteOpc({ id: record.id }).then(res => {
|
|
|
+ const modal = this.$refs.detailModal
|
|
|
+ modal.base(res.data)
|
|
|
+ })
|
|
|
+ },
|
|
|
handleOk () {
|
|
|
|
|
|
}
|