分享修改
This commit is contained in:
parent
96c1ffab10
commit
b3c0f59171
|
|
@ -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,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue