solved issues bulk review part.1

This commit is contained in:
Milos Holba
2020-12-13 16:33:28 +01:00
parent 874b4bb768
commit 89ea50b893
24 changed files with 359 additions and 172 deletions

View File

@@ -30,7 +30,7 @@ export default {
},
methods: {
closeSelecting() {
events.$emit('mobileSelecting-stop')
events.$emit('mobileSelecting:stop')
},
downloadItem() {
this.fileInfoDetail.forEach((item , i) => {
@@ -52,12 +52,12 @@ export default {
}
},
created() {
events.$on('mobileSelecting-start', () => {
events.$on('mobileSelecting:start', () => {
this.mobileMultiSelect = true
})
events.$on('mobileSelecting-stop', () => {
events.$on('mobileSelecting:stop', () => {
this.mobileMultiSelect = false
})