2025-11-28 11:02:19 +08:00
|
|
|
|
<!-- 发货单组件 -->
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<div>
|
|
|
|
|
|
<div class="waybill-container" ref="waybillRef">
|
|
|
|
|
|
<!-- 头部信息 -->
|
|
|
|
|
|
<div class="waybill-header">
|
|
|
|
|
|
<div class="header-left">
|
|
|
|
|
|
<span class="label">收货单位:</span>
|
|
|
|
|
|
<input type="text" class="editable-input transparent-input" v-model="localWaybill.consigneeUnit" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header-center">
|
|
|
|
|
|
<input type="text" class="editable-input date-input transparent-input" v-model="localWaybill.deliveryYear" />
|
|
|
|
|
|
<span class="label date-label">年</span>
|
|
|
|
|
|
<input type="text" class="editable-input date-input transparent-input" v-model="localWaybill.deliveryMonth" />
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<span class="label date-label">月</span>
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<input type="text" class="editable-input date-input transparent-input" v-model="localWaybill.deliveryDay" />
|
|
|
|
|
|
<span class="label date-label">日</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header-right">
|
|
|
|
|
|
<span class="label">发货单位:</span>
|
|
|
|
|
|
<input type="text" class="editable-input transparent-input" v-model="localWaybill.senderUnit" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<div class="waybill-header">
|
2025-11-28 14:27:55 +08:00
|
|
|
|
<div class="header-left">
|
|
|
|
|
|
<span class="label">负责人:</span>
|
|
|
|
|
|
<input type="text" class="editable-input transparent-input" v-model="localWaybill.principal" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header-right">
|
|
|
|
|
|
<span class="label">电话:</span>
|
|
|
|
|
|
<input type="text" class="editable-input transparent-input" v-model="localWaybill.principalPhone" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="header-center">
|
|
|
|
|
|
<span class="label">车牌:</span>
|
|
|
|
|
|
<input type="text" class="editable-input transparent-input" v-model="localWaybill.licensePlate" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<!-- 表格 -->
|
|
|
|
|
|
<table class="waybill-table">
|
|
|
|
|
|
<thead>
|
|
|
|
|
|
<tr>
|
|
|
|
|
|
<th>品名</th>
|
|
|
|
|
|
<th>切边</th>
|
|
|
|
|
|
<th>包装</th>
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<th>仓库位置</th>
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<th>结算</th>
|
|
|
|
|
|
<th>原料厂家</th>
|
|
|
|
|
|
<th>卷号</th>
|
|
|
|
|
|
<th>规格</th>
|
|
|
|
|
|
<th>材质</th>
|
|
|
|
|
|
<th>数量(件)</th>
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<th>重量(T)</th>
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<th>单价</th>
|
|
|
|
|
|
<th>备注</th>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</thead>
|
|
|
|
|
|
<tbody>
|
|
|
|
|
|
<!-- 无明细提示 -->
|
|
|
|
|
|
<tr v-if="localWaybillDetails.length === 0">
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<td colspan="13" class="no-data">
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<div class="no-data-content">
|
|
|
|
|
|
<el-empty description="暂无发货单明细" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
<!-- 明细数据 -->
|
|
|
|
|
|
<tr v-for="(item, index) in localWaybillDetails" :key="index">
|
|
|
|
|
|
<td><input type="text" class="transparent-input" v-model="item.productName" /></td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.edgeType" />
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.packageType" />
|
|
|
|
|
|
</td>
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.actualWarehouseName" />
|
|
|
|
|
|
</td>
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.settlementType" />
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.rawMaterialFactory" />
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.coilNumber" /></td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.specification" /></td>
|
|
|
|
|
|
<td><input type="text" class="table-input transparent-input" v-model="item.material" />
|
|
|
|
|
|
</td>
|
|
|
|
|
|
<td><input type="number" class="table-input transparent-input" v-model.number="item.quantity"
|
|
|
|
|
|
placeholder="0" /></td>
|
|
|
|
|
|
<td><input type="number" class="table-input transparent-input" v-model.number="item.weight"
|
|
|
|
|
|
placeholder="0.00" /></td>
|
|
|
|
|
|
<td><input type="number" class="table-input transparent-input" v-model.number="item.unitPrice"
|
|
|
|
|
|
placeholder="0.00" /></td>
|
|
|
|
|
|
<td>
|
|
|
|
|
|
<div class="table-cell-with-action">
|
|
|
|
|
|
<input type="text" class="table-input transparent-input" v-model="item.remark" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
|
|
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 备注说明 -->
|
|
|
|
|
|
<div class="waybill-remarks">
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<p>
|
|
|
|
|
|
1、品名:冷硬钢卷(酸连轧)、冷轧钢卷(脱脂退火火拉矫)、镀锌卷板,镀锌管料(镀锌分剪料);2、切边:净边/毛边;3、包装:裸包:周三径四;简包1:周三径四内外护角;简包2:周三径四+防锈纸;普包:周三径四+内外护角+防锈纸+端护板;精包1:周三径四+内外护角+防锈纸+薄膜+端护板+内外护板;精包2:周三径四+内外护角+防锈纸+薄膜+端护板+内外护板+木托。
|
|
|
|
|
|
</p>
|
2025-11-28 11:02:19 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-12-01 17:53:19 +08:00
|
|
|
|
<div class="waybill-pickup-location">
|
|
|
|
|
|
<!-- <div class="pickup-location-item inline"> -->
|
2026-01-27 15:41:29 +08:00
|
|
|
|
<span class="label">取货地点:</span>
|
|
|
|
|
|
<input type="text" class="editable-input full-input transparent-input" v-model="localWaybill.pickupLocation" />
|
2025-12-01 17:53:19 +08:00
|
|
|
|
<!-- </div> -->
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
<!-- 签名栏 -->
|
|
|
|
|
|
<div class="waybill-footer">
|
|
|
|
|
|
<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">
|
|
|
|
|
|
<span class="label">发货:</span>
|
|
|
|
|
|
<input type="text" class="editable-input signature-input transparent-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="footer-item inline">
|
|
|
|
|
|
<span class="label">磅房:</span>
|
|
|
|
|
|
<input type="text" class="editable-input signature-input transparent-input" />
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 操作按钮 -->
|
|
|
|
|
|
<div class="waybill-actions">
|
|
|
|
|
|
<el-button type="primary" @click="saveAsImage">保存为图片</el-button>
|
|
|
|
|
|
<el-button type="success" @click="printWaybill">打印</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import domtoimage from 'dom-to-image';
|
2026-01-27 15:41:29 +08:00
|
|
|
|
import { PDFDocument } from 'pdf-lib';
|
|
|
|
|
|
import html2canvas from 'html2canvas';
|
2025-11-28 11:02:19 +08:00
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
props: {
|
|
|
|
|
|
// 组件接收完整的发货单内容, 渲染发货单,这个面板内包括一个保存为图片(已经安装了dom-to-image)和一个打印按钮(已经安装了print-js)
|
|
|
|
|
|
waybill: {
|
|
|
|
|
|
type: Object,
|
|
|
|
|
|
default: () => { }
|
|
|
|
|
|
},
|
|
|
|
|
|
waybillDetails: {
|
|
|
|
|
|
type: Array,
|
|
|
|
|
|
default: () => []
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
// 本地可编辑的发货单数据
|
|
|
|
|
|
localWaybill: {
|
|
|
|
|
|
consigneeUnit: '',
|
|
|
|
|
|
senderUnit: '',
|
|
|
|
|
|
deliveryYear: '',
|
|
|
|
|
|
deliveryMonth: '',
|
2025-11-28 14:27:55 +08:00
|
|
|
|
deliveryDay: '',
|
|
|
|
|
|
principal: '',
|
|
|
|
|
|
principalPhone: '',
|
2025-12-09 14:37:46 +08:00
|
|
|
|
licensePlate: '',
|
|
|
|
|
|
pickupLocation: ''
|
2025-11-28 11:02:19 +08:00
|
|
|
|
},
|
|
|
|
|
|
// 本地可编辑的发货单明细
|
|
|
|
|
|
localWaybillDetails: []
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
// 监听props变化,更新本地数据
|
|
|
|
|
|
waybill: {
|
|
|
|
|
|
handler(newVal) {
|
|
|
|
|
|
if (newVal) {
|
|
|
|
|
|
this.localWaybill = {
|
|
|
|
|
|
consigneeUnit: newVal.consigneeUnit || '',
|
|
|
|
|
|
senderUnit: newVal.senderUnit || '',
|
|
|
|
|
|
deliveryYear: this.getYearFromDate(newVal.deliveryTime) || '',
|
|
|
|
|
|
deliveryMonth: this.getMonthFromDate(newVal.deliveryTime) || '',
|
2025-11-28 14:27:55 +08:00
|
|
|
|
deliveryDay: this.getDayFromDate(newVal.deliveryTime) || '',
|
|
|
|
|
|
principal: newVal.principal || '',
|
|
|
|
|
|
principalPhone: newVal.principalPhone || '',
|
2025-12-09 14:37:46 +08:00
|
|
|
|
licensePlate: newVal.licensePlate || '',
|
|
|
|
|
|
pickupLocation: newVal.pickupLocation || ''
|
2025-11-28 11:02:19 +08:00
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
deep: true
|
|
|
|
|
|
},
|
|
|
|
|
|
waybillDetails: {
|
|
|
|
|
|
handler(newVal) {
|
2025-12-09 14:37:46 +08:00
|
|
|
|
console.log('waybillDetails', newVal);
|
2025-11-28 11:02:19 +08:00
|
|
|
|
if (newVal && Array.isArray(newVal)) {
|
|
|
|
|
|
this.localWaybillDetails = [...newVal];
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.localWaybillDetails = [];
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
deep: true
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
// 从日期字符串中提取年份
|
|
|
|
|
|
getYearFromDate(dateStr) {
|
|
|
|
|
|
if (dateStr) {
|
|
|
|
|
|
const date = new Date(dateStr);
|
|
|
|
|
|
return date.getFullYear().toString();
|
|
|
|
|
|
}
|
|
|
|
|
|
return '';
|
|
|
|
|
|
},
|
|
|
|
|
|
// 从日期字符串中提取月份
|
|
|
|
|
|
getMonthFromDate(dateStr) {
|
|
|
|
|
|
if (dateStr) {
|
|
|
|
|
|
const date = new Date(dateStr);
|
|
|
|
|
|
return (date.getMonth() + 1).toString();
|
|
|
|
|
|
}
|
|
|
|
|
|
return '';
|
|
|
|
|
|
},
|
|
|
|
|
|
// 从日期字符串中提取日
|
|
|
|
|
|
getDayFromDate(dateStr) {
|
|
|
|
|
|
if (dateStr) {
|
|
|
|
|
|
const date = new Date(dateStr);
|
|
|
|
|
|
return date.getDate().toString();
|
|
|
|
|
|
}
|
|
|
|
|
|
return '';
|
|
|
|
|
|
},
|
|
|
|
|
|
// 保存为图片
|
|
|
|
|
|
saveAsImage() {
|
|
|
|
|
|
const node = this.$refs.waybillRef;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 确保容器在保存图片时能完整显示所有内容
|
|
|
|
|
|
const originalWidth = node.style.width;
|
|
|
|
|
|
const originalOverflow = node.style.overflow;
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 临时调整容器样式,确保所有内容可见
|
|
|
|
|
|
node.style.width = 'auto';
|
|
|
|
|
|
node.style.overflow = 'visible';
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 获取实际内容宽度
|
|
|
|
|
|
const contentWidth = node.scrollWidth;
|
|
|
|
|
|
const contentHeight = node.scrollHeight;
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
domtoimage.toPng(node, {
|
|
|
|
|
|
width: contentWidth,
|
|
|
|
|
|
height: contentHeight,
|
|
|
|
|
|
style: {
|
|
|
|
|
|
width: `${contentWidth}px`,
|
|
|
|
|
|
height: `${contentHeight}px`,
|
|
|
|
|
|
overflow: 'visible'
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.then(dataUrl => {
|
|
|
|
|
|
const link = document.createElement('a');
|
|
|
|
|
|
link.download = `发货单_${this.waybill.waybillName || this.waybill.waybillNo || Date.now()}.png`;
|
|
|
|
|
|
link.href = dataUrl;
|
|
|
|
|
|
link.click();
|
|
|
|
|
|
})
|
|
|
|
|
|
.catch(error => {
|
|
|
|
|
|
console.error('保存图片失败:', error);
|
|
|
|
|
|
this.$message.error('保存图片失败');
|
2025-11-28 11:20:41 +08:00
|
|
|
|
})
|
|
|
|
|
|
.finally(() => {
|
|
|
|
|
|
// 恢复原始样式
|
|
|
|
|
|
node.style.width = originalWidth;
|
|
|
|
|
|
node.style.overflow = originalOverflow;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
// 打印发货单
|
2026-01-27 15:41:29 +08:00
|
|
|
|
async printWaybill() {
|
2025-11-28 11:02:19 +08:00
|
|
|
|
const node = this.$refs.waybillRef;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 确保容器在打印时能完整显示所有内容
|
|
|
|
|
|
const originalWidth = node.style.width;
|
2026-01-27 15:41:29 +08:00
|
|
|
|
const originalHeight = node.style.height;
|
|
|
|
|
|
const paperWidthMm = 297;
|
|
|
|
|
|
const paperHeightMm = 180;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
const originalOverflow = node.style.overflow;
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 临时调整容器样式,确保所有内容可见
|
|
|
|
|
|
node.style.width = 'auto';
|
|
|
|
|
|
node.style.overflow = 'visible';
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 获取实际内容宽度
|
|
|
|
|
|
const contentWidth = node.scrollWidth;
|
2026-01-27 15:41:29 +08:00
|
|
|
|
const contentHeight = node.scrollHeight;
|
|
|
|
|
|
|
|
|
|
|
|
// console.log('contentWidth', contentWidth, originalWidth, originalHeight);
|
|
|
|
|
|
// 改用html2canvas + pdf-lib打印pdf
|
|
|
|
|
|
const canvas = await html2canvas(node, {
|
|
|
|
|
|
backgroundColor: '#ffffff',
|
|
|
|
|
|
scale: 3,
|
|
|
|
|
|
useCORS: true,
|
|
|
|
|
|
// 让 html2canvas 为频繁读回优化 Canvas(与批量导出一致)
|
|
|
|
|
|
willReadFrequently: true,
|
|
|
|
|
|
// 确保按元素尺寸截图,明确指定宽高
|
|
|
|
|
|
width: contentWidth,
|
|
|
|
|
|
height: contentHeight,
|
|
|
|
|
|
windowWidth: contentWidth,
|
|
|
|
|
|
windowHeight: contentHeight,
|
|
|
|
|
|
});
|
|
|
|
|
|
// 5. 使用 pdf-lib 生成单页 PDF(占满整张纸,无边距)
|
|
|
|
|
|
const mmToPt = 72 / 25.4;
|
|
|
|
|
|
const pageWidthPt = paperWidthMm * mmToPt;
|
|
|
|
|
|
const pageHeightPt = paperHeightMm * mmToPt;
|
|
|
|
|
|
|
|
|
|
|
|
const pdfDoc = await PDFDocument.create();
|
|
|
|
|
|
console.log('canvas', canvas);
|
|
|
|
|
|
const png = canvas.toDataURL('image/png');
|
|
|
|
|
|
const imgPng = await pdfDoc.embedPng(png);
|
|
|
|
|
|
// 确保页面尺寸正确:宽100mm,高80mm(横向)
|
|
|
|
|
|
const page = pdfDoc.addPage([pageWidthPt, pageHeightPt]);
|
|
|
|
|
|
|
|
|
|
|
|
// 直接拉伸填充整个PDF页面,不留边距,确保占满整张纸
|
|
|
|
|
|
// 从(0,0)开始,直接填充整个页面尺寸
|
|
|
|
|
|
page.drawImage(imgPng, {
|
|
|
|
|
|
x: 0,
|
|
|
|
|
|
y: 0,
|
|
|
|
|
|
width: pageWidthPt,
|
|
|
|
|
|
height: pageHeightPt
|
2025-11-28 11:02:19 +08:00
|
|
|
|
});
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
|
|
|
|
|
const pdfBytes = await pdfDoc.save();
|
|
|
|
|
|
const blob = new Blob([pdfBytes], { type: 'application/pdf' });
|
|
|
|
|
|
const url = URL.createObjectURL(blob);
|
|
|
|
|
|
|
|
|
|
|
|
const win = window.open(url, '_blank');
|
|
|
|
|
|
if (!win) {
|
|
|
|
|
|
const a = document.createElement('a');
|
|
|
|
|
|
a.href = url;
|
|
|
|
|
|
a.download = `标签_${new Date().getTime()}.pdf`;
|
|
|
|
|
|
document.body.appendChild(a);
|
|
|
|
|
|
a.click();
|
|
|
|
|
|
document.body.removeChild(a);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-11-28 11:20:41 +08:00
|
|
|
|
// 恢复原始样式
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
node.style.width = originalWidth;
|
|
|
|
|
|
node.style.overflow = originalOverflow;
|
|
|
|
|
|
}, 100);
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.waybill-container {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 960px;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
max-width: none;
|
2025-11-28 14:27:55 +08:00
|
|
|
|
min-width: 850px;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: white;
|
|
|
|
|
|
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
|
font-family: SimSun, serif;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
overflow-x: auto;
|
|
|
|
|
|
overflow-y: visible;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 头部样式 */
|
|
|
|
|
|
.waybill-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header-left,
|
|
|
|
|
|
.header-right {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.header-center {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.label {
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
display: inline-block;
|
|
|
|
|
|
width: 80px;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.date-label {
|
2025-11-28 14:27:55 +08:00
|
|
|
|
width: 1em;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 可编辑输入框样式 */
|
|
|
|
|
|
.editable-input {
|
|
|
|
|
|
padding: 4px 8px;
|
|
|
|
|
|
border: 1px solid #dcdfe6;
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
font-family: SimSun, serif;
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
transition: all 0.2s;
|
|
|
|
|
|
border-bottom: 1px dashed #dcdfe6;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.editable-input:focus {
|
|
|
|
|
|
border-color: #409eff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.date-input {
|
2025-11-28 14:27:55 +08:00
|
|
|
|
width: 30px;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 透明输入框样式 */
|
|
|
|
|
|
.transparent-input {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.transparent-input:focus {
|
|
|
|
|
|
border-bottom-color: #409eff;
|
|
|
|
|
|
background-color: rgba(64, 158, 255, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 表格样式 */
|
|
|
|
|
|
.waybill-table {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
table-layout: fixed;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th,
|
|
|
|
|
|
.waybill-table td {
|
|
|
|
|
|
border: 1px solid #000;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
line-height: 24px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
word-break: break-all;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 表格列宽设置 */
|
|
|
|
|
|
.waybill-table th:nth-child(1),
|
|
|
|
|
|
.waybill-table td:nth-child(1) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 80px;
|
|
|
|
|
|
/* 品名 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(2),
|
|
|
|
|
|
.waybill-table td:nth-child(2) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
/* 切边 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(3),
|
|
|
|
|
|
.waybill-table td:nth-child(3) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
/* 包装 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(4),
|
|
|
|
|
|
.waybill-table td:nth-child(4) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 80px;
|
|
|
|
|
|
/* 仓库位置 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(5),
|
|
|
|
|
|
.waybill-table td:nth-child(5) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
/* 结算 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(6),
|
|
|
|
|
|
.waybill-table td:nth-child(6) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 80px;
|
|
|
|
|
|
/* 原料厂家 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(7),
|
|
|
|
|
|
.waybill-table td:nth-child(7) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 100px;
|
|
|
|
|
|
/* 卷号 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(8),
|
|
|
|
|
|
.waybill-table td:nth-child(8) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 80px;
|
|
|
|
|
|
/* 规格 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(9),
|
|
|
|
|
|
.waybill-table td:nth-child(9) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
/* 材质 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(10),
|
|
|
|
|
|
.waybill-table td:nth-child(10) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 60px;
|
|
|
|
|
|
/* 数量(件) */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(11),
|
|
|
|
|
|
.waybill-table td:nth-child(11) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 80px;
|
|
|
|
|
|
/* 重量(kg) */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(12),
|
|
|
|
|
|
.waybill-table td:nth-child(12) {
|
2026-01-27 15:41:29 +08:00
|
|
|
|
width: 40px;
|
|
|
|
|
|
/* 单价 */
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th:nth-child(13),
|
|
|
|
|
|
.waybill-table td:nth-child(13) {
|
|
|
|
|
|
width: 100px;
|
|
|
|
|
|
/* 备注 */
|
2025-11-28 11:02:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table th {
|
|
|
|
|
|
background-color: #f5f7fa;
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-table tr:nth-child(even) {
|
|
|
|
|
|
background-color: #fafafa;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 表格输入框样式 */
|
|
|
|
|
|
.table-input {
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
padding: 4px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table-input:focus {
|
|
|
|
|
|
border-color: #409eff;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 无数据样式 */
|
|
|
|
|
|
.no-data {
|
|
|
|
|
|
height: 200px;
|
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.no-data-content {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
height: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 表格单元格操作区 */
|
|
|
|
|
|
.table-cell-with-action {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 5px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 备注样式 */
|
|
|
|
|
|
.waybill-remarks {
|
|
|
|
|
|
margin-bottom: 30px;
|
2025-11-28 11:20:41 +08:00
|
|
|
|
font-size: 14px;
|
2025-11-28 11:02:19 +08:00
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
text-align: justify;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-remarks p {
|
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 底部签名样式 */
|
|
|
|
|
|
.waybill-footer {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-01 17:53:19 +08:00
|
|
|
|
.waybill-pickup-location {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.waybill-pickup-location label {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.footer-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 10px;
|
|
|
|
|
|
width: 200px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-item.inline {
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.footer-item .label {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
|
width: 40px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.signature-input {
|
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-01 17:53:19 +08:00
|
|
|
|
.full-input {
|
|
|
|
|
|
/* 占满本行的剩余空间,父容器不是flex */
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
/* 操作按钮样式 */
|
|
|
|
|
|
.waybill-actions {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 20px;
|
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 添加明细按钮 */
|
|
|
|
|
|
.add-detail-btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 打印样式 */
|
|
|
|
|
|
@media print {
|
|
|
|
|
|
.waybill-container {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
max-width: none;
|
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-header {
|
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-footer {
|
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.label {
|
|
|
|
|
|
width: 80px;
|
|
|
|
|
|
text-align: right;
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-actions {
|
|
|
|
|
|
display: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 响应式设计 */
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.waybill-header {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 15px;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-table {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-table th,
|
|
|
|
|
|
.waybill-table td {
|
|
|
|
|
|
padding: 2px;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.waybill-footer {
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
|
gap: 15px;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.footer-item.inline {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
}
|
2026-01-27 15:41:29 +08:00
|
|
|
|
|
2025-11-28 11:02:19 +08:00
|
|
|
|
.label {
|
|
|
|
|
|
width: auto;
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|