canvasEditPage.vue 8.4 KB

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