39fc4c42 by xukangle

fix

1 parent e449fb94
...@@ -364,9 +364,9 @@ const tableBtnClick = (scope, btn) => { ...@@ -364,9 +364,9 @@ const tableBtnClick = (scope, btn) => {
364 // 数交所上架 [params.commitmentLetterInfo[0].url] 364 // 数交所上架 [params.commitmentLetterInfo[0].url]
365 params = { 365 params = {
366 guid: scope.row.guid, 366 guid: scope.row.guid,
367 accreditFile: [scope.row.accreditFile[0].url], 367 accreditFile: scope.row.accreditFile,
368 caseNumber: scope.row.caseNumber, 368 caseNumber: scope.row.caseNumber,
369 commitmentLetter: [scope.row.commitmentLetter[0].url], 369 commitmentLetter: scope.row.commitmentLetter,
370 content: scope.row.productDesc, 370 content: scope.row.productDesc,
371 costAssessmentInstitution: scope.row.costAssessmentInstitution, 371 costAssessmentInstitution: scope.row.costAssessmentInstitution,
372 costAssessmentInstitutionGuid: scope.row.costAssessmentInstitutionGuid, 372 costAssessmentInstitutionGuid: scope.row.costAssessmentInstitutionGuid,
...@@ -377,7 +377,7 @@ const tableBtnClick = (scope, btn) => { ...@@ -377,7 +377,7 @@ const tableBtnClick = (scope, btn) => {
377 damType: scope.row.damType, 377 damType: scope.row.damType,
378 dataScale: scope.row.dataScale, 378 dataScale: scope.row.dataScale,
379 deliveryWay: scope.row.deliveryWay, 379 deliveryWay: scope.row.deliveryWay,
380 evaluationFile: [scope.row.evaluationFile[0].url], 380 evaluationFile: scope.row.evaluationFile,
381 exchangeGuid: scope.row.exchangeGuid, 381 exchangeGuid: scope.row.exchangeGuid,
382 feeDesc: scope.row.feeDesc, 382 feeDesc: scope.row.feeDesc,
383 immediateApprove: true, 383 immediateApprove: true,
...@@ -390,8 +390,8 @@ const tableBtnClick = (scope, btn) => { ...@@ -390,8 +390,8 @@ const tableBtnClick = (scope, btn) => {
390 timeAreaStart: scope.row.timeAreaStart, 390 timeAreaStart: scope.row.timeAreaStart,
391 timeAreaEnd: scope.row.timeAreaEnd, 391 timeAreaEnd: scope.row.timeAreaEnd,
392 registrationCertificate: scope.row.registrationCertificate, 392 registrationCertificate: scope.row.registrationCertificate,
393 productDetail: [scope.row.productDetail[0].url], 393 productDetail: scope.row.productDetail,
394 assessmentFile: [scope.row.assessmentFile[0].url], 394 assessmentFile: scope.row.assessmentFile,
395 } 395 }
396 listingUpdate(params).then((res: any) => { 396 listingUpdate(params).then((res: any) => {
397 if (res.code == proxy.$passCode) { 397 if (res.code == proxy.$passCode) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!