mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-27 10:40:38 +00:00
bulk-operations fixed moveItem popup Three, fixed multiSelect with Shift from bottom to top
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<!--Folder Icon-->
|
||||
<div class="folder-item-wrapper" :class="{'is-inactive': disabledById && disabledById === nodes.unique_id || !disableId} ">
|
||||
<div class="folder-item-wrapper" :class="{'is-inactive': disabledById && disabledById.unique_id === nodes.unique_id || !disableId} ">
|
||||
|
||||
<div class="folder-item" :class="{'is-selected': isSelected}" @click="getFolder" :style="indent">
|
||||
<chevron-right-icon @click.stop="showTree" size="17" class="icon-arrow" :class="{'is-opened': isVisible, 'is-visible': nodes.folders.length !== 0}"></chevron-right-icon>
|
||||
@@ -34,11 +34,10 @@
|
||||
...mapGetters(['fileInfoDetail']),
|
||||
indent() {
|
||||
return { paddingLeft: this.depth * 20 + 'px' }
|
||||
console.log(this.nodes )
|
||||
},
|
||||
disableId() {
|
||||
let canBeShow = true
|
||||
if(this.fileInfoDetail.includes(this.nodes)){
|
||||
if(this.fileInfoDetail.includes(this.disabledById)){
|
||||
this.fileInfoDetail.map(item => {
|
||||
if(item.unique_id === this.nodes.unique_id) {
|
||||
canBeShow = false
|
||||
|
||||
Reference in New Issue
Block a user