canvasContainer.vue 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <template>
  2. <div class="canvas">
  3. <div class="topBox">
  4. <!--<a class="btn-black">返回店铺</a>-->
  5. <ul>
  6. <li v-for="(item, index) in deviceList" :key="index" @click="toggleDevice(item.id)"
  7. :class="{ 'on': terminal == item.id }">
  8. <i class="iconfont" :class="'icon-' + item.name"></i>
  9. </li>
  10. </ul>
  11. <el-button class="btn-save" type="primary" @click="canvasSave">保存画布</el-button>
  12. </div>
  13. <div class="bottomWarp">
  14. <div class="leftBox">
  15. <left-bar></left-bar>
  16. </div>
  17. <div class="mainContentWarp">
  18. <div class="mainContent" :class="'view-' + terminal">
  19. <shop-layout :terminal="terminal" :typeId="typeId" :shopId="shopId" @showRightBox="showRightBox"></shop-layout>
  20. </div>
  21. </div>
  22. <div class="RightBox">
  23. <tool-panel v-if="comChoose"></tool-panel>
  24. <div v-else class="noChoose">
  25. <div> <i class="iconfont icon-kong"></i>
  26. <p>没有选定的组件<br>请拖拽左侧组件栏添加或者选择一个组件</p>
  27. </div>
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. </template>
  33. <script>
  34. import leftBar from '../components/leftBar/panel.vue'
  35. import toolPanel from '../components/toolBar/toolPanel'
  36. import ShopLayout from '../components/canvasEditPage'
  37. import { mapGetters, mapMutations } from 'vuex'
  38. import api from '@@/components/canvasShow/config/api'
  39. import { sendReqMixin } from '@@/components/canvasShow/config/mixin'
  40. import Cookies from 'js-cookie'
  41. export default {
  42. name: 'canvasContainer',
  43. mixins: [sendReqMixin],
  44. components: {
  45. ShopLayout,
  46. leftBar,
  47. toolPanel
  48. },
  49. data() {
  50. return {
  51. comChoose: false,
  52. deviceList: [{
  53. id: 1,
  54. name: 'xiaochengxu'
  55. }, {
  56. id: 2,
  57. name: 'h5'
  58. }, {
  59. id: 4,
  60. name: 'pc'
  61. }, {
  62. id: 3,
  63. name: 'app'
  64. }],
  65. canvasId: '',
  66. shopId: 0
  67. }
  68. },
  69. computed: {
  70. ...mapGetters([
  71. 'terminal',
  72. 'componentsData',
  73. 'typeId'
  74. ])
  75. },
  76. mounted() {
  77. this.shopId = parseInt(Cookies.get('shopID'))
  78. this.canvasGet()
  79. },
  80. methods: {
  81. ...mapMutations({
  82. setTerminal: 'SET_TERMINAL',
  83. setActiveComponent: 'SET_ACTIVECOMPONENT',
  84. setComponentsData: 'SET_COMPONENTSDATA'
  85. }),
  86. toggleDevice(id) {
  87. this.setActiveComponent({})
  88. this.setTerminal(id)
  89. this.canvasGet()
  90. },
  91. // 保存画布
  92. canvasSave() {
  93. // 删除非必要的字符
  94. let cloneComponentsData = JSON.parse(JSON.stringify(this.componentsData))
  95. for (let i = 0; i < cloneComponentsData.length; i++) {
  96. delete cloneComponentsData[i].iconClass
  97. if (cloneComponentsData[i].type === 'productList') {
  98. cloneComponentsData[i].componentContent.productData.imgTextData = [] // 清除展示数据
  99. }
  100. }
  101. var paramsData = {
  102. terminal: this.terminal,
  103. json: JSON.stringify(cloneComponentsData)
  104. }
  105. if (this.canvasId) {
  106. paramsData.canvasId = this.canvasId
  107. }
  108. if (this.shopId && this.typeId == 3) {
  109. paramsData.shopId = this.shopId
  110. }
  111. paramsData.type = this.typeId
  112. console.log(paramsData)
  113. let params = {
  114. url: api.saveCanvas,
  115. method: 'POST',
  116. data: paramsData
  117. }
  118. this.sendReq(params, (res) => {
  119. if (res.message) {
  120. this.$message.error(res.message)
  121. } else {
  122. this.$message({
  123. message: '保存成功!',
  124. type: 'success'
  125. })
  126. }
  127. })
  128. },
  129. // 读取画布
  130. canvasGet() {
  131. var _this = this
  132. this.setComponentsData([])
  133. var apiUrl = api.getCanvas + '?terminal=' + this.terminal + '&type=' + this.typeId
  134. if (this.shopId && this.typeId == 3) {
  135. apiUrl += '&shopId=' + this.shopId
  136. }
  137. let params = {
  138. url: apiUrl,
  139. method: 'GET'
  140. }
  141. this.sendReq(params, (res) => {
  142. if (typeof (uni) !== 'undefined') {
  143. uni.setStorage({ key: 'sendNum', data: 0 });
  144. } else {
  145. localStorage.setItem('sendNum', 0)
  146. }
  147. if (JSON.stringify(res.data) !== '{}') {
  148. _this.canvasId = res.data.canvasId
  149. var componentsData = JSON.parse(res.data.json)
  150. for (let i = 0; i < componentsData.length; i++) {
  151. componentsData[i].componentContent.hasDatas = true
  152. }
  153. _this.setComponentsData(componentsData)
  154. } else {
  155. _this.canvasId = ''
  156. }
  157. }, (err) => {
  158. })
  159. },
  160. // 右侧工具栏显隐
  161. showRightBox(flag) {
  162. this.comChoose = flag
  163. }
  164. }
  165. }
  166. </script>
  167. <style lang="scss" scoped>
  168. .canvas {
  169. position: relative;
  170. display: flex;
  171. flex-direction: column;
  172. height: 100%;
  173. .topBox {
  174. height: 52px;
  175. line-height: 52px;
  176. border-bottom: 1px solid #F0F3F4;
  177. position: relative;
  178. display: flex;
  179. justify-content: center;
  180. .btn-black {
  181. position: absolute;
  182. left: 20px;
  183. top: 0;
  184. }
  185. li {
  186. width: 56px;
  187. height: 52px;
  188. cursor: pointer;
  189. text-align: center;
  190. display: inline-block;
  191. .iconfont {
  192. font-size: 24px;
  193. }
  194. &:hover,
  195. &.on {
  196. background-color: $mainColor;
  197. color: #fff;
  198. }
  199. }
  200. .btn-save {
  201. position: absolute;
  202. right: 20px;
  203. top: 5px;
  204. }
  205. }
  206. .bottomWarp {
  207. flex: 1;
  208. display: flex;
  209. height: 0;
  210. }
  211. .leftBox {
  212. height: 100%;
  213. overflow-y: auto;
  214. overflow-x: hidden;
  215. }
  216. .mainContentWarp {
  217. background-color: #F0F3F4;
  218. overflow: auto;
  219. height: 100%;
  220. flex: 1;
  221. .mainContent {
  222. margin: 0 auto;
  223. max-width: 100%;
  224. width: 750px;
  225. &.view-4 {
  226. width: 1300px;
  227. }
  228. }
  229. }
  230. .RightBox {
  231. height: 100%;
  232. overflow: auto;
  233. .noChoose {
  234. width: 320px;
  235. display: flex;
  236. height: 100%;
  237. -webkit-box-align: center;
  238. align-items: center;
  239. -webkit-box-pack: center;
  240. justify-content: center;
  241. color: #999;
  242. text-align: center;
  243. font-size: 16px;
  244. line-height: 1.8;
  245. .iconfont {
  246. font-size: 100px;
  247. color: $mainColor;
  248. }
  249. }
  250. }
  251. }</style>