|
@@ -71,6 +71,18 @@
|
|
icon="download"
|
|
icon="download"
|
|
@click="doAddAll">全部采集
|
|
@click="doAddAll">全部采集
|
|
</a-button>
|
|
</a-button>
|
|
|
|
+<!-- <a-button
|
|
|
|
+ style="margin-left: 8px"
|
|
|
|
+ type="primary"
|
|
|
|
+ icon="download"
|
|
|
|
+ @click="doTestAdd">测试写入
|
|
|
|
+ </a-button>
|
|
|
|
+ <a-button
|
|
|
|
+ style="margin-left: 8px"
|
|
|
|
+ type="primary"
|
|
|
|
+ icon="download"
|
|
|
|
+ @click="doTestSelect">测试查询
|
|
|
|
+ </a-button>-->
|
|
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('remote-opcs-del')">
|
|
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('remote-opcs-del')">
|
|
<a-menu slot="overlay">
|
|
<a-menu slot="overlay">
|
|
<a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
<a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
@@ -159,6 +171,7 @@ import {
|
|
} from '@/api/remote/opc'
|
|
} from '@/api/remote/opc'
|
|
|
|
|
|
import ImportFormAdd from './modules/ImportFormAdd'
|
|
import ImportFormAdd from './modules/ImportFormAdd'
|
|
|
|
+import { addInfluxDB, queryInfluxDB } from '@/api/influxDB/influxDB'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: 'RemoteOpcList',
|
|
name: 'RemoteOpcList',
|
|
@@ -368,6 +381,24 @@ export default {
|
|
this.$message.info('已添加,100秒后自动采集')
|
|
this.$message.info('已添加,100秒后自动采集')
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
+ doTestAdd () {
|
|
|
|
+ const parameter = {
|
|
|
|
+ ...this.queryParam,
|
|
|
|
+ sbIds: this.selectedRowKeys
|
|
|
|
+ }
|
|
|
|
+ addInfluxDB(parameter).then(res => {
|
|
|
|
+ this.$message.info('已添加')
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ doTestSelect () {
|
|
|
|
+ const parameter = {
|
|
|
|
+ ...this.queryParam,
|
|
|
|
+ sbIds: this.selectedRowKeys
|
|
|
|
+ }
|
|
|
|
+ queryInfluxDB(parameter).then(res => {
|
|
|
|
+ this.$message.info('已查询')
|
|
|
|
+ })
|
|
|
|
+ },
|
|
handleEdit (record) {
|
|
handleEdit (record) {
|
|
fetchRemoteOpc({ id: record.id }).then(res => {
|
|
fetchRemoteOpc({ id: record.id }).then(res => {
|
|
const modal = this.$refs.baseModal
|
|
const modal = this.$refs.baseModal
|