editer.vue 2.6 KB

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