This commit is contained in:
parent
c53c18d76d
commit
cf8fa0ffcb
|
|
@ -761,7 +761,11 @@ export default {
|
|||
return
|
||||
}
|
||||
|
||||
if (this.acthType == 2 || this.authType == 'otherShare') {
|
||||
if (
|
||||
this.acthType == 2 ||
|
||||
this.authType == 'otherShare' ||
|
||||
this.authType == 'myShare'
|
||||
) {
|
||||
// 判断选择的文件中 有没有auth 为1的 为1时仅可查看 不能下载
|
||||
const hasAuth1 = this.selectedRows.some((row) => row.auth == 1)
|
||||
// 如果有多个则把多个的序号拼接起来
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ export default {
|
|||
movedCount: this.selectedFiles.length,
|
||||
})
|
||||
} catch (error) {
|
||||
this.$message.error(error.message || '添加副本失败')
|
||||
// this.$message.error(error.message || '添加副本失败')
|
||||
return Promise.reject(error)
|
||||
} finally {
|
||||
this.loading = false
|
||||
|
|
|
|||
|
|
@ -158,7 +158,7 @@ export default {
|
|||
movedCount: this.selectedFiles.length,
|
||||
})
|
||||
} catch (error) {
|
||||
this.$message.error(error.message || '移动失败')
|
||||
// this.$message.error(error.message || '移动失败')
|
||||
return Promise.reject(error)
|
||||
} finally {
|
||||
this.loading = false
|
||||
|
|
|
|||
Loading…
Reference in New Issue