@@ -356,4 +356,12 @@ export default {
/* 打印内容的样式 */
}
}
+.print-table {
+ table,
+ th,
+ td {
+ border: 1.5px solid black;
+ border-collapse: collapse;
+ }
+}
diff --git a/src/views/materialsStation/toolsLease/apply/component/homeApply.vue b/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
index 93015f6f..0cacfc4e 100644
--- a/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
+++ b/src/views/materialsStation/toolsLease/apply/component/homeApply.vue
@@ -217,7 +217,7 @@
-
+
领料单
@@ -312,7 +312,7 @@
-
+
领料单编号明细
@@ -485,6 +485,7 @@ export default {
},
codeInfo(row) {
+ console.log('🚀 ~ codeInfo ~ row:', row)
this.showView = true
this.titleView = '查看'
this.getListViewInfo = row.maCodeVoList
@@ -567,4 +568,12 @@ export default {
width: 100px;
height: 40px;
}
+.print-table {
+ table,
+ th,
+ td {
+ border: 1.5px solid black;
+ border-collapse: collapse;
+ }
+}
diff --git a/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue b/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
index 250db547..29187990 100644
--- a/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
+++ b/src/views/materialsStation/toolsLease/outBound/component/homeApply.vue
@@ -174,7 +174,7 @@
-
+
领料单
@@ -268,7 +268,7 @@
-
+
领料单编号明细
@@ -415,11 +415,13 @@ export default {
//打开领料单
async handleLld(row) {
+ this.leaseApplyDetails = []
+ this.leaseApplyData = {}
this.title = '领料单'
this.open = true
var ids = row.id
const res = await getApplyInfo(ids)
- this.leaseApplyDetails = res.data.leaseOutDetailsList
+ this.leaseApplyDetails = res.data.leaseApplyDetailsList
this.leaseApplyData = res.data.leaseApplyInfo
},
@@ -440,9 +442,10 @@ export default {
},
codeInfo(row) {
+ console.log('🚀 ~ codeInfo ~ row:', row)
this.showView = true
this.titleView = '查看'
- this.getListViewInfo = row.maCodeList
+ this.getListViewInfo = row.maCodeVoList
},
//打印
@@ -526,4 +529,12 @@ export default {
width: 100px;
height: 40px;
}
+.print-table {
+ table,
+ th,
+ td {
+ border: 1.5px solid black;
+ border-collapse: collapse;
+ }
+}