分享修改
This commit is contained in:
parent
96c1ffab10
commit
b3c0f59171
|
|
@ -17,3 +17,11 @@ export function getTransferRecordFilesApi(params) {
|
|||
params: params,
|
||||
})
|
||||
}
|
||||
|
||||
export function getTransferReceiceDetailByAcceptApi(params) {
|
||||
return request({
|
||||
url: '/smartArchives/transferReceice/getTransferReceiceDetail',
|
||||
method: 'GET',
|
||||
params: params,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -80,10 +80,12 @@ export default {
|
|||
methods: {
|
||||
// 分享
|
||||
handleShare(row) {
|
||||
console.log(row);
|
||||
|
||||
this.isflag = true;
|
||||
row.selectedNodeName = this.selectedNodeName;
|
||||
row.selectedNodeId = this.selectedNodeId;
|
||||
console.log(row);
|
||||
row.jsonId = row.id;
|
||||
|
||||
this.row = row;
|
||||
},
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@
|
|||
</tr>
|
||||
<tr>
|
||||
<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>
|
||||
<th>HTTP请求方式</th>
|
||||
|
|
|
|||
|
|
@ -117,6 +117,9 @@ import {
|
|||
getTransferApplyFilesByApplyIdApi,
|
||||
getTransferApplyApi
|
||||
} from '@/api/filesTransfer/apply'
|
||||
import {
|
||||
getTransferReceiceDetailByAcceptApi,
|
||||
} from '@/api/filesTransfer/accept'
|
||||
import ViewFile from '@/views/viewFile/viewFile.vue'
|
||||
export default {
|
||||
name: 'RecordDetail',
|
||||
|
|
|
|||
Loading…
Reference in New Issue