|
@@ -239,11 +239,11 @@ const checkTheTransferSlip = (item) => {
|
|
|
rowData.value.fileList = [];
|
|
|
rowData.value.packageFileList = [];
|
|
|
openAllFile.value = true;
|
|
|
- proxy.post("/fileInfo/getList", { businessIdList: [item.contractId], fileType: 1 }).then((fileObj) => {
|
|
|
- rowData.value.fileList = fileObj[item.contractId] || [];
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [item.sampleId], fileType: 1 }).then((fileObj) => {
|
|
|
+ rowData.value.fileList = fileObj[item.sampleId] || [];
|
|
|
});
|
|
|
- proxy.post("/fileInfo/getList", { businessIdList: [item.contractId], fileType: 2 }).then((fileObj) => {
|
|
|
- rowData.value.packageFileList = fileObj[item.contractId] || [];
|
|
|
+ proxy.post("/fileInfo/getList", { businessIdList: [item.sampleId], fileType: 2 }).then((fileObj) => {
|
|
|
+ rowData.value.packageFileList = fileObj[item.sampleId] || [];
|
|
|
});
|
|
|
};
|
|
|
const openFile = (path) => {
|