|
@@ -10,6 +10,10 @@
|
|
|
<!-- 左侧树状导航栏部分 -->
|
|
|
<el-aside class="aside" width="200px">
|
|
|
<leftAsideTree ref="leftAsideTree" @changeNode="changeNode"></leftAsideTree>
|
|
|
+ <div class="recycle" @click="showRecycleDialog">
|
|
|
+ <img :src='require("@/assets/images/recycle.png")' />
|
|
|
+ <span>回收站</span>
|
|
|
+ </div>
|
|
|
</el-aside>
|
|
|
<!-- 展示部分 -->
|
|
|
<el-main class="main">
|
|
@@ -20,7 +24,7 @@
|
|
|
<el-radio-button :label="0">未发布</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
<div class="head-right">
|
|
|
- <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @change="changeQueryText">
|
|
|
+ <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @keyup.native.enter="changeQueryText">
|
|
|
</el-input>
|
|
|
<Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
|
|
|
<span class="drop-text">{{selText}}</span>
|
|
@@ -40,7 +44,7 @@
|
|
|
<div class="main-body" :class="{'no-data': !cardList.length}">
|
|
|
<template v-for="t in cardList">
|
|
|
<topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
- @delete="deleteGraph"></topoImageCard>
|
|
|
+ @delete="deleteGraph" @editTag="editTag"></topoImageCard>
|
|
|
</template>
|
|
|
<div v-if="!cardList.length" style="margin-top: 112px;">
|
|
|
<img src="./../assets/images/no-data.png" alt="" style="width: 116px;height:116px;">
|
|
@@ -82,11 +86,15 @@
|
|
|
</el-dialog>
|
|
|
|
|
|
<!-- 重命名 -->
|
|
|
- <rename ref="rename" @updateSuc="updateSuc"></rename>
|
|
|
+ <rename ref="rename" :isPub="isPub" @updateSuc="updateSuc"></rename>
|
|
|
<!-- 移动到 -->
|
|
|
- <move ref="move" @moveSuc="moveSuc"></move>
|
|
|
+ <move ref="move" :isPub="isPub" @moveSuc="moveSuc"></move>
|
|
|
<!-- 删除二次确认 -->
|
|
|
- <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
|
|
|
+ <deleteDialog ref="deleteDialog" :isPub="isPub" @deleteSuc="deleteSuc"></deleteDialog>
|
|
|
+ <!-- 修改标签 -->
|
|
|
+ <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
|
|
|
+ <!-- 回收站全屏弹窗 -->
|
|
|
+ <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
|
|
|
</el-container>
|
|
|
</template>
|
|
|
|
|
@@ -98,6 +106,8 @@ import { queryDraftsGraph, queryPubGraph } from "@/api/home"
|
|
|
import rename from "@/components/homeView/rename"
|
|
|
import move from "@/components/homeView/move"
|
|
|
import deleteDialog from "@/components/homeView/deleteDialog"
|
|
|
+import tagDialog from "@/components/homeView/tagDialog"
|
|
|
+import recycle from "@/components/homeView/recycle"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -179,8 +189,6 @@ export default {
|
|
|
curCategory: {}, // 当前选中的树节点
|
|
|
};
|
|
|
},
|
|
|
- mounted() {
|
|
|
- },
|
|
|
methods: {
|
|
|
testClick(data) {
|
|
|
console.log(data);
|
|
@@ -269,10 +277,23 @@ export default {
|
|
|
changePub() {
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
+ // 修改标签
|
|
|
+ editTag(data) {
|
|
|
+ this.$refs.tagDialog.showDialog(data)
|
|
|
+ },
|
|
|
// 输入内容变化
|
|
|
changeQueryText() {
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
+ // 回收站点击
|
|
|
+ showRecycleDialog() {
|
|
|
+ this.$refs.recycle.showDialog()
|
|
|
+ },
|
|
|
+ // 回收站关闭
|
|
|
+ recycleDialogClose() {
|
|
|
+ this.queryGraph();
|
|
|
+ this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
+ },
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|
|
|
queryGraph() {
|
|
@@ -281,11 +302,11 @@ export default {
|
|
|
}
|
|
|
this.selectCard = [];
|
|
|
const pa = {
|
|
|
- Filters: `categoryId="${this.curCategory.code}"`,
|
|
|
- Orders: `${this.selVal} desc`
|
|
|
+ filters: `categoryId="${this.curCategory.code}"`,
|
|
|
+ orders: `${this.selVal} desc`
|
|
|
}
|
|
|
- if (this.queryText.trim()) {
|
|
|
- pa.Filters += `;name contain "${this.queryText.trim()}"`
|
|
|
+ if (this.queryText) {
|
|
|
+ pa.filters += `;name contain "${this.queryText}"`
|
|
|
}
|
|
|
if (this.isPub) {
|
|
|
queryPubGraph(pa).then(res => {
|
|
@@ -296,7 +317,7 @@ export default {
|
|
|
this.queryText = '';
|
|
|
})
|
|
|
} else {
|
|
|
- pa.Filters += ";state=1"
|
|
|
+ pa.filters += ";state=1"
|
|
|
queryDraftsGraph(pa).then(res => {
|
|
|
this.cardList = res.content.map(t => {
|
|
|
t.checked = false;
|
|
@@ -307,7 +328,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog },
|
|
|
+ components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog },
|
|
|
watch: {
|
|
|
// 排序方式修改
|
|
|
selVal(n, o) {
|
|
@@ -336,6 +357,21 @@ export default {
|
|
|
.bodys {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
+ .aside {
|
|
|
+ .recycle {
|
|
|
+ line-height: 48px;
|
|
|
+ border-top: 1px solid #e4e5e7ff;
|
|
|
+ box-sizing: border-box;
|
|
|
+ background: #f7f9fa;
|
|
|
+ padding-left: 16px;
|
|
|
+ cursor: pointer;
|
|
|
+ img {
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ margin: -3px 8px 0 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
.main {
|
|
|
width: 100%;
|
|
|
height: 100%;
|