Browse Source

home接口联调

haojianlong 4 years ago
parent
commit
6021c9ba94

+ 32 - 2
src/api/home.ts

@@ -13,11 +13,41 @@ export function queryCategoryGraph(postParams: any): any {
 }
 
 // 查询未发布的图
-export function queryDraftsGraph(postParams: any) :any{
+export function queryDraftsGraph(postParams: any): any {
     return httputils.postJson(`/labsl/graph/drafts/query`, postParams)
 }
 
 // 查询已发布的图
-export function queryPubGraph(postParams: any) :any{
+export function queryPubGraph(postParams: any): any {
     return httputils.postJson(`/labsl/graph/pub/query`, postParams)
+}
+
+// 发布
+export function publishGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/publish`, postParams)
+}
+
+// 删除未发布
+export function deleteDraftsGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/recycle`, postParams)
+}
+
+// 删除已发布
+export function deletePubGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/pub/recycle`, postParams)
+}
+
+// 更新未发布
+export function updateDraftsGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/drafts/update`, postParams)
+}
+
+// 更新已发布
+export function updatePubGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/pub/update`, postParams)
+}
+
+// 回收站恢复
+export function recoveryGraph(postParams: any): any {
+    return httputils.postJson(`/labsl/graph/recycle/recovery`, postParams)
 }

BIN
src/assets/images/no-data.png


+ 21 - 0
src/components/homeView/move.vue

@@ -0,0 +1,21 @@
+<template>
+  <el-dialog title="移动到" :visible.sync="dialogVisible" width="480px">
+    <span>这是一段信息</span>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="dialogVisible = false">取 消</el-button>
+      <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      dialogVisible: false
+    };
+  },
+  methods: {
+  }
+};
+</script>

+ 64 - 0
src/components/homeView/rename.vue

@@ -0,0 +1,64 @@
+<template>
+  <el-dialog title="重命名" :visible.sync="dialogVisible" width="480px" :close-on-click-modal="false">
+    <div>
+      <el-input v-model="input" placeholder="请输入名称"></el-input>
+    </div>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="dialogVisible = false">取 消</el-button>
+      <el-button type="primary" @click="confirmUpdate">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+
+<script>
+import { updateDraftsGraph, updatePubGraph } from "@/api/home"
+export default {
+  data() {
+    return {
+      dialogVisible: false,
+      input: '',
+      data: {}
+    };
+  },
+  methods: {
+    showDialog(data) {
+      this.dialogVisible = true;
+      this.input = data.name;
+      this.data = data;
+    },
+    // 确认修改
+    confirmUpdate() {
+      const newName = this.input.trim()
+      if (!newName) {
+        return
+      }
+      const pa = {
+        content:[{
+          id: this.data.id,
+          graphId: this.data.graphId,
+          name: newName
+        }],
+        projection:['name']
+      }
+      if (this.data.pub) { // 已发布
+        updatePubGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      } else { // 未发布
+        updateDraftsGraph(pa).then(res => {
+          this.updateCall(res)
+        })
+      }
+    },
+    // 更新成功回调
+    updateCall(res){
+      if (res.result == "success") {
+        this.dialogVisible = false;
+        this.$emit("updateSuc")
+      } else {
+        this.$message(res.message)
+      }
+    }
+  }
+};
+</script>

+ 31 - 7
src/components/homeView/topoImageCard.vue

@@ -20,7 +20,9 @@
               <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
             </span>
             <el-dropdown-menu slot="dropdown">
-              <el-dropdown-item v-for="t in moreList" :key="t.name" :command="t.name">{{t.label}}</el-dropdown-item>
+              <template v-for="t in moreList">
+                <el-dropdown-item :key="t.name" :command="t.name" v-if="t.show=='any' || t.show == data.pub">{{t.label}}</el-dropdown-item>
+              </template>
             </el-dropdown-menu>
           </el-dropdown>
         </div>
@@ -32,6 +34,7 @@
   </el-card>
 </template>
 <script>
+import { publishGraph } from "@/api/home"
 export default {
   props: {
     data: {
@@ -44,21 +47,42 @@ export default {
   data() {
     return {
       moreList: [
-        { name: 'rename', label: '重命名' },
-        { name: 'download', label: '下载' },
-        { name: 'editTag', label: '修改标签' },
-        { name: 'moveTo', label: '移动到' },
-        { name: 'delete', label: '删除' },
+        { name: 'rename', label: '重命名', show: 'any' },
+        { name: 'publish', label: '发布', show: false }, // 类型为未发布时出现
+        { name: 'download', label: '下载', show: true }, // 类型为发布时出现
+        { name: 'editTag', label: '修改标签', show: true }, // 类型为发布时出现
+        { name: 'moveTo', label: '移动到', show: 'any' },
+        { name: 'delete', label: '删除', show:'any' },
       ],
       checked: false
     };
   },
   methods: {
+    // 复选框改变时
     changeCheck() {
       this.$emit('changeCheck', this.data);
     },
+    // 点击更多中的命令时
     handleCommand(command) {
-      this.$message('click on item ' + command);
+      const pa = {
+        graphId: this.data.graphId,
+        id: this.data.id
+      };
+      switch(command){
+        case "rename":
+        case "download":
+        case "editTag":
+        case "moveTo":
+        case "delete":
+          this.$emit(command, this.data)
+          break;
+        case "publish":
+          publishGraph(pa).then(res => {
+            this.$message.success("发布成功");
+            this.$emit('publishSuc')
+          });
+          break;
+      }
     }
   },
 };

+ 66 - 53
src/views/home.vue

@@ -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;
+        }
       }
     }
   }