|
@@ -9,18 +9,18 @@
|
|
|
<el-container class="bodys">
|
|
|
<!-- 左侧树状导航栏部分 -->
|
|
|
<el-aside class="aside" width="200px">
|
|
|
- <leftAsideTree></leftAsideTree>
|
|
|
+ <leftAsideTree ref="leftAsideTree" @changeNode="changeNode"></leftAsideTree>
|
|
|
</el-aside>
|
|
|
<!-- 展示部分 -->
|
|
|
<el-main class="main">
|
|
|
<div class="main-head">
|
|
|
<div class="showType" v-show="!selectCard.length">
|
|
|
- <el-radio-group v-model="isPub" size="small">
|
|
|
- <el-radio-button label="已发布">已发布</el-radio-button>
|
|
|
- <el-radio-button label="未发布">未发布</el-radio-button>
|
|
|
+ <el-radio-group v-model="isPub" size="small" @change="changePub">
|
|
|
+ <el-radio-button :label="1">已发布</el-radio-button>
|
|
|
+ <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">
|
|
|
+ <el-input placeholder="搜索" prefix-icon="el-icon-search" size="small" v-model="queryText" @change="changeQueryText">
|
|
|
</el-input>
|
|
|
<Dropdown class="Dropdown" v-model="selVal" :data="dataSelect">
|
|
|
<span class="drop-text">{{selText}}</span>
|
|
@@ -31,16 +31,21 @@
|
|
|
<el-checkbox v-model="checkAll" :indeterminate="isIndeterminate" @change="handleCheckAllChange">全选</el-checkbox>
|
|
|
<span style="margin-left: 10px;">|</span>
|
|
|
<span class="sum">已选择<span style="color:#252b30;margin: 0 5px;">{{selectCard.length}}</span>项目</span>
|
|
|
- <el-button size="mini" @click="move">移动到</el-button>
|
|
|
- <el-button size="mini" @click="download">下载</el-button>
|
|
|
- <el-button size="mini" @click="deleteSelect">删除</el-button>
|
|
|
+ <el-button size="mini" @click="groupMove">移动到</el-button>
|
|
|
+ <el-button size="mini" @click="groupDownload" v-if="isPub">下载</el-button>
|
|
|
+ <el-button size="mini" @click="groupDelete">删除</el-button>
|
|
|
<i class="el-icon-close" style="float:right;line-height: 28px;margin-right: 5px;" @click="handleCheckAllChange(false)"></i>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="main-body">
|
|
|
+ <div class="main-body" :class="{'no-data': !cardList.length}">
|
|
|
<template v-for="t in cardList">
|
|
|
- <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck"></topoImageCard>
|
|
|
+ <topoImageCard :data="t" :key="t.id" @changeCheck="changeCheck" @rename="rename" @publishSuc="updateSuc" @moveTo="moveTo"
|
|
|
+ @delete="deleteGraph"></topoImageCard>
|
|
|
</template>
|
|
|
+ <div v-if="!cardList.length" style="margin-top: 112px;">
|
|
|
+ <img src="./../assets/images/no-data.png" alt="" style="width: 116px;height:116px;">
|
|
|
+ <p style="font-size: 16px;margin-top: 15px;text-align:center;">暂无数据</p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</el-main>
|
|
|
</el-container>
|
|
@@ -75,6 +80,13 @@
|
|
|
<el-button type="primary" @click="innerVisible = true">确定</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <!-- 重命名 -->
|
|
|
+ <rename ref="rename" @updateSuc="updateSuc"></rename>
|
|
|
+ <!-- 移动到 -->
|
|
|
+ <move ref="move" @moveSuc="moveSuc"></move>
|
|
|
+ <!-- 删除二次确认 -->
|
|
|
+ <deleteDialog ref="deleteDialog" @deleteSuc="deleteSuc"></deleteDialog>
|
|
|
</el-container>
|
|
|
</template>
|
|
|
|
|
@@ -82,6 +94,10 @@
|
|
|
import { Select, Button, Dropdown } from "meri-design";
|
|
|
import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
|
|
|
import topoImageCard from "@/components/homeView/topoImageCard.vue";
|
|
|
+import { queryDraftsGraph, queryPubGraph } from "@/api/home"
|
|
|
+import rename from "@/components/homeView/rename"
|
|
|
+import move from "@/components/homeView/move"
|
|
|
+import deleteDialog from "@/components/homeView/deleteDialog"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -96,19 +112,18 @@ export default {
|
|
|
divider: true,
|
|
|
},
|
|
|
{ id: "test4", name: "滑动平均滑动平均", sub: "hi" },
|
|
|
- ],
|
|
|
- selVal: "lastUpdate",
|
|
|
- selText: "按最后修改",
|
|
|
+ ], // 项目列表
|
|
|
+ selVal: "lastUpdate", // 排序方式
|
|
|
+ selText: "按最后修改", // 排序方式文字
|
|
|
dataSelect: [
|
|
|
{ id: "lastUpdate", name: "按最后修改" },
|
|
|
- { id: "code", name: "按字母顺序" },
|
|
|
+ { id: "name", name: "按字母顺序" },
|
|
|
{ id: "createTime", name: "按创建时间" }
|
|
|
- ],
|
|
|
- queryText: "",
|
|
|
- isPub: "已发布", // 发布类型()
|
|
|
- input2: "",
|
|
|
- outerVisible: true,
|
|
|
- innerVisible: true,
|
|
|
+ ], // 排序选项
|
|
|
+ queryText: "", // 搜索文字
|
|
|
+ isPub: 1, // 发布类型()
|
|
|
+ outerVisible: false,
|
|
|
+ innerVisible: false,
|
|
|
ruleForm: {
|
|
|
name: "",
|
|
|
region: "",
|
|
@@ -157,41 +172,15 @@ export default {
|
|
|
desc: [{ required: true, message: "请填写活动形式", trigger: "blur" }],
|
|
|
},
|
|
|
value: [],
|
|
|
- cardList: [
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- name: '中央供冷系统中央供冷系统中央供冷系统中央供冷系统',
|
|
|
- version: 'V1.2.2',
|
|
|
- putUser: '六千',
|
|
|
- updateTime: '2020-20-20 16:16:16',
|
|
|
- tagList: [
|
|
|
- { id: 1, name: '范德萨' },
|
|
|
- { id: 2, name: '范333德萨' },
|
|
|
- { id: 3, name: '范333德萨' }
|
|
|
- ],
|
|
|
- img: 'https://www.baidu.com/img/flexible/logo/pc/result.png',
|
|
|
- checked: false
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- name: '中央供冷系456',
|
|
|
- version: 'V1.2.2',
|
|
|
- putUser: '六千',
|
|
|
- updateTime: '2020-20-20 16:16:16',
|
|
|
- tagList: [
|
|
|
- { id: 1, name: '范德萨' },
|
|
|
- { id: 2, name: '范333德萨' },
|
|
|
- { id: 3, name: '范333德萨' }
|
|
|
- ],
|
|
|
- img: 'https://www.baidu.com/img/flexible/logo/pc/result.png',
|
|
|
- checked: false
|
|
|
- }
|
|
|
- ],
|
|
|
- checkAll: false,
|
|
|
- selectCard: [],
|
|
|
+ cardList: [], // 当前显示的卡片列表
|
|
|
+ checkAll: false, // 全选
|
|
|
+ selectCard: [], // 当前选中的卡片列表
|
|
|
isIndeterminate: true, // 全选按钮
|
|
|
+ curCategory: {}, // 当前选中的树节点
|
|
|
};
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ },
|
|
|
methods: {
|
|
|
testClick(data) {
|
|
|
console.log(data);
|
|
@@ -233,25 +222,99 @@ export default {
|
|
|
this.selectCard = val ? this.cardList.map(t => { t.checked = true; return t }) : [];
|
|
|
this.isIndeterminate = false;
|
|
|
},
|
|
|
- // 移动到
|
|
|
- move() {
|
|
|
- console.log('move');
|
|
|
+ // 批量移动到
|
|
|
+ groupMove() {
|
|
|
+ this.$refs.move.showDialog(this.selectCard)
|
|
|
},
|
|
|
// 下载
|
|
|
- download() {
|
|
|
+ groupDownload() {
|
|
|
console.log('download');
|
|
|
},
|
|
|
// 删除
|
|
|
- deleteSelect() {
|
|
|
- console.log('deleteSelect');
|
|
|
+ groupDelete() {
|
|
|
+ this.$refs.deleteDialog.showDialog(this.selectCard);
|
|
|
+ },
|
|
|
+ // 重命名
|
|
|
+ rename(data) {
|
|
|
+ this.$refs.rename.showDialog(data)
|
|
|
+ },
|
|
|
+ // 移动到
|
|
|
+ moveTo(data) {
|
|
|
+ this.$refs.move.showDialog([data])
|
|
|
+ },
|
|
|
+ // 单独删除
|
|
|
+ deleteGraph(data) {
|
|
|
+ this.$refs.deleteDialog.showDialog([data]);
|
|
|
+ },
|
|
|
+ // 更新成功-发布成功
|
|
|
+ updateSuc() {
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ // 移动成功
|
|
|
+ moveSuc() {
|
|
|
+ this.queryGraph()
|
|
|
+ this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
+ },
|
|
|
+ // 删除成功
|
|
|
+ deleteSuc() {
|
|
|
+ this.queryGraph()
|
|
|
+ this.$refs.leftAsideTree.getCategoryGraph();
|
|
|
+ },
|
|
|
+ // 选中节点变化
|
|
|
+ changeNode(data) {
|
|
|
+ this.curCategory = data;
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ // 发布修改
|
|
|
+ changePub() {
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ // 输入内容变化
|
|
|
+ changeQueryText() {
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ /////////////////接口
|
|
|
+ // 查询图形信息
|
|
|
+ queryGraph() {
|
|
|
+ if (!this.curCategory.code) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.selectCard = [];
|
|
|
+ const pa = {
|
|
|
+ Filters: `categoryId="${this.curCategory.code}"`,
|
|
|
+ Orders: `${this.selVal} desc`
|
|
|
+ }
|
|
|
+ if (this.queryText.trim()) {
|
|
|
+ pa.Filters += `;name contain "${this.queryText.trim()}"`
|
|
|
+ }
|
|
|
+ if (this.isPub) {
|
|
|
+ queryPubGraph(pa).then(res => {
|
|
|
+ this.cardList = res.content.map(t => {
|
|
|
+ t.checked = false;
|
|
|
+ return t;
|
|
|
+ });
|
|
|
+ this.queryText = '';
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ pa.Filters += ";state=1"
|
|
|
+ queryDraftsGraph(pa).then(res => {
|
|
|
+ this.cardList = res.content.map(t => {
|
|
|
+ t.checked = false;
|
|
|
+ return t;
|
|
|
+ });
|
|
|
+ this.queryText = '';
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
- components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },
|
|
|
+ components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename, move, deleteDialog },
|
|
|
watch: {
|
|
|
// 排序方式修改
|
|
|
selVal(n, o) {
|
|
|
if (n === o) return;
|
|
|
- this.selText = this.dataSelect.find(d => d.id === n).name
|
|
|
+ this.selText = this.dataSelect.find(d => d.id === n).name;
|
|
|
+ this.selectCard = [];
|
|
|
+ this.queryGraph()
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -325,6 +388,11 @@ export default {
|
|
|
.main-body {
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
+ height: calc(100% - 51px);
|
|
|
+ &.no-data {
|
|
|
+ justify-content: center;
|
|
|
+ // align-items: center;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|