Skip to content
Snippets Groups Projects
Commit f99b97d9 authored by Pan's avatar Pan
Browse files

refactor: change DndList name

parent 99417081
No related branches found
No related tags found
No related merge requests found
<template> <template>
<div class="twoDndList"> <div class="dndList">
<div class="twoDndList-list" :style="{width:width1}"> <div class="dndList-list" :style="{width:width1}">
<h3>{{list1Title}}</h3> <h3>{{list1Title}}</h3>
<draggable :list="list1" class="dragArea" :options="{group:'article'}"> <draggable :list="list1" class="dragArea" :options="{group:'article'}">
<div class="list-complete-item" v-for="element in list1" :key='element.id'> <div class="list-complete-item" v-for="element in list1" :key='element.id'>
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
</div> </div>
</draggable> </draggable>
</div> </div>
<div class="twoDndList-list" :style="{width:width2}"> <div class="dndList-list" :style="{width:width2}">
<h3>{{list2Title}}</h3> <h3>{{list2Title}}</h3>
<draggable :list="filterList2" class="dragArea" :options="{group:'article'}"> <draggable :list="filterList2" class="dragArea" :options="{group:'article'}">
<div class="list-complete-item" v-for="element in filterList2" :key='element.id'> <div class="list-complete-item" v-for="element in filterList2" :key='element.id'>
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
import draggable from 'vuedraggable' import draggable from 'vuedraggable'
export default { export default {
name: 'twoDndList', name: 'DndList',
components: { draggable }, components: { draggable },
computed: { computed: {
filterList2() { filterList2() {
...@@ -97,7 +97,7 @@ export default { ...@@ -97,7 +97,7 @@ export default {
</script> </script>
<style rel="stylesheet/scss" lang="scss" scoped> <style rel="stylesheet/scss" lang="scss" scoped>
.twoDndList { .dndList {
background: #fff; background: #fff;
padding-bottom: 40px; padding-bottom: 40px;
&:after { &:after {
...@@ -105,7 +105,7 @@ export default { ...@@ -105,7 +105,7 @@ export default {
display: table; display: table;
clear: both; clear: both;
} }
.twoDndList-list { .dndList-list {
float: left; float: left;
padding-bottom: 30px; padding-bottom: 30px;
&:first-of-type { &:first-of-type {
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</template> </template>
<script> <script>
import DndList from '@/components/twoDndList' import DndList from '@/components/DndList'
import { fetchList } from '@/api/article' import { fetchList } from '@/api/article'
export default { export default {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment