增加共享接口字段传参
This commit is contained in:
parent
a449394a07
commit
8c8f2d238d
|
|
@ -823,6 +823,7 @@ export default {
|
|||
this.selectedFilesForShare = this.selectedRows.map((row) => ({
|
||||
id: row.id,
|
||||
name: row.name,
|
||||
type: row.type,
|
||||
}))
|
||||
this.dialogConfig.outerTitle = '共享'
|
||||
this.dialogConfig.outerVisible = true
|
||||
|
|
@ -839,6 +840,7 @@ export default {
|
|||
{
|
||||
id: row.id,
|
||||
name: row.name,
|
||||
type: row.type,
|
||||
},
|
||||
]
|
||||
this.dialogConfig.outerTitle = '共享'
|
||||
|
|
|
|||
|
|
@ -526,6 +526,7 @@ export default {
|
|||
.map((item) => item.userId)
|
||||
.join(','),
|
||||
auth: this.form.permission,
|
||||
type: this.selectedFiles[0].type,
|
||||
}
|
||||
this.loading = true
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in New Issue