分享修改

This commit is contained in:
cwchen 2025-09-28 16:26:46 +08:00
parent 96c1ffab10
commit b3c0f59171
4 changed files with 15 additions and 2 deletions

View File

@ -17,3 +17,11 @@ export function getTransferRecordFilesApi(params) {
params: params, params: params,
}) })
} }
export function getTransferReceiceDetailByAcceptApi(params) {
return request({
url: '/smartArchives/transferReceice/getTransferReceiceDetail',
method: 'GET',
params: params,
})
}

View File

@ -80,10 +80,12 @@ export default {
methods: { methods: {
// //
handleShare(row) { handleShare(row) {
console.log(row);
this.isflag = true; this.isflag = true;
row.selectedNodeName = this.selectedNodeName; row.selectedNodeName = this.selectedNodeName;
row.selectedNodeId = this.selectedNodeId; row.selectedNodeId = this.selectedNodeId;
console.log(row); row.jsonId = row.id;
this.row = row; this.row = row;
}, },

View File

@ -17,7 +17,7 @@
</tr> </tr>
<tr> <tr>
<th>URL</th> <th>URL</th>
<td>smartArchives/data/Collect/list?id={{ rowData.id }}</td> <td>smartArchives/data/Collect/queryById?id={{ rowData.selectedNodeId }}&jsonId={{ rowData.jsonId }}</td>
</tr> </tr>
<tr> <tr>
<th>HTTP请求方式</th> <th>HTTP请求方式</th>

View File

@ -117,6 +117,9 @@ import {
getTransferApplyFilesByApplyIdApi, getTransferApplyFilesByApplyIdApi,
getTransferApplyApi getTransferApplyApi
} from '@/api/filesTransfer/apply' } from '@/api/filesTransfer/apply'
import {
getTransferReceiceDetailByAcceptApi,
} from '@/api/filesTransfer/accept'
import ViewFile from '@/views/viewFile/viewFile.vue' import ViewFile from '@/views/viewFile/viewFile.vue'
export default { export default {
name: 'RecordDetail', name: 'RecordDetail',