|
@@ -120,10 +120,8 @@
|
|
|
|
|
|
<script>
|
|
|
import { Select, DropDownButton } from "meri-design";
|
|
|
-// import { Dropdown } from "meri-design";
|
|
|
import leftFolder from "@/components/homeView/leftFolder.vue";
|
|
|
import planImageCard from "@/components/homeView/planImageCard.vue";
|
|
|
-// import { queryDraftsGraph, queryPubGraph } from "@/api/home";
|
|
|
import { planerQuery, pubPlanerQuery, planerRead, pubPlanerRead, planerSave } from "@/api/labsl";
|
|
|
import rename from "@/components/homeView/rename";
|
|
|
import move from "@/components/homeView/move";
|
|
@@ -132,7 +130,7 @@ import tagDialog from "@/components/homeView/tagDialog";
|
|
|
import recycle from "@/components/homeView/recycle";
|
|
|
import createPlanarDialog from "@/components/homeView/createPlanarDialog";
|
|
|
import { SNetUtil } from "@persagy-web/base";
|
|
|
-// import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
|
|
|
+import { mapState, mapMutations } from "vuex";
|
|
|
export default {
|
|
|
name: "home",
|
|
|
components: {
|
|
@@ -193,7 +191,11 @@ export default {
|
|
|
folderName: "", //文件夹名称
|
|
|
};
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ ...mapState(["showCheckbox"]),
|
|
|
+ },
|
|
|
methods: {
|
|
|
+ ...mapMutations(["SETCARDSHOWCHECKBOX"]),
|
|
|
testClick(data) {
|
|
|
console.log(data);
|
|
|
},
|
|
@@ -409,7 +411,7 @@ export default {
|
|
|
PageNumber: 1,
|
|
|
PageSize: 1000,
|
|
|
};
|
|
|
-
|
|
|
+
|
|
|
const res = await planerQuery(postParams);
|
|
|
if (res.result !== "success") {
|
|
|
this.$message(res.result);
|
|
@@ -547,6 +549,21 @@ export default {
|
|
|
this.selectCard = [];
|
|
|
this.queryGraph();
|
|
|
},
|
|
|
+ /**
|
|
|
+ * 监听选择的卡片长度,有选择大于1时,设置所有卡片的复选框显示
|
|
|
+ */
|
|
|
+ selectCard: {
|
|
|
+ handler(newV) {
|
|
|
+ if (newV.length) {
|
|
|
+ console.log(newV);
|
|
|
+ this.SETCARDSHOWCHECKBOX(true);
|
|
|
+ } else {
|
|
|
+ this.SETCARDSHOWCHECKBOX(false);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ deep: true,
|
|
|
+ immediate: true,
|
|
|
+ },
|
|
|
},
|
|
|
};
|
|
|
</script>
|