canvasContainer.vue 6.5 KB

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