|
@@ -278,8 +278,14 @@ function handleSave(row) {
|
|
|
})
|
|
|
}
|
|
|
/** 打开批次详情页 */
|
|
|
+// function handleColumnClick(lotCode) {
|
|
|
+// router.push({ path: "/reviseBath/lotFormParticulars/" + lotCode });
|
|
|
+// }
|
|
|
function handleColumnClick(lotCode) {
|
|
|
- router.push({ path: "/reviseBath/lotFormParticulars/" + lotCode });
|
|
|
+ // 拼接 URL
|
|
|
+ const url = "/reviseBath/lotFormParticulars/" + lotCode;
|
|
|
+ // 在新标签页打开 URL
|
|
|
+ window.open(url, '_blank');
|
|
|
}
|
|
|
function handleChangeTaksStock(value,row,index) {
|
|
|
if(value == 0) {
|