|
@@ -20,7 +20,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">
|
|
|
+ <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>
|
|
@@ -32,15 +32,19 @@
|
|
|
<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="download" v-if="isPub">下载</el-button>
|
|
|
<el-button size="mini" @click="deleteSelect">删除</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"></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 +79,9 @@
|
|
|
<el-button type="primary" @click="innerVisible = true">确定</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
+
|
|
|
+ <!-- 重命名 -->
|
|
|
+ <rename ref="rename" @updateSuc="updateSuc"></rename>
|
|
|
</el-container>
|
|
|
</template>
|
|
|
|
|
@@ -83,6 +90,7 @@ 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"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -97,19 +105,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: "",
|
|
|
+ ], // 排序选项
|
|
|
+ queryText: "", // 搜索文字
|
|
|
isPub: 1, // 发布类型()
|
|
|
- input2: "",
|
|
|
- outerVisible: true,
|
|
|
- innerVisible: true,
|
|
|
+ outerVisible: false,
|
|
|
+ innerVisible: false,
|
|
|
ruleForm: {
|
|
|
name: "",
|
|
|
region: "",
|
|
@@ -158,35 +165,14 @@ export default {
|
|
|
desc: [{ required: true, message: "请填写活动形式", trigger: "blur" }],
|
|
|
},
|
|
|
value: [],
|
|
|
- cardList: [
|
|
|
- {
|
|
|
- id: 1,
|
|
|
- name: '中央供冷系统中央供冷系统中央供冷系统中央供冷系统',
|
|
|
- version: 'V1.2.2',
|
|
|
- putUser: '六千',
|
|
|
- lastUpdate: '2020-20-20 16:16:16',
|
|
|
- label: ['范德萨','范德萨','范德萨'],
|
|
|
- pic: '1600327559023.png',
|
|
|
- checked: false
|
|
|
- },
|
|
|
- {
|
|
|
- id: 2,
|
|
|
- name: '中央供冷系456',
|
|
|
- version: 'V1.2.2',
|
|
|
- putUser: '六千',
|
|
|
- lastUpdate: '2020-20-20 16:16:16',
|
|
|
- label: ['范德萨','范德萨','范德萨'],
|
|
|
- pic: '1600327559023.png',
|
|
|
- checked: false
|
|
|
- }
|
|
|
- ],
|
|
|
- checkAll: false,
|
|
|
- selectCard: [],
|
|
|
+ cardList: [], // 当前显示的卡片列表
|
|
|
+ checkAll: false, // 全选
|
|
|
+ selectCard: [], // 当前选中的卡片列表
|
|
|
isIndeterminate: true, // 全选按钮
|
|
|
curCategory: {}, // 当前选中的树节点
|
|
|
};
|
|
|
},
|
|
|
- mounted(){
|
|
|
+ mounted() {
|
|
|
},
|
|
|
methods: {
|
|
|
testClick(data) {
|
|
@@ -241,47 +227,69 @@ export default {
|
|
|
deleteSelect() {
|
|
|
console.log('deleteSelect');
|
|
|
},
|
|
|
+ // 重命名
|
|
|
+ rename(data){
|
|
|
+ this.$refs.rename.showDialog(data)
|
|
|
+ },
|
|
|
+ // 更新成功-发布成功
|
|
|
+ updateSuc(){
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
// 选中节点变化
|
|
|
- changeNode(data){
|
|
|
- this.selectCard = [];
|
|
|
+ changeNode(data) {
|
|
|
this.curCategory = data;
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
// 发布修改
|
|
|
- changePub(){
|
|
|
- this.selectCard = [];
|
|
|
+ changePub() {
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ // 输入内容变化
|
|
|
+ changeQueryText(){
|
|
|
this.queryGraph()
|
|
|
},
|
|
|
/////////////////接口
|
|
|
// 查询图形信息
|
|
|
- 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) {
|
|
|
- const pa = {
|
|
|
- // Filters: 'state=1'
|
|
|
- }
|
|
|
queryPubGraph(pa).then(res => {
|
|
|
-
|
|
|
+ this.cardList = res.content.map(t => {
|
|
|
+ t.checked = false;
|
|
|
+ return t;
|
|
|
+ });
|
|
|
+ this.queryText = '';
|
|
|
})
|
|
|
} else {
|
|
|
- const pa = {
|
|
|
- Filters: 'state=1',
|
|
|
- }
|
|
|
+ pa.Filters += ";state=1"
|
|
|
queryDraftsGraph(pa).then(res => {
|
|
|
this.cardList = res.content.map(t => {
|
|
|
t.checked = false;
|
|
|
return t;
|
|
|
});
|
|
|
- console.log(this.cardList);
|
|
|
+ this.queryText = '';
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },
|
|
|
+ components: { Select, Button, leftAsideTree, Dropdown, topoImageCard, rename },
|
|
|
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()
|
|
|
}
|
|
|
}
|
|
|
};
|
|
@@ -355,6 +363,11 @@ export default {
|
|
|
.main-body {
|
|
|
display: flex;
|
|
|
flex-wrap: wrap;
|
|
|
+ height: calc(100% - 51px);
|
|
|
+ &.no-data {
|
|
|
+ justify-content: center;
|
|
|
+ // align-items: center;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|