feat: 添加开始时间列并优化发货单打印功能
- 在coil面板的do.vue中添加开始时间列 - 新增widthEdit.vue组件用于宽度编辑 - 修改MaterialTag.vue中的标签显示为厂家名称 - 合并发货单打印功能,添加吨数统计显示
This commit is contained in:
@@ -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;">
|
||||
|
||||
@@ -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"
|
||||
|
||||
27
klp-ui/src/views/wms/coil/views/base/widthEdit.vue
Normal file
27
klp-ui/src/views/wms/coil/views/base/widthEdit.vue
Normal 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>
|
||||
Reference in New Issue
Block a user