Merge branch 'master' into deploy
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
			
		||||
<template>
 | 
			
		||||
  <el-breadcrumb class="app-breadcrumb" separator="/">
 | 
			
		||||
    <transition-group name="breadcrumb">
 | 
			
		||||
      <el-breadcrumb-item v-for="(item,index) in levelList" v-if="item.meta.title&&item.meta.breadcrumb!==false" :key="item.path">
 | 
			
		||||
      <el-breadcrumb-item v-for="(item,index) in levelList" :key="item.path">
 | 
			
		||||
        <span v-if="item.redirect==='noredirect'||index==levelList.length-1" class="no-redirect">{{
 | 
			
		||||
        generateTitle(item.meta.title) }}</span>
 | 
			
		||||
        <a v-else @click.prevent="handleLink(item)">{{ generateTitle(item.meta.title) }}</a>
 | 
			
		||||
@@ -31,16 +31,14 @@ export default {
 | 
			
		||||
  methods: {
 | 
			
		||||
    generateTitle,
 | 
			
		||||
    getBreadcrumb() {
 | 
			
		||||
      let matched = this.$route.matched.filter(item => {
 | 
			
		||||
        if (item.name) {
 | 
			
		||||
          return true
 | 
			
		||||
        }
 | 
			
		||||
      })
 | 
			
		||||
      let matched = this.$route.matched.filter(item => item.name)
 | 
			
		||||
 | 
			
		||||
      const first = matched[0]
 | 
			
		||||
      if (first && first.name.trim().toLocaleLowerCase() !== 'Dashboard'.toLocaleLowerCase()) {
 | 
			
		||||
        matched = [{ path: '/dashboard', meta: { title: 'dashboard' }}].concat(matched)
 | 
			
		||||
      }
 | 
			
		||||
      this.levelList = matched
 | 
			
		||||
 | 
			
		||||
      this.levelList = matched.filter(item => item.meta && item.meta.title && item.meta.breadcrumb !== false)
 | 
			
		||||
    },
 | 
			
		||||
    pathCompile(path) {
 | 
			
		||||
      // To solve this problem https://github.com/PanJiaChen/vue-element-admin/issues/561
 | 
			
		||||
 
 | 
			
		||||
@@ -4,7 +4,7 @@
 | 
			
		||||
      <h3>{{ list1Title }}</h3>
 | 
			
		||||
      <draggable :list="list1" :options="{group:'article'}" class="dragArea">
 | 
			
		||||
        <div v-for="element in list1" :key="element.id" class="list-complete-item">
 | 
			
		||||
          <div class="list-complete-item-handle">[{{ element.author }}] {{ element.title }}</div>
 | 
			
		||||
          <div class="list-complete-item-handle">{{ element.id }}[{{ element.author }}] {{ element.title }}</div>
 | 
			
		||||
          <div style="position:absolute;right:0px;">
 | 
			
		||||
            <span style="float: right ;margin-top: -20px;margin-right:5px;" @click="deleteEle(element)">
 | 
			
		||||
              <i style="color:#ff4949" class="el-icon-delete"/>
 | 
			
		||||
@@ -15,9 +15,9 @@
 | 
			
		||||
    </div>
 | 
			
		||||
    <div :style="{width:width2}" class="dndList-list">
 | 
			
		||||
      <h3>{{ list2Title }}</h3>
 | 
			
		||||
      <draggable :list="filterList2" :options="{group:'article'}" class="dragArea">
 | 
			
		||||
        <div v-for="element in filterList2" :key="element.id" class="list-complete-item">
 | 
			
		||||
          <div class="list-complete-item-handle2" @click="pushEle(element)"> [{{ element.author }}] {{ element.title }}</div>
 | 
			
		||||
      <draggable :list="list2" :options="{group:'article'}" class="dragArea">
 | 
			
		||||
        <div v-for="element in list2" :key="element.id" class="list-complete-item">
 | 
			
		||||
          <div class="list-complete-item-handle2" @click="pushEle(element)">{{ element.id }} [{{ element.author }}] {{ element.title }}</div>
 | 
			
		||||
        </div>
 | 
			
		||||
      </draggable>
 | 
			
		||||
    </div>
 | 
			
		||||
@@ -60,16 +60,6 @@ export default {
 | 
			
		||||
      default: '48%'
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  computed: {
 | 
			
		||||
    filterList2() {
 | 
			
		||||
      return this.list2.filter(v => {
 | 
			
		||||
        if (this.isNotInList1(v)) {
 | 
			
		||||
          return v
 | 
			
		||||
        }
 | 
			
		||||
        return false
 | 
			
		||||
      })
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
    isNotInList1(v) {
 | 
			
		||||
      return this.list1.every(k => v.id !== k.id)
 | 
			
		||||
@@ -90,7 +80,16 @@ export default {
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    pushEle(ele) {
 | 
			
		||||
      this.list1.push(ele)
 | 
			
		||||
      for (const item of this.list2) {
 | 
			
		||||
        if (item.id === ele.id) {
 | 
			
		||||
          const index = this.list2.indexOf(item)
 | 
			
		||||
          this.list2.splice(index, 1)
 | 
			
		||||
          break
 | 
			
		||||
        }
 | 
			
		||||
      }
 | 
			
		||||
      if (this.isNotInList1(ele)) {
 | 
			
		||||
        this.list1.push(ele)
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -2,26 +2,13 @@
 | 
			
		||||
  <div>
 | 
			
		||||
    <svg
 | 
			
		||||
      :class="{'is-active':isActive}"
 | 
			
		||||
      t="1492500959545"
 | 
			
		||||
      class="hamburger"
 | 
			
		||||
      style=""
 | 
			
		||||
      viewBox="0 0 1024 1024"
 | 
			
		||||
      version="1.1"
 | 
			
		||||
      xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
      p-id="1691"
 | 
			
		||||
      xmlns:xlink="http://www.w3.org/1999/xlink"
 | 
			
		||||
      width="64"
 | 
			
		||||
      height="64"
 | 
			
		||||
      @click="toggleClick">
 | 
			
		||||
      <path
 | 
			
		||||
        d="M966.8023 568.849776 57.196677 568.849776c-31.397081 0-56.850799-25.452695-56.850799-56.850799l0 0c0-31.397081 25.452695-56.849776 56.850799-56.849776l909.605623 0c31.397081 0 56.849776 25.452695 56.849776 56.849776l0 0C1023.653099 543.397081 998.200404 568.849776 966.8023 568.849776z"
 | 
			
		||||
        p-id="1692"/>
 | 
			
		||||
      <path
 | 
			
		||||
        d="M966.8023 881.527125 57.196677 881.527125c-31.397081 0-56.850799-25.452695-56.850799-56.849776l0 0c0-31.397081 25.452695-56.849776 56.850799-56.849776l909.605623 0c31.397081 0 56.849776 25.452695 56.849776 56.849776l0 0C1023.653099 856.07443 998.200404 881.527125 966.8023 881.527125z"
 | 
			
		||||
        p-id="1693"/>
 | 
			
		||||
      <path
 | 
			
		||||
        d="M966.8023 256.17345 57.196677 256.17345c-31.397081 0-56.850799-25.452695-56.850799-56.849776l0 0c0-31.397081 25.452695-56.850799 56.850799-56.850799l909.605623 0c31.397081 0 56.849776 25.452695 56.849776 56.850799l0 0C1023.653099 230.720755 998.200404 256.17345 966.8023 256.17345z"
 | 
			
		||||
        p-id="1694"/>
 | 
			
		||||
      <path d="M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z" />
 | 
			
		||||
    </svg>
 | 
			
		||||
  </div>
 | 
			
		||||
</template>
 | 
			
		||||
@@ -48,12 +35,8 @@ export default {
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
  width: 20px;
 | 
			
		||||
  height: 20px;
 | 
			
		||||
  transform: rotate(90deg);
 | 
			
		||||
  transition: .38s;
 | 
			
		||||
  transform-origin: 50% 50%;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.hamburger.is-active {
 | 
			
		||||
  transform: rotate(0deg);
 | 
			
		||||
  transform: rotate(180deg);
 | 
			
		||||
}
 | 
			
		||||
</style>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user