canvasEditPage.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. <template>
  2. <div class="layout hom-layout" v-loading.fullscreen.lock="loading">
  3. <draggable
  4. class="dragArea list-group"
  5. :list="componentsData"
  6. group="pageEdit"
  7. :move="checkMove"
  8. @end="pageAdd"
  9. @change="pageChange"
  10. filter=".undraggable"
  11. >
  12. <div class="list-group-item" v-for="(item,index) in componentsData" :key="index" :class="[{'on':activeComponent == index,'undraggable':item.undraggable},'item-'+item.type]" @click="selectComponent(item,index)">
  13. <component v-show="!item.isEmpty" :isNoData.sync='item.isEmpty' :is="componentMap[terminal-1].get(item.type)" :componentContent="item.componentContent" :terminal="terminal" :typeId="typeId" :shopId="shopId" @cleckLoading="cleckLoading"></component>
  14. <div class="no-data" v-show="item.isEmpty">
  15. <i class="iconfont icon-kong"></i>
  16. <p>暂无数据<br>请在右边窗口编辑内容</p>
  17. </div>
  18. <div class="btns">
  19. <span @click="delComponent(item,index)"><i class="iconfont icon-shanchu"></i></span>
  20. </div>
  21. </div>
  22. </draggable>
  23. </div>
  24. </template>
  25. <script>
  26. import draggable from 'vuedraggable'
  27. import componentMap from './canvasShow/componentMap'
  28. import { mapGetters, mapMutations } from 'vuex'
  29. export default {
  30. // import testData from '@@/config/testData3'
  31. name: 'canvasEditPage',
  32. components: {
  33. draggable
  34. },
  35. props: {
  36. terminal: {
  37. type: Number,
  38. default: 4
  39. },
  40. typeId: {
  41. type: Number,
  42. default: 1
  43. },
  44. shopId: {
  45. type: Number,
  46. default: 0
  47. }
  48. },
  49. data () {
  50. return {
  51. activeComponent: -1,
  52. componentMap: componentMap,
  53. loading: false
  54. }
  55. },
  56. mounted () {
  57. // this.setComponentsData(testData)
  58. },
  59. computed: {
  60. ...mapGetters([
  61. 'componentsData'
  62. ])
  63. },
  64. methods: {
  65. ...mapMutations({
  66. setActiveComponent: 'SET_ACTIVECOMPONENT',
  67. setComponentsData: 'SET_COMPONENTSDATA'
  68. }),
  69. // 画布添加或者移动了组件
  70. pageChange (e) {
  71. if (e.added) {
  72. if(e.added.element.type == 'header'){
  73. var headerArr = this.componentsData.filter(v=>{
  74. return v.type === 'header'
  75. })
  76. if(headerArr.length >= 2){
  77. this.componentsData.splice(e.added.newIndex, 1)
  78. this.$message.warning('头部组件最多只能存在一个。')
  79. } else if(headerArr.length === 1 && this.componentsData[0].type !== 'header'){
  80. this.componentsData.splice(e.added.newIndex, 1)
  81. this.componentsData.unshift(e.added.element)
  82. }
  83. this.activeComponent = 0
  84. e.added.element.index = 0
  85. this.setActiveComponent(e.added.element)
  86. } else {
  87. if(e.added.element.type==='productList'&&[1,2,3].includes(this.terminal)){
  88. // 添加的是商品列表 且是小程序、H5、App
  89. this.$alert('当前选中了商品组件,若需要开启触底加载,需要将该组件置于组件列表的尾部,否则触底加载将会失效;若不开启触底加载,可能会导致性能问题!','警告')
  90. }
  91. this.activeComponent = e.added.newIndex
  92. e.added.element.index = e.added.newIndex
  93. this.setActiveComponent(e.added.element)
  94. }
  95. }
  96. if (e.moved) {
  97. this.activeComponent = e.moved.newIndex
  98. e.moved.element.index = e.moved.newIndex
  99. this.setActiveComponent(e.moved.element)
  100. }
  101. this.$emit('showRightBox', true)
  102. },
  103. // 拖动检查
  104. checkMove(e){
  105. console.log(e,'checkMove')
  106. //不允许停靠
  107. if (e.relatedContext.element.type == 'header') return false;
  108. //不允许拖拽
  109. if (e.draggedContext.element.type == 'header') return false;
  110. },
  111. pageAdd(e){
  112. console.log(e,'pageAdd')
  113. return false
  114. },
  115. // 选中组件
  116. selectComponent (item, index) {
  117. this.activeComponent = index
  118. item.index = index
  119. this.setActiveComponent(item)
  120. this.$emit('showRightBox', true)
  121. },
  122. // 删除组件
  123. delComponent (item, index) {
  124. this.$confirm('确定删除吗?', '提示', {
  125. confirmButtonText: '确定',
  126. cancelButtonText: '取消',
  127. type: 'warning'
  128. }).then(() => {
  129. this.activeComponent = -1
  130. this.componentsData.splice(index, 1)
  131. this.$emit('showRightBox', false)
  132. }).catch(() => {
  133. })
  134. },
  135. cleckLoading(){
  136. if(typeof(uni) !== 'undefined'){
  137. uni.getStorage({
  138. key: 'sendNum',
  139. success: function (res) {
  140. let sendNum = res.data;
  141. this.loading = parseInt(sendNum) !== 0
  142. }
  143. })
  144. } else {
  145. let sendNum = localStorage.getItem('sendNum')
  146. this.loading = parseInt(sendNum) !== 0
  147. }
  148. },
  149. // 检查组件是否为空
  150. checkIsNoData(dataList) {
  151. for(let i=0;i<dataList.length;i++){
  152. const newVal = dataList[i].componentContent
  153. let isEmpty = true
  154. let _data = ''
  155. switch (dataList[i].type){
  156. case 'banner':
  157. _data=newVal.bannerData
  158. _data.forEach(function(value ){
  159. if(value.bannerUrl){
  160. isEmpty = false
  161. }
  162. })
  163. break
  164. case 'header':
  165. case 'notice':
  166. case 'text':
  167. case 'imageTextNav':
  168. case 'imageText':
  169. case 'imageTextList':
  170. case 'brandList':
  171. case 'categoryList':
  172. case 'assistDiv':
  173. case 'vip':
  174. case 'live':
  175. case 'videoBox':
  176. isEmpty = false
  177. break
  178. case 'productList':
  179. _data = newVal.productData
  180. if((_data.sourceType=='1' && _data.productIdList.length > 0) || (_data.sourceType=='2' && _data.categoryId != 0)){
  181. isEmpty = false
  182. }
  183. break
  184. case 'custom':
  185. _data=newVal.imgData
  186. _data.forEach(function(value ){
  187. if(value.src){
  188. isEmpty = false
  189. }
  190. })
  191. break
  192. case 'groupList':
  193. if(this.typeId === 1){
  194. isEmpty = false
  195. }
  196. else {
  197. if(newVal.shopGroupWorkId){
  198. isEmpty = false
  199. }
  200. }
  201. break
  202. case 'spikeList':
  203. if(newVal.shopSeckillId){
  204. isEmpty = false
  205. }
  206. break
  207. case 'discountList':
  208. if(newVal.discountId){
  209. isEmpty = false
  210. }
  211. break
  212. case 'priceList':
  213. if(newVal.priceId){
  214. isEmpty = false
  215. }
  216. break
  217. case 'coupon':
  218. if(newVal.selectedCoupon.length > 0){
  219. isEmpty = false
  220. }
  221. break
  222. case 'newProduct':
  223. _data = newVal.productData
  224. if((_data.sourceType=='1' && _data.productIdList.length > 0) || (_data.sourceType=='2' && _data.categoryId != 0)){
  225. isEmpty = false
  226. }
  227. break
  228. case 'shop':
  229. _data=newVal.imgTextData
  230. _data.forEach(function(value ){
  231. if(value.img){
  232. isEmpty = false
  233. }
  234. })
  235. break
  236. }
  237. dataList[i].isEmpty = isEmpty
  238. this.$forceUpdate()
  239. }
  240. console.log(dataList)
  241. },
  242. },
  243. // 监控组件是否为空
  244. watch: {
  245. 'componentsData': {
  246. handler(newVal, oldVal) {
  247. this.checkIsNoData(newVal)
  248. },
  249. deep: true
  250. }
  251. }
  252. }
  253. </script>
  254. <style lang="scss" scoped>
  255. .hom-layout {
  256. background-color: #fff;
  257. ::v-deep .sortable-chosen {
  258. .contentBox {
  259. display: none;
  260. }
  261. .cloneText {
  262. display: block;
  263. width: 100%;
  264. height: 50px;
  265. line-height: 50px;
  266. font-size: 18px;
  267. text-align: center;
  268. background-color: $mainColor;
  269. color: #fff;
  270. }
  271. }
  272. .list-group {
  273. min-height: calc(100vh - 50px);
  274. }
  275. .list-group-item {
  276. position: relative;
  277. cursor: move;
  278. background-color: #fff;
  279. min-height: 100px;
  280. &.item-assistDiv,&.item-notice,&.item-text{
  281. min-height: 0px;
  282. }
  283. .btns {
  284. display: none;
  285. }
  286. &:hover {
  287. &:after {
  288. content: '';
  289. position: absolute;
  290. width: 100%;
  291. height: 100%;
  292. left: 0;
  293. top: 0;
  294. border: 1px $mainColor dashed;
  295. z-index: 2;
  296. }
  297. }
  298. &.on {
  299. &:after {
  300. content: '';
  301. position: absolute;
  302. width: 100%;
  303. height: 100%;
  304. left: 0;
  305. top: 0;
  306. border: 1px $mainColor solid;
  307. z-index: 2;
  308. }
  309. .btns {
  310. display: block;
  311. position: absolute;
  312. right: -13px;
  313. top: 50%;
  314. margin-top: -13px;
  315. z-index: 3;
  316. span {
  317. display: block;
  318. width: 26px;
  319. height: 26px;
  320. line-height: 26px;
  321. text-align: center;
  322. color: #666;
  323. background-color: #fff;
  324. box-shadow: 0 0 2px rgba(51, 51, 51, 0.2);
  325. cursor: pointer;
  326. }
  327. }
  328. }
  329. }
  330. }
  331. .no-data {
  332. width: 100%;
  333. display: flex;
  334. height: 300px;
  335. -webkit-box-align: center;
  336. align-items: center;
  337. -webkit-box-pack: center;
  338. justify-content: center;
  339. color: #999;
  340. text-align: center;
  341. font-size: 16px;
  342. line-height: 1.8;
  343. .iconfont {
  344. font-size: 100px;
  345. color: $mainColor;
  346. margin-right: 50px;
  347. }
  348. }
  349. </style>
  350. <style lang="scss">
  351. .warp {
  352. width: 710px;
  353. margin: 0 auto;
  354. max-width: 100%;
  355. &.terminal4 {
  356. width: 1200px;
  357. max-width: 100%;
  358. }
  359. }
  360. .flex-box {
  361. display: flex;
  362. }
  363. </style>