|
@@ -51,7 +51,7 @@
|
|
|
<div class="has-data-body" v-if="cardList.length">
|
|
|
<template v-for="t in cardList">
|
|
|
<topoImageCard :isPub="isPub" :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
- @delete="deleteGraph" @editTag="editTag" @toEdit="toEdit"></topoImageCard>
|
|
|
+ @delete="deleteGraph" @editTag="editTag" @toEdit="toEdit" @download="download"></topoImageCard>
|
|
|
</template>
|
|
|
</div>
|
|
|
<div class="no-data-body" v-else style="margin-top: 112px;">
|
|
@@ -88,6 +88,7 @@ import deleteDialog from "@/components/homeView/deleteDialog"
|
|
|
import tagDialog from "@/components/homeView/tagDialog"
|
|
|
import recycle from "@/components/homeView/recycle"
|
|
|
import createGraphDialog from "@/components/homeView/createGraphDialog"
|
|
|
+import { SNetUtil } from "@persagy-web/base"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -120,6 +121,7 @@ export default {
|
|
|
noTreeFlag: true, // 左侧树是否有数据-默认有
|
|
|
popVisible: false,
|
|
|
categoryName: '', // 跳转编辑页面时分类名称
|
|
|
+ imgUrl: '/image-service/common/image_get?systemId=dataPlatform&key='
|
|
|
};
|
|
|
},
|
|
|
methods: {
|
|
@@ -152,9 +154,21 @@ export default {
|
|
|
groupMove() {
|
|
|
this.$refs.move.showDialog(this.selectCard)
|
|
|
},
|
|
|
- // 下载
|
|
|
+ // 批量下载
|
|
|
groupDownload() {
|
|
|
- console.log('download');
|
|
|
+ if (this.selectCard.length) {
|
|
|
+ this.selectCard.forEach(t => {
|
|
|
+ this.download(t)
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 单独下载
|
|
|
+ download(data) {
|
|
|
+ if (data.pic) {
|
|
|
+ SNetUtil.downLoad(data.name + '.png', this.imgUrl + data.pic);
|
|
|
+ } else {
|
|
|
+ // this.$message.warning(`${data.name}未绘制`)
|
|
|
+ }
|
|
|
},
|
|
|
// 删除
|
|
|
groupDelete() {
|