diff --git a/klp-ui/src/views/wms/delivery/components/wayBill.vue b/klp-ui/src/views/wms/delivery/components/wayBill.vue
index e18176d6..a28a82a5 100644
--- a/klp-ui/src/views/wms/delivery/components/wayBill.vue
+++ b/klp-ui/src/views/wms/delivery/components/wayBill.vue
@@ -9,34 +9,34 @@
@@ -70,21 +70,15 @@
- |
-
- |
-
- |
-
- |
-
- |
-
- |
- |
- |
-
- |
+ {{ item.productName }} |
+ {{ item.edgeType }} |
+ {{ item.packageType }} |
+ {{ item.actualWarehouseName }} |
+ {{ item.settlementType }} |
+ {{ item.rawMaterialFactory }} |
+ {{ item.coilNumber }} |
+ {{ item.specification }} |
+ {{ item.material }} |
- 取货地点:
+ 取货地点:
@@ -115,19 +109,19 @@
@@ -165,7 +159,7 @@ export default {
data() {
return {
currentPage: 1,
- perPage: 8,
+ perPage: 7,
totalPages: 1,
// 本地可编辑的发货单数据
localWaybill: {
@@ -482,7 +476,7 @@ export default {
font-weight: bold;
display: inline-block;
width: 100px;
- font-size: 16px;
+ font-size: 18px;
text-align: right;
white-space: nowrap;
}
@@ -496,11 +490,12 @@ export default {
padding: 4px 8px;
border: 1px solid #dcdfe6;
border-radius: 4px;
- font-size: 16px;
+ font-size: 18px;
font-weight: bold;
font-family: SimSun, serif;
outline: none;
transition: all 0.2s;
+ line-height: 18px;
border-bottom: 1px dashed #dcdfe6;
}
@@ -542,13 +537,17 @@ export default {
line-height: 6mm;
text-align: center;
vertical-align: middle;
- font-size: 16px;
+ font-size: 18px;
font-weight: 900;
padding: 0;
overflow: hidden;
white-space: nowrap;
}
+.waybill-table tr {
+ border: 1px solid #000;
+}
+
/* 表格列宽设置 */
.waybill-table th:nth-child(1),
.waybill-table td:nth-child(1) {
@@ -645,7 +644,7 @@ export default {
outline: none;
background: transparent;
/* font-family: inherit; */
- font-size: 16px;
+ font-size: 18px;
line-height: 6mm;
text-align: center;
vertical-align: middle;
@@ -716,7 +715,7 @@ export default {
/* 备注样式 */
.waybill-remarks {
margin-bottom: 30px;
- font-size: 15px;
+ font-size: 18px;
line-height: 1.5;
/* font-weight: 600; */
font-weight: bold;
@@ -733,21 +732,21 @@ export default {
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
- font-size: 16px;
+ font-size: 18px;
}
.waybill-pickup-location {
display: flex;
justify-content: space-between;
align-items: center;
- margin-bottom: 20px;
- font-size: 16px;
+ margin-bottom: 10px;
+ font-size: 18px;
}
.waybill-pickup-location label {
- font-size: 16px;
+ font-size: 18px;
/* margin-right: 10px; */
text-align: left !important;
width: 40px;
@@ -768,7 +767,7 @@ export default {
}
.footer-item .label {
- font-size: 16px;
+ font-size: 18px;
margin-right: 10px;
width: 40px;
}
|