|
@@ -9,15 +9,15 @@
|
|
|
<el-container class="bodys">
|
|
|
<!-- 左侧树状导航栏部分 -->
|
|
|
<el-aside class="aside" width="200px">
|
|
|
- <leftAsideTree></leftAsideTree>
|
|
|
+ <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">
|
|
@@ -82,6 +82,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"
|
|
|
export default {
|
|
|
name: "home",
|
|
|
data() {
|
|
@@ -105,7 +106,7 @@ export default {
|
|
|
{ id: "createTime", name: "按创建时间" }
|
|
|
],
|
|
|
queryText: "",
|
|
|
- isPub: "已发布", // 发布类型()
|
|
|
+ isPub: 1, // 发布类型()
|
|
|
input2: "",
|
|
|
outerVisible: true,
|
|
|
innerVisible: true,
|
|
@@ -163,13 +164,9 @@ export default {
|
|
|
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',
|
|
|
+ lastUpdate: '2020-20-20 16:16:16',
|
|
|
+ label: ['范德萨','范德萨','范德萨'],
|
|
|
+ pic: '1600327559023.png',
|
|
|
checked: false
|
|
|
},
|
|
|
{
|
|
@@ -177,21 +174,20 @@ export default {
|
|
|
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',
|
|
|
+ lastUpdate: '2020-20-20 16:16:16',
|
|
|
+ label: ['范德萨','范德萨','范德萨'],
|
|
|
+ pic: '1600327559023.png',
|
|
|
checked: false
|
|
|
}
|
|
|
],
|
|
|
checkAll: false,
|
|
|
selectCard: [],
|
|
|
isIndeterminate: true, // 全选按钮
|
|
|
+ curCategory: {}, // 当前选中的树节点
|
|
|
};
|
|
|
},
|
|
|
+ mounted(){
|
|
|
+ },
|
|
|
methods: {
|
|
|
testClick(data) {
|
|
|
console.log(data);
|
|
@@ -244,6 +240,40 @@ export default {
|
|
|
// 删除
|
|
|
deleteSelect() {
|
|
|
console.log('deleteSelect');
|
|
|
+ },
|
|
|
+ // 选中节点变化
|
|
|
+ changeNode(data){
|
|
|
+ this.selectCard = [];
|
|
|
+ this.curCategory = data;
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ // 发布修改
|
|
|
+ changePub(){
|
|
|
+ this.selectCard = [];
|
|
|
+ this.queryGraph()
|
|
|
+ },
|
|
|
+ /////////////////接口
|
|
|
+ // 查询图形信息
|
|
|
+ queryGraph(){
|
|
|
+ if (this.isPub) {
|
|
|
+ const pa = {
|
|
|
+ // Filters: 'state=1'
|
|
|
+ }
|
|
|
+ queryPubGraph(pa).then(res => {
|
|
|
+
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ const pa = {
|
|
|
+ Filters: 'state=1',
|
|
|
+ }
|
|
|
+ queryDraftsGraph(pa).then(res => {
|
|
|
+ this.cardList = res.content.map(t => {
|
|
|
+ t.checked = false;
|
|
|
+ return t;
|
|
|
+ });
|
|
|
+ console.log(this.cardList);
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
},
|
|
|
components: { Select, Button, leftAsideTree, Dropdown, topoImageCard },
|