123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <template>
- <div class="editer">
- <div class="top-bar">
- <div class="left">
- <div class="project-name">{{ name }}</div>
- <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
- <div class="project-save">自动保存成功- v {{ version }}</div>
- </div>
- <div class="right">
- <el-tooltip class="item" effect="dark" content="下载" placement="bottom">
- <span @click="saveTopoImg" class="icon iconfont icon-xiazai"></span>
- </el-tooltip>
- <el-tooltip class="item" effect="dark" content="保存" placement="bottom">
- <span @click="saveTopo" class="icon iconfont icon-baocun"></span>
- </el-tooltip>
- <el-tooltip class="item" effect="dark" content="发布" placement="bottom">
- <span @click="issueTopo" class="icon iconfont icon-fabu"></span>
- </el-tooltip>
- </div>
- </div>
- <plan-editer></plan-editer>
- </div>
- </template>
- <script>
- // import topoEditer from "@/components/editview/topoEditer.vue";
- import planEditer from "@/components/editview/planEditer.vue";
- import bus from "@/bus/bus";
- import { mapState, mapMutations } from "vuex";
- export default {
- components: { planEditer },
- data() {
- return {
- categoryName: "", //项目分类
- };
- },
- methods: {
- ...mapMutations(["SETPROJECT", "SETVERSION"]),
- // 保存图片
- saveTopo() {
- bus.$emit("saveTopo");
- },
- // 发布
- issueTopo() {
- bus.$emit("issueTopo");
- },
- // 下载图片
- saveTopoImg() {
- bus.$emit("saveTopoImg");
- },
- },
- computed: {
- ...mapState([
- "tupoName",
- "name",
- "folderId",
- "folderName",
- "buildingId",
- "floorId",
- "floorMap",
- "floorLocalName",
- "id",
- "graphId",
- "version",
- "state",
- ]),
- },
- mounted() {
- this.categoryName = decodeURI(this.$route.query.categoryName);
- // console.log(decodeURI(decodeURI(window.location.href)));
- // folderId: "", //文件id
- // folderName: "", //文件夹名称
- // buildingId: "", //建筑id
- // floorId: "", //楼层id
- // floorMap: "", //floorMap
- // floorLocalName: "", //楼层本地名称
- // id: "", //图id
- // graphId: "", //图graphId
- // state: "Draft", /
- // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = this.$route.query;
- // this.SETPROJECT({ folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state });
- this.SETVERSION(this.$route.query.version);
- this.SETPROJECT(this.$route.query);
- },
- };
- </script>
- <style lang="less" scoped>
- .editer {
- width: 100%;
- height: calc(~"100% - 37px");
- .top-bar {
- width: 100%;
- height: 36px;
- border-bottom: 1px solid #e4e5e7;
- padding: 0 20px 0 20px;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left {
- display: flex;
- align-items: center;
- .project-name {
- font-size: 16px;
- color: #1f2429;
- font-weight: bold;
- }
- .project-type {
- color: #8d9399;
- font-size: 14px;
- margin: 0 4px;
- }
- .project-save {
- color: #8d9399;
- font-size: 12px;
- margin-left: 16px;
- }
- }
- .right {
- span {
- margin-left: 20px;
- cursor: pointer;
- }
- }
- }
- }
- </style>
|