|
@@ -64,6 +64,13 @@
|
|
|
<a-icon type="upload" />
|
|
|
新增导入
|
|
|
</a-button>
|
|
|
+ <a-button
|
|
|
+ style="margin-left: 8px"
|
|
|
+ v-if="$auth('remote-opcs-add')"
|
|
|
+ type="primary"
|
|
|
+ icon="download"
|
|
|
+ @click="doAddAll">全部采集
|
|
|
+ </a-button>
|
|
|
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0 && $auth('remote-opcs-del')">
|
|
|
<a-menu slot="overlay">
|
|
|
<a-popconfirm title="是否要删除所选数据?" @confirm="batchDelete()">
|
|
@@ -146,6 +153,7 @@ import {
|
|
|
getRemoteOpcPage,
|
|
|
deleteRemoteOpcs,
|
|
|
updateRemoteOpcs,
|
|
|
+ addToServerRemoteOpcs,
|
|
|
fetchRemoteOpc,
|
|
|
exportRemoteOpc
|
|
|
} from '@/api/remote/opc'
|
|
@@ -351,6 +359,15 @@ export default {
|
|
|
...this.$route.query
|
|
|
})
|
|
|
},
|
|
|
+ doAddAll () {
|
|
|
+ const parameter = {
|
|
|
+ ...this.queryParam,
|
|
|
+ sbIds: this.selectedRowKeys
|
|
|
+ }
|
|
|
+ addToServerRemoteOpcs(parameter).then(res => {
|
|
|
+ this.$message.info('已添加,100秒后自动采集')
|
|
|
+ })
|
|
|
+ },
|
|
|
handleEdit (record) {
|
|
|
fetchRemoteOpc({ id: record.id }).then(res => {
|
|
|
const modal = this.$refs.baseModal
|
|
@@ -380,7 +397,12 @@ export default {
|
|
|
},
|
|
|
doExport () {
|
|
|
const parameter = {
|
|
|
- ...this.queryParam
|
|
|
+ ...this.queryParam,
|
|
|
+ ids: this.selectedRowKeys,
|
|
|
+ dataScope: {
|
|
|
+ sortBy: 'asc',
|
|
|
+ sortName: 'no'
|
|
|
+ }
|
|
|
}
|
|
|
exportRemoteOpc(parameter).then(file => {
|
|
|
this.BaseTool.UPLOAD.downLoadExportExcel(file)
|