Browse Source

中间合同bug

cz 1 year ago
parent
commit
cd971f505e
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/views/salesMange/saleContract/middle/index.vue

+ 5 - 1
src/views/salesMange/saleContract/middle/index.vue

@@ -581,7 +581,11 @@ const clickPrint = (row) => {
   };
   openPrint.value = true;
   proxy.post("/intermediateContract/getPrintInfo", { id: row.id }).then((res) => {
-    printDetails.value = {...res,...res.contractMap.contract};
+    printDetails.value = {...res,...res.contractMap.contract,
+    buyContactName:res.buyContactName,
+    buyContactNumber:res.buyContactNumber,
+    
+    };
     console.log(printDetails.value.contractMap.contractProductList);
   });
 };