|
@@ -1,73 +1,107 @@
|
|
|
<!--拓扑图缩略图卡片-->
|
|
|
<template>
|
|
|
- <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
|
|
|
- <div class="image" v-if="!data.pic" style="line-height: 120px;text-align: center;">
|
|
|
- <img :src="require('@/assets/images/noImg.png')" style="height:60px;">
|
|
|
+ <el-card
|
|
|
+ :class="{ 'box-card': true, active: data.checked }"
|
|
|
+ shadow="hover"
|
|
|
+ :body-style="{ padding: '0px' }"
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="image"
|
|
|
+ v-if="!data.pic"
|
|
|
+ style="line-height: 120px; text-align: center"
|
|
|
+ >
|
|
|
+ <img :src="require('@/assets/images/noImg.png')" style="height: 60px" />
|
|
|
</div>
|
|
|
- <img class="image" v-else :src="`${imgBaseUrl}${data.pic}`">
|
|
|
+ <img class="image" v-else :src="`${imgBaseUrl}${data.pic}`" />
|
|
|
<div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
|
|
|
- <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
|
|
|
+ <el-checkbox
|
|
|
+ v-model="data.checked"
|
|
|
+ class="shadowCheck"
|
|
|
+ @change="changeCheck"
|
|
|
+ ></el-checkbox>
|
|
|
</div>
|
|
|
<div class="content">
|
|
|
<div>
|
|
|
- <span class="title" :title="data.name">{{data.name}}</span>
|
|
|
+ <span class="title" :title="data.name">{{ data.name }}</span>
|
|
|
<div class="func">
|
|
|
- <el-popover placement="top" width="200" trigger="hover" popper-class="customPop">
|
|
|
- <p>版本 : {{'V'+data.version}}</p>
|
|
|
- <p>更新时间 : {{data.lastUpdate}}</p>
|
|
|
+ <el-popover
|
|
|
+ placement="top"
|
|
|
+ width="200"
|
|
|
+ trigger="hover"
|
|
|
+ popper-class="customPop"
|
|
|
+ >
|
|
|
+ <p>版本 : {{ "V" + data.version }}</p>
|
|
|
+ <p>更新时间 : {{ data.lastUpdate }}</p>
|
|
|
<!-- <p>更新人 : {{data.putUser || '张三'}}</p> -->
|
|
|
- <span slot="reference"><img :src="require('@/assets/images/tips.png')" style="width: 20px;height:20px" /></span>
|
|
|
+ <span slot="reference"
|
|
|
+ ><img
|
|
|
+ :src="require('@/assets/images/tips.png')"
|
|
|
+ style="width: 20px; height: 20px"
|
|
|
+ /></span>
|
|
|
</el-popover>
|
|
|
- <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
|
|
|
+ <el-dropdown
|
|
|
+ :hide-on-click="true"
|
|
|
+ placement="bottom-start"
|
|
|
+ trigger="click"
|
|
|
+ @command="handleCommand"
|
|
|
+ >
|
|
|
<span class="el-dropdown-link">
|
|
|
- <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
|
|
|
+ <img
|
|
|
+ :src="require('@/assets/images/more.png')"
|
|
|
+ style="width: 20px; height: 20px"
|
|
|
+ />
|
|
|
</span>
|
|
|
<el-dropdown-menu slot="dropdown">
|
|
|
<template v-for="t in moreList">
|
|
|
- <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{t.label}}</el-dropdown-item>
|
|
|
+ <el-dropdown-item
|
|
|
+ :key="t.name"
|
|
|
+ :command="t.name"
|
|
|
+ v-if="dropdownItemShow(t)"
|
|
|
+ >{{ t.label }}</el-dropdown-item
|
|
|
+ >
|
|
|
</template>
|
|
|
</el-dropdown-menu>
|
|
|
</el-dropdown>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="tags">
|
|
|
- <span v-for="(t,i) in data.label" :key="data.name + i">{{t}}</span>
|
|
|
+ <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
</el-card>
|
|
|
</template>
|
|
|
<script>
|
|
|
-const imgBaseUrl = window.__systemConf.imgServeUri
|
|
|
-import { publishGraph } from "@/api/home"
|
|
|
+const imgBaseUrl = window.__systemConf.imgServeUri;
|
|
|
+import { publishGraph } from "@/api/home";
|
|
|
export default {
|
|
|
props: {
|
|
|
data: {
|
|
|
type: Object,
|
|
|
default: () => {
|
|
|
- return {}
|
|
|
- }
|
|
|
+ return {};
|
|
|
+ },
|
|
|
},
|
|
|
isRecycle: {
|
|
|
type: Boolean,
|
|
|
- default: false
|
|
|
+ default: false,
|
|
|
},
|
|
|
isPub: {
|
|
|
type: Number,
|
|
|
- default: 0
|
|
|
- }
|
|
|
+ default: 0,
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
moreList: [
|
|
|
- { name: 'rename', label: '重命名', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
|
- { name: 'publish', label: '发布', show: 0 }, // 类型为 未发布 时出现
|
|
|
- { name: 'download', label: '下载', show: 1 }, // 类型为 已发布 时出现
|
|
|
- { name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
|
|
|
- { name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
|
- { name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
|
- { name: 'editGraph', label: '编辑', show: 'any' }, // 类型为 未发布/已发布 时出现
|
|
|
- { name: 'recover', label: '恢复', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
|
- { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
|
|
|
+ { name: "rename", label: "重命名", show: "any" }, // 类型为 未发布/已发布 时出现
|
|
|
+ { name: "publish", label: "发布", show: 0 }, // 类型为 未发布 时出现
|
|
|
+ { name: "download", label: "下载", show: 1 }, // 类型为 已发布 时出现
|
|
|
+ { name: "editTag", label: "修改标签", show: 1 }, // 类型为 已发布 时出现
|
|
|
+ { name: "moveTo", label: "移动到", show: "any" }, // 类型为 未发布/已发布 时出现
|
|
|
+ { name: "delete", label: "删除", show: "any" }, // 类型为 未发布/已发布 时出现
|
|
|
+ { name: "editGraph", label: "编辑", show: "any" }, // 类型为 未发布/已发布 时出现
|
|
|
+ { name: "recover", label: "恢复", show: "isRecycle" }, // 类型为 回收站 时出现
|
|
|
+ { name: "deleteRecycle", label: "永久删除", show: "isRecycle" }, // 类型为 回收站 时出现
|
|
|
],
|
|
|
checked: false,
|
|
|
imgBaseUrl,
|
|
@@ -76,17 +110,20 @@ export default {
|
|
|
methods: {
|
|
|
// 显示下拉框内容选项判断
|
|
|
dropdownItemShow(item) {
|
|
|
- return (!this.isRecycle && (item.show == 'any' || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle")
|
|
|
+ return (
|
|
|
+ (!this.isRecycle && (item.show == "any" || item.show == this.isPub)) ||
|
|
|
+ (this.isRecycle && item.show == "isRecycle")
|
|
|
+ );
|
|
|
},
|
|
|
// 复选框改变时
|
|
|
changeCheck() {
|
|
|
- this.$emit('changeCheck', this.data);
|
|
|
+ this.$emit("changeCheck", this.data);
|
|
|
},
|
|
|
// 点击更多中的命令时
|
|
|
handleCommand(command) {
|
|
|
const pa = {
|
|
|
graphId: this.data.graphId,
|
|
|
- id: this.data.id
|
|
|
+ id: this.data.id,
|
|
|
};
|
|
|
switch (command) {
|
|
|
case "rename":
|
|
@@ -96,17 +133,17 @@ export default {
|
|
|
case "delete":
|
|
|
case "recover":
|
|
|
case "deleteRecycle":
|
|
|
- this.$emit(command, this.data)
|
|
|
+ this.$emit(command, this.data);
|
|
|
break;
|
|
|
case "editGraph":
|
|
|
// 进入编辑
|
|
|
- this.$emit("toEdit", this.data)
|
|
|
+ this.$emit("toEdit", this.data);
|
|
|
break;
|
|
|
case "publish":
|
|
|
- publishGraph(pa).then(res => {
|
|
|
+ publishGraph(pa).then((res) => {
|
|
|
if (res.result == "success") {
|
|
|
this.$message.success("发布成功");
|
|
|
- this.$emit('publishSuc')
|
|
|
+ this.$emit("publishSuc");
|
|
|
} else {
|
|
|
this.$message.success("发布失败");
|
|
|
}
|
|
@@ -117,10 +154,10 @@ export default {
|
|
|
// 进入编辑页面
|
|
|
toEdit(e) {
|
|
|
const targetName = e.target.nodeName.toLowerCase();
|
|
|
- if (targetName == 'div') {
|
|
|
- this.$emit("toEdit", this.data)
|
|
|
+ if (targetName == "div") {
|
|
|
+ this.$emit("toEdit", this.data);
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|