topoImageCard.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <!--拓扑图缩略图卡片-->
  2. <template>
  3. <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
  4. <div class="image" v-if="!data.pic" style="line-height: 120px;text-align: center;">
  5. <img :src="require('@/assets/images/noImg.png')" style="height:96px;">
  6. </div>
  7. <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`">
  8. <div class="shadow image" v-if="!isRecycle" @click="toEdit">
  9. <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
  10. </div>
  11. <div class="content">
  12. <div>
  13. <span class="title" :title="data.name">{{data.name}}</span>
  14. <div class="func">
  15. <el-popover placement="top" width="200" trigger="hover" popper-class="customPop">
  16. <p>版本 : {{data.version}}</p>
  17. <p>更新时间 : {{data.lastUpdate}}</p>
  18. <!-- <p>更新人 : {{data.putUser || '张三'}}</p> -->
  19. <span slot="reference"><img :src="require('@/assets/images/tips.png')" style="width: 20px;height:20px" /></span>
  20. </el-popover>
  21. <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
  22. <span class="el-dropdown-link">
  23. <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
  24. </span>
  25. <el-dropdown-menu slot="dropdown">
  26. <template v-for="t in moreList">
  27. <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{t.label}}</el-dropdown-item>
  28. </template>
  29. </el-dropdown-menu>
  30. </el-dropdown>
  31. </div>
  32. </div>
  33. <div class="tags">
  34. <span v-for="i in data.label" :key="i">{{i}}</span>
  35. </div>
  36. </div>
  37. </el-card>
  38. </template>
  39. <script>
  40. import { publishGraph } from "@/api/home"
  41. export default {
  42. props: {
  43. data: {
  44. type: Object,
  45. default: () => {
  46. return {}
  47. }
  48. },
  49. isRecycle: {
  50. type: Boolean,
  51. default: false
  52. },
  53. isPub: {
  54. type: Number,
  55. default: 0
  56. }
  57. },
  58. data() {
  59. return {
  60. moreList: [
  61. { name: 'rename', label: '重命名', show: 'any' }, // 类型为 未发布/已发布 时出现
  62. { name: 'publish', label: '发布', show: 0 }, // 类型为 未发布 时出现
  63. { name: 'download', label: '下载', show: 1 }, // 类型为 已发布 时出现
  64. { name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
  65. { name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
  66. { name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
  67. { name: 'recover', label: '恢复', show: 'isRecycle' }, // 类型为 回收站 时出现
  68. { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
  69. ],
  70. checked: false
  71. };
  72. },
  73. methods: {
  74. // 显示下拉框内容选项判断
  75. dropdownItemShow(item) {
  76. return (!this.isRecycle && (item.show == 'any' || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle")
  77. },
  78. // 复选框改变时
  79. changeCheck() {
  80. this.$emit('changeCheck', this.data);
  81. },
  82. // 点击更多中的命令时
  83. handleCommand(command) {
  84. const pa = {
  85. graphId: this.data.graphId,
  86. id: this.data.id
  87. };
  88. switch (command) {
  89. case "rename":
  90. case "download":
  91. case "editTag":
  92. case "moveTo":
  93. case "delete":
  94. case "recover":
  95. case "deleteRecycle":
  96. this.$emit(command, this.data)
  97. break;
  98. case "publish":
  99. publishGraph(pa).then(res => {
  100. this.$message.success("发布成功");
  101. this.$emit('publishSuc')
  102. });
  103. break;
  104. }
  105. },
  106. // 进入编辑页面
  107. toEdit() {
  108. console.log(123123);
  109. }
  110. },
  111. };
  112. </script>
  113. <style lang="less" scoped>
  114. .box-card {
  115. position: relative;
  116. width: 260px;
  117. height: 193px;
  118. border-radius: 8px;
  119. margin-right: 20px;
  120. margin-bottom: 20px;
  121. cursor: pointer;
  122. &:hover,
  123. &.active {
  124. border-color: #0091ff80;
  125. box-shadow: 0px 8px 16px 0px rgba(195, 199, 203, 0.4);
  126. .shadow {
  127. display: block;
  128. }
  129. .content {
  130. .func {
  131. display: block;
  132. }
  133. }
  134. }
  135. .image {
  136. display: block;
  137. width: 100%;
  138. height: 120px;
  139. background-color: #f7f9fa;
  140. }
  141. .shadow {
  142. display: none;
  143. position: absolute;
  144. top: 0;
  145. left: 0;
  146. background-color: #8d939926;
  147. .shadowCheck {
  148. position: absolute;
  149. top: 8px;
  150. left: 12px;
  151. }
  152. }
  153. .content {
  154. padding: 8px 12px;
  155. vertical-align: middle;
  156. .title {
  157. display: inline-block;
  158. color: #1f2429;
  159. margin: 0;
  160. max-width: 182px;
  161. white-space: nowrap;
  162. overflow: hidden;
  163. text-overflow: ellipsis;
  164. }
  165. .func {
  166. & > * + * {
  167. margin-left: 8px;
  168. }
  169. display: none;
  170. float: right;
  171. vertical-align: middle;
  172. i {
  173. font-size: 20px;
  174. }
  175. }
  176. .tags {
  177. margin-top: 4px;
  178. span {
  179. display: inline-block;
  180. padding: 1px 6px;
  181. font-size: 12px;
  182. color: #8d9399;
  183. line-height: 18px;
  184. border: 1px solid #8d9399;
  185. border-radius: 3px;
  186. margin-bottom: 11px;
  187. & + span {
  188. margin-left: 4px;
  189. }
  190. }
  191. }
  192. }
  193. }
  194. .customPop {
  195. p {
  196. font-size: 12px;
  197. & + p {
  198. margin-top: 10px;
  199. }
  200. }
  201. }
  202. </style>