editer.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <template>
  2. <div class="editer">
  3. <div class="top-bar">
  4. <div class="left">
  5. <div class="project-name">{{ name }}</div>
  6. <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
  7. <div class="project-save">自动保存成功- v {{ version }}</div>
  8. </div>
  9. <div class="right">
  10. <el-tooltip class="item" effect="dark" content="下载" placement="bottom">
  11. <span @click="saveTopoImg" class="icon iconfont icon-xiazai"></span>
  12. </el-tooltip>
  13. <el-tooltip class="item" effect="dark" content="保存" placement="bottom">
  14. <span @click="saveTopo" class="icon iconfont icon-baocun"></span>
  15. </el-tooltip>
  16. <el-tooltip class="item" effect="dark" content="发布" placement="bottom">
  17. <span @click="issueTopo" class="icon iconfont icon-fabu"></span>
  18. </el-tooltip>
  19. </div>
  20. </div>
  21. <plan-editer></plan-editer>
  22. </div>
  23. </template>
  24. <script>
  25. // import topoEditer from "@/components/editview/topoEditer.vue";
  26. import planEditer from "@/components/editview/planEditer.vue";
  27. import bus from "@/bus/bus";
  28. import { mapState, mapMutations } from "vuex";
  29. export default {
  30. components: { planEditer },
  31. data() {
  32. return {
  33. categoryName: "", //项目分类
  34. };
  35. },
  36. methods: {
  37. ...mapMutations(["SETPROJECT", "SETVERSION"]),
  38. // 保存图片
  39. saveTopo() {
  40. bus.$emit("saveTopo");
  41. },
  42. // 发布
  43. issueTopo() {
  44. bus.$emit("issueTopo");
  45. },
  46. // 下载图片
  47. saveTopoImg() {
  48. bus.$emit("saveTopoImg");
  49. },
  50. },
  51. computed: {
  52. ...mapState([
  53. "tupoName",
  54. "name",
  55. "folderId",
  56. "folderName",
  57. "buildingId",
  58. "floorId",
  59. "floorMap",
  60. "floorLocalName",
  61. "id",
  62. "graphId",
  63. "version",
  64. "state",
  65. ]),
  66. },
  67. mounted() {
  68. this.categoryName = decodeURI(this.$route.query.categoryName);
  69. // console.log(decodeURI(decodeURI(window.location.href)));
  70. // folderId: "", //文件id
  71. // folderName: "", //文件夹名称
  72. // buildingId: "", //建筑id
  73. // floorId: "", //楼层id
  74. // floorMap: "", //floorMap
  75. // floorLocalName: "", //楼层本地名称
  76. // id: "", //图id
  77. // graphId: "", //图graphId
  78. // state: "Draft", /
  79. // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = this.$route.query;
  80. // this.SETPROJECT({ folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state });
  81. this.SETVERSION(this.$route.query.version);
  82. this.SETPROJECT(this.$route.query);
  83. },
  84. };
  85. </script>
  86. <style lang="less" scoped>
  87. .editer {
  88. width: 100%;
  89. height: calc(~"100% - 37px");
  90. .top-bar {
  91. width: 100%;
  92. height: 36px;
  93. border-bottom: 1px solid #e4e5e7;
  94. padding: 0 20px 0 20px;
  95. box-sizing: border-box;
  96. display: flex;
  97. align-items: center;
  98. justify-content: space-between;
  99. .left {
  100. display: flex;
  101. align-items: center;
  102. .project-name {
  103. font-size: 16px;
  104. color: #1f2429;
  105. font-weight: bold;
  106. }
  107. .project-type {
  108. color: #8d9399;
  109. font-size: 14px;
  110. margin: 0 4px;
  111. }
  112. .project-save {
  113. color: #8d9399;
  114. font-size: 12px;
  115. margin-left: 16px;
  116. }
  117. }
  118. .right {
  119. span {
  120. margin-left: 20px;
  121. cursor: pointer;
  122. }
  123. }
  124. }
  125. }
  126. </style>