|
@@ -120,27 +120,28 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import { Select, Dropdown, DropDownButton } from "meri-design";
|
|
|
+import { Select, DropDownButton } from "meri-design";
|
|
|
+// import { Dropdown } from "meri-design";
|
|
|
import leftFolder from "@/components/homeView/leftFolder.vue";
|
|
|
-import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
|
|
|
+// import leftAsideTree from "@/components/homeView/leftAsideTree.vue";
|
|
|
import planImageCard from "@/components/homeView/planImageCard.vue";
|
|
|
-import { queryDraftsGraph, queryPubGraph } from "@/api/home";
|
|
|
+// import { queryDraftsGraph, queryPubGraph } from "@/api/home";
|
|
|
import { planerQuery, pubPlanerQuery } from "@/api/labsl";
|
|
|
import rename from "@/components/homeView/rename";
|
|
|
import move from "@/components/homeView/move";
|
|
|
import deleteDialog from "@/components/homeView/deleteDialog";
|
|
|
import tagDialog from "@/components/homeView/tagDialog";
|
|
|
import recycle from "@/components/homeView/recycle";
|
|
|
-import createGraphDialog from "@/components/homeView/createGraphDialog";
|
|
|
+// import createGraphDialog from "@/components/homeView/createGraphDialog";
|
|
|
import createPlanarDialog from "@/components/homeView/createPlanarDialog";
|
|
|
import { SNetUtil } from "@persagy-web/base";
|
|
|
-import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
|
|
|
+// import equipmentDeatil from "@/components/editview/equipmentDeatilDialog";
|
|
|
export default {
|
|
|
name: "home",
|
|
|
// components: { leftAsideTree, createGraphDialog },
|
|
|
components: {
|
|
|
Select,
|
|
|
- Dropdown,
|
|
|
+ // Dropdown,
|
|
|
DropDownButton,
|
|
|
planImageCard,
|
|
|
rename,
|
|
@@ -150,7 +151,7 @@ export default {
|
|
|
tagDialog,
|
|
|
createPlanarDialog,
|
|
|
leftFolder,
|
|
|
- equipmentDeatil,
|
|
|
+ // equipmentDeatil,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -258,7 +259,7 @@ export default {
|
|
|
// 选项改变
|
|
|
changeCheck(v) {
|
|
|
// 获取该对象在选中数组中的下标(按照id匹配)
|
|
|
- let index = this._.findIndex(this.selectCard, ["id", v.id]);
|
|
|
+ const index = this._.findIndex(this.selectCard, ["id", v.id]);
|
|
|
if (index !== -1) {
|
|
|
this.selectCard.splice(index, 1);
|
|
|
} else {
|
|
@@ -380,10 +381,11 @@ export default {
|
|
|
* 跳转编辑器
|
|
|
*/
|
|
|
toEdit(data, floorLocalName, infos) {
|
|
|
- const { name, id, graphId, buildingId, floorId } = data,
|
|
|
+ const { name, id, graphId, buildingId, floorId, version } = data,
|
|
|
{ floorMap } = infos,
|
|
|
{ folderId, folderName } = this;
|
|
|
// this.$message.warning("功能开发中");
|
|
|
+ debugger;
|
|
|
this.$router.push({
|
|
|
name: "Editer",
|
|
|
query: {
|
|
@@ -396,7 +398,8 @@ export default {
|
|
|
id,
|
|
|
graphId,
|
|
|
floorMap: floorMap || "",
|
|
|
- state: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
|
|
|
+ state: this.isPub === 1 ? "Publish" : "Draft", // Publish: 已发布 Draft: 未发布
|
|
|
+ version,
|
|
|
},
|
|
|
});
|
|
|
},
|
|
@@ -442,8 +445,8 @@ export default {
|
|
|
this.cardLoading = false;
|
|
|
return false;
|
|
|
}
|
|
|
- let cardTree = [],
|
|
|
- cardList = [];
|
|
|
+ let cardTree = [];
|
|
|
+ const cardList = [];
|
|
|
cardTree = res?.content?.map((building) => {
|
|
|
building?.floorList?.map((_floor) => {
|
|
|
_floor?.planarGraphList?.map((card) => {
|