This commit is contained in:
BianLzhaoMin 2025-11-25 10:31:59 +08:00
parent c53c18d76d
commit cf8fa0ffcb
3 changed files with 7 additions and 3 deletions

View File

@ -761,7 +761,11 @@ export default {
return return
} }
if (this.acthType == 2 || this.authType == 'otherShare') { if (
this.acthType == 2 ||
this.authType == 'otherShare' ||
this.authType == 'myShare'
) {
// auth 1 1 // auth 1 1
const hasAuth1 = this.selectedRows.some((row) => row.auth == 1) const hasAuth1 = this.selectedRows.some((row) => row.auth == 1)
// //

View File

@ -153,7 +153,7 @@ export default {
movedCount: this.selectedFiles.length, movedCount: this.selectedFiles.length,
}) })
} catch (error) { } catch (error) {
this.$message.error(error.message || '添加副本失败') // this.$message.error(error.message || '')
return Promise.reject(error) return Promise.reject(error)
} finally { } finally {
this.loading = false this.loading = false

View File

@ -158,7 +158,7 @@ export default {
movedCount: this.selectedFiles.length, movedCount: this.selectedFiles.length,
}) })
} catch (error) { } catch (error) {
this.$message.error(error.message || '移动失败') // this.$message.error(error.message || '')
return Promise.reject(error) return Promise.reject(error)
} finally { } finally {
this.loading = false this.loading = false