@@ -21,6 +21,15 @@
@click="handelAdd"
>新增</el-button>
+ <el-button
+ size="mini"
+ icon="el-icon-download"
+ type="primary"
+ plain
+ style="margin-bottom: 20px"
+ @click="downloadApp"
+ >采集器下载</el-button>
+
<el-table
ref="table"
:loading="loading"
@@ -745,6 +754,9 @@ export default {
}).catch(() => {
});
+ },
+ downloadApp() {
+ window.open(process.env.VUE_APP_BASE_API + '/cy-collector.7z')
}