feat(wayBill): 添加标题和司机字段并调整样式
- 添加"科伦普发货单"标题 - 在页脚添加司机输入字段 - 调整分页每页显示数量为8 - 优化字体粗细和颜色样式
This commit is contained in:
@@ -4,6 +4,8 @@
|
|||||||
<div class="waybill-container" ref="waybillRef">
|
<div class="waybill-container" ref="waybillRef">
|
||||||
<div class="waybill-content">
|
<div class="waybill-content">
|
||||||
<!-- 头部信息 -->
|
<!-- 头部信息 -->
|
||||||
|
<!-- 标题信息 -->
|
||||||
|
<div class="title">科伦普发货单</div>
|
||||||
<div class="waybill-header">
|
<div class="waybill-header">
|
||||||
<div class="header-left">
|
<div class="header-left">
|
||||||
<span class="label">收货单位:</span>
|
<span class="label">收货单位:</span>
|
||||||
@@ -119,6 +121,10 @@
|
|||||||
<span class="label">发货:</span>
|
<span class="label">发货:</span>
|
||||||
<input type="text" class="editable-input signature-input transparent-input" />
|
<input type="text" class="editable-input signature-input transparent-input" />
|
||||||
</div>
|
</div>
|
||||||
|
<div class="footer-item inline">
|
||||||
|
<span class="label">司机:</span>
|
||||||
|
<input type="text" class="editable-input signature-input transparent-input" />
|
||||||
|
</div>
|
||||||
<div class="footer-item inline">
|
<div class="footer-item inline">
|
||||||
<span class="label">磅房:</span>
|
<span class="label">磅房:</span>
|
||||||
<input type="text" class="editable-input signature-input transparent-input" />
|
<input type="text" class="editable-input signature-input transparent-input" />
|
||||||
@@ -159,7 +165,7 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
perPage: 10,
|
perPage: 8,
|
||||||
totalPages: 1,
|
totalPages: 1,
|
||||||
// 本地可编辑的发货单数据
|
// 本地可编辑的发货单数据
|
||||||
localWaybill: {
|
localWaybill: {
|
||||||
@@ -423,9 +429,18 @@ export default {
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
font-family: SimSun, "Courier New", monospace;
|
font-family: SimSun, "Courier New", monospace;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
color: #000 !important;
|
||||||
|
font-weight: 900 !important;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-align: center;
|
||||||
|
font-size: 24px;
|
||||||
|
font-weight: bold;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
.waybill-content {
|
.waybill-content {
|
||||||
--paper-width-mm: 241;
|
--paper-width-mm: 241;
|
||||||
--content-width-mm: 241;
|
--content-width-mm: 241;
|
||||||
@@ -482,6 +497,7 @@ export default {
|
|||||||
border: 1px solid #dcdfe6;
|
border: 1px solid #dcdfe6;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
font-family: SimSun, serif;
|
font-family: SimSun, serif;
|
||||||
outline: none;
|
outline: none;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
@@ -527,6 +543,7 @@ export default {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
font-weight: 900;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user