15 changed files with 1807 additions and 136 deletions
@ -0,0 +1,38 @@
|
||||
<template> |
||||
<div> |
||||
12312312 |
||||
<table> |
||||
<thead style="border: 1px solid #000"> |
||||
<tr> |
||||
<th>Logo</th> |
||||
<th>干线运输装载清单</th> |
||||
<th>条形码</th> |
||||
</tr> |
||||
<tr> |
||||
<th></th> |
||||
<th></th> |
||||
<th></th> |
||||
</tr> |
||||
</thead> |
||||
<tbody></tbody> |
||||
</table> |
||||
</div> |
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { defineProps, ref } from 'vue'; |
||||
|
||||
const props = defineProps(['waybillInfo']); |
||||
|
||||
/** 运单信息 */ |
||||
const { waybillInfo } = props; |
||||
|
||||
/** 是否显示金额统计 */ |
||||
const isShowTotal = ref(false); |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.waybillPrintTemplate_container { |
||||
width: 100%; |
||||
} |
||||
</style> |
@ -0,0 +1,109 @@
|
||||
<template> |
||||
<div class="waybillPrintTemplate_container"> |
||||
<div style="display: flex"> |
||||
<div style="flex: 1">起运地:{{ waybillInfo.departureWarehouseName }}</div> |
||||
<div style="flex: 1">到达站:{{ waybillInfo.destination }}</div> |
||||
<div style="flex: 1">查询单号:</div> |
||||
</div> |
||||
<div style="border: 1px solid #000; margin-top: 10px"> |
||||
<div style="display: flex; border-bottom: 1px solid #000"> |
||||
<div style="width: 50%; display: flex"> |
||||
<div |
||||
style=" |
||||
writing-mode: tb-rl; |
||||
border-right: 1px solid #000; |
||||
width: 10%; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
padding: 10px 0; |
||||
" |
||||
> |
||||
托 运 单 位 |
||||
</div> |
||||
<div style="width: 90%; height: 100%; display: flex; flex-direction: column"> |
||||
<div style="border-bottom: 1px solid #000; flex: 1">名称</div> |
||||
<div style="border-bottom: 1px solid #000; flex: 1">电话</div> |
||||
<div style="flex: 1">地址</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div style="width: 50%; display: flex"> |
||||
<div |
||||
style=" |
||||
border-right: 1px solid #000; |
||||
border-left: 1px solid #000; |
||||
width: 10%; |
||||
display: flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
writing-mode: tb-rl; |
||||
" |
||||
> |
||||
收 货 单 位 |
||||
</div> |
||||
<div style="width: 90%; height: 100%; display: flex; flex-direction: column"> |
||||
<div style="border-bottom: 1px solid #000; flex: 1">名称</div> |
||||
<div style="border-bottom: 1px solid #000; flex: 1">电话</div> |
||||
<div style="flex: 1">地址</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div |
||||
style="display: flex; text-align: center; font-size: 0.9rem; border-bottom: 1px solid #000" |
||||
> |
||||
<div style="flex: 1; border-right: 1px solid #000">货物名称</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">件数</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">重量</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">体积</div> |
||||
<div style="flex: 1">运费</div> |
||||
</div> |
||||
|
||||
<div |
||||
style="display: flex; text-align: center; font-size: 0.9rem; border-bottom: 1px solid #000" |
||||
> |
||||
<div style="flex: 1; border-right: 1px solid #000">${item.货物名称}</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${item.件数}</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${item.重量}</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${item.体积}</div> |
||||
<div style="flex: 1"></div> |
||||
</div> |
||||
|
||||
<div |
||||
style="display: flex; text-align: center; font-size: 0.9rem; border-bottom: 1px solid #000" |
||||
> |
||||
<div style="flex: 1; border-right: 1px solid #000">合计</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${合计.件数}</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${合计.重量}</div> |
||||
<div style="flex: 1; border-right: 1px solid #000">${合计.体积}</div> |
||||
<div style="flex: 1">${合计.体积}</div> |
||||
</div> |
||||
<div style="height: 50px"></div> |
||||
</div> |
||||
<div style="display: flex; justify-content: space-between"> |
||||
<div style="display: flex; width: 50%"> |
||||
<div>填票人:</div> |
||||
<div></div> |
||||
</div> |
||||
<div style="width: 50%">托运日期:</div> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { defineProps, ref } from 'vue'; |
||||
|
||||
const props = defineProps(['waybillInfo']); |
||||
|
||||
/** 运单信息 */ |
||||
const { waybillInfo } = props; |
||||
|
||||
/** 是否显示金额统计 */ |
||||
const isShowTotal = ref(false); |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
.waybillPrintTemplate_container { |
||||
width: 100%; |
||||
} |
||||
</style> |
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue