recycle.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <el-dialog title="回收站" :visible.sync="dialogVisible" :fullscreen="true" custom-class="recycleDialog" @close="dialogClose">
  3. <div class="main-head">
  4. <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @keyup.native.enter="changeQueryText"
  5. style="width: 192px;">
  6. </el-input>
  7. <div class="head-right">
  8. <Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
  9. <span class="drop-text">{{selText}}</span>
  10. </Dropdown>
  11. </div>
  12. </div>
  13. <div class="main-body" :class="{'no-data': !cardList.length}" v-loading="recycleLoading">
  14. <template v-for="t in cardList">
  15. <topoImageCard :isRecycle="true" :data="t" :key="t.graphId" @recover="recover" @deleteRecycle="deleteRecycle"></topoImageCard>
  16. </template>
  17. <div v-if="!cardList.length" style="margin-top: 112px;">
  18. <img :src="require('@/assets/images/no-data.png')" style="width: 116px;height:116px;">
  19. <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
  20. </div>
  21. </div>
  22. <!-- 二次确认弹窗 -->
  23. <recycleDialog ref="recycleDialog" :title="title" @recoverSuc="queryGraph"></recycleDialog>
  24. </el-dialog>
  25. </template>
  26. <script>
  27. import { queryDraftsGraph } from "@/api/home"
  28. import { Dropdown } from "meri-design";
  29. import topoImageCard from "@/components/homeView/topoImageCard.vue";
  30. import recycleDialog from "@/components/homeView/recycleDialog.vue";
  31. export default {
  32. data() {
  33. return {
  34. dialogVisible: false,
  35. input: '',
  36. queryText: '',
  37. selVal: "delTime", // 排序方式
  38. selText: "按删除时间", // 排序方式文字
  39. dataSelect: [
  40. { id: "delTime", name: "按删除时间" },
  41. { id: "lastUpdate", name: "按最后修改" },
  42. { id: "name", name: "按字母顺序" },
  43. { id: "createTime", name: "按创建时间" }
  44. ], // 排序选项
  45. cardList: [],
  46. title: '恢复',
  47. recycleLoading: false,
  48. };
  49. },
  50. methods: {
  51. showDialog() {
  52. this.queryGraph();
  53. this.dialogVisible = true;
  54. },
  55. changeQueryText() {
  56. this.queryGraph();
  57. },
  58. // 查询图形信息
  59. queryGraph() {
  60. this.recycleLoading = true;
  61. const pa = {
  62. Filters: `state=4`,
  63. Orders: `${this.selVal} desc`
  64. }
  65. if (this.queryText) {
  66. pa.Filters += `;name contain "${this.queryText}"`
  67. }
  68. queryDraftsGraph(pa).then(res => {
  69. this.cardList = res.content.map(t => {
  70. t.checked = false;
  71. return t;
  72. });
  73. this.queryText = '';
  74. this.recycleLoading = false;
  75. })
  76. },
  77. // 恢复
  78. recover(data) {
  79. this.title = "恢复";
  80. this.$refs.recycleDialog.showDialog(data)
  81. },
  82. // 永久删除
  83. deleteRecycle() {
  84. this.$message('开发中')
  85. },
  86. // 关闭弹窗
  87. dialogClose() {
  88. this.$emit('recycleDialogClose');
  89. }
  90. },
  91. components: { Dropdown, topoImageCard, recycleDialog },
  92. watch: {
  93. // 排序方式修改
  94. selVal(n, o) {
  95. if (n === o) return;
  96. this.selText = this.dataSelect.find(d => d.id === n).name;
  97. this.selectCard = [];
  98. this.queryGraph()
  99. }
  100. }
  101. };
  102. </script>
  103. <style lang="less" scoped>
  104. /deep/ .recycleDialog {
  105. color: red;
  106. /deep/ .el-dialog__header {
  107. border-bottom: 1px solid #f0f1f2ff;
  108. }
  109. .main-head {
  110. display: flex;
  111. justify-content: space-between;
  112. .head-right {
  113. display: flex;
  114. align-items: center;
  115. .Dropdown {
  116. min-width: 100px;
  117. margin-left: 20px;
  118. .drop-text {
  119. font-size: 14px;
  120. color: #1f2329;
  121. line-height: 16px;
  122. }
  123. }
  124. }
  125. }
  126. .main-body {
  127. display: flex;
  128. flex-wrap: wrap;
  129. margin-top: 12px;
  130. height: calc(100% - 51px);
  131. &.no-data {
  132. justify-content: center;
  133. // align-items: center;
  134. }
  135. }
  136. }
  137. </style>