|
@@ -24,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>
|
|
@@ -44,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;">
|
|
@@ -86,13 +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"></recycle>
|
|
|
+ <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
|
|
|
</el-container>
|
|
|
</template>
|
|
|
|
|
@@ -104,6 +106,7 @@ 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",
|
|
@@ -186,8 +189,6 @@ export default {
|
|
|
curCategory: {}, // 当前选中的树节点
|
|
|
};
|
|
|
},
|
|
|
- mounted() {
|
|
|
- },
|
|
|
methods: {
|
|
|
testClick(data) {
|
|
|
console.log(data);
|
|
@@ -276,14 +277,23 @@ export default {
|
|
|
changePub() {
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
+ // 修改标签
|
|
|
+ editTag(data) {
|
|
|
+ this.$refs.tagDialog.showDialog(data)
|
|
|
+ },
|
|
|
// 输入内容变化
|
|
|
changeQueryText() {
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
// 回收站点击
|
|
|
- showRecycleDialog(){
|
|
|
+ showRecycleDialog() {
|
|
|
this.$refs.recycle.showDialog()
|
|
|
},
|
|
|
+ // 回收站关闭
|
|
|
+ recycleDialogClose() {
|
|
|
+ this.queryGraph();
|
|
|
+ this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
+ },
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|
|
|
queryGraph() {
|
|
@@ -295,8 +305,8 @@ export default {
|
|
|
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 => {
|
|
@@ -318,7 +328,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle },
|
|
|
+ components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog, recycle, tagDialog },
|
|
|
watch: {
|
|
|
// 排序方式修改
|
|
|
selVal(n, o) {
|