Ver Fonte

中间合同bug

cz há 1 ano atrás
pai
commit
cd971f505e
1 ficheiros alterados com 5 adições e 1 exclusões
  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);
   });
 };