recycle.vue 3.5 KB

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