Browse Source

2023-10-13 plm提交

master
杨奉源 2 years ago
parent
commit
2644989168
  1. 6
      src/api/proofing/proofingInformation.js
  2. 4
      src/views/modules/proofing/batchRequestForProofing.vue

6
src/api/proofing/proofingInformation.js

@ -90,4 +90,10 @@ export const getCustomerInformation = data => createAPI(`/plm/proofingInformatio
* @returns {*}
*/
export const closeModalDeleteFile = data => createAPI(`/plm/proofingInformation/closeModalDeleteFile`,'post',data)
/**
* 批量文件删除
* @param data
* @returns {*}
*/
export const batchDeleteProofingFile = data => createAPI(`/plm/proofingInformation/batchDeleteProofingFile`,'post',data)

4
src/views/modules/proofing/batchRequestForProofing.vue

@ -266,7 +266,7 @@
import {
proofingInformationSearch, //
getFileContentList, //
batchDeleteQuotationFile, //
batchDeleteProofingFile, //
saveProofingResult, //
saveSubmitResult, //
saveCustomerResponse, //
@ -1370,7 +1370,7 @@
orderRef3: row.orderRef3,
proofingNo: this.enterResultData.proofingNo
}
batchDeleteQuotationFile(tempData).then(({data}) => {
batchDeleteProofingFile(tempData).then(({data}) => {
if (data && data.code === 0) {
this.getFileContentData()
this.$message({

Loading…
Cancel
Save