feat: 添加开始时间列并优化发货单打印功能

- 在coil面板的do.vue中添加开始时间列
- 新增widthEdit.vue组件用于宽度编辑
- 修改MaterialTag.vue中的标签显示为厂家名称
- 合并发货单打印功能,添加吨数统计显示
This commit is contained in:
砂糖
2026-03-17 17:07:49 +08:00
parent b6387a53d8
commit 3c9f82add4
4 changed files with 35 additions and 65 deletions

View File

@@ -54,12 +54,12 @@
<div
style="flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; border: 1px solid #333; box-sizing: border-box; padding: 3px; word-break: break-all; overflow-wrap: break-word;"
class="label-cell">
实际库区
厂家名称
</div>
<div
style="flex: 1; height: 100%; display: flex; align-items: center; justify-content: center; border: 1px solid #333; box-sizing: border-box; padding: 3px; word-break: break-all; overflow-wrap: break-word;"
class="value-cell">
<input type="text" class="nob" :value="content.actualWarehouseName || ''" />
{{ content.manufacturer || '' }}
</div>
</div>
<!-- <div style="display: flex; flex: 1; align-items: center;">

View File

@@ -422,6 +422,7 @@
</el-table-column>
<el-table-column label="创建人" prop="createBy"></el-table-column>
<el-table-column label="操作人" prop="operatorName"></el-table-column>
<el-table-column label="开始时间" prop="createTime"></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button v-if="scope.row.actionStatus === 2" :loading="buttonLoading" icon="el-icon-delete"

View File

@@ -0,0 +1,27 @@
<template>
<BasePage :qrcode="qrcode" :querys="querys" :labelType="labelType" :hideWarehouseQuery="hideWarehouseQuery"
:hideType="hideType" :showControl="showControl" :showWidthEdit="showWidthEdit" />
</template>
<script>
import BasePage from '../../panels/base.vue';
export default {
components: {
BasePage
},
data() {
return {
qrcode: false,
querys: {
// dataType: 1,
},
hideWarehouseQuery: true,
showWidthEdit: true,
showControl: false,
labelType: '2',
hideType: false,
}
}
}
</script>