Browse Source

调用记录

master
常熟吴彦祖 3 months ago
parent
commit
9968273351
  1. 1
      src/views/modules/warehouse/labelQueryLocation.vue
  2. 18
      src/views/modules/warehouse/pallet.vue

1
src/views/modules/warehouse/labelQueryLocation.vue

@ -123,6 +123,7 @@ export default {
{columnProp: "qty", headerAlign: "center", align: "right", columnLabel: "数量", columnWidth: 80, columnSortable: false, showOverflowTooltip: true, fixed: ""},
{columnProp: "palletId", headerAlign: "center", align: "center", columnLabel: "所在栈板", columnWidth: 80, columnSortable: false, showOverflowTooltip: true, fixed: ""},
{columnProp: "callingFlag", headerAlign: "center", align: "center", columnLabel: "是否调用", columnWidth: 80, columnSortable: false, showOverflowTooltip: true, fixed: ""},
{columnProp: "remark", headerAlign: "center", align: "left", columnLabel: "最近一次调用原因", columnWidth: 150, columnSortable: false, showOverflowTooltip: true, fixed: ""},
{columnProp: "position", headerAlign: "center", align: "center", columnLabel: "位置", columnWidth: 60, columnSortable: false, showOverflowTooltip: true, fixed: ""},
{columnProp: "layer", headerAlign: "center", align: "center", columnLabel: "层数", columnWidth: 60, columnSortable: false, showOverflowTooltip: true, fixed: ""},

18
src/views/modules/warehouse/pallet.vue

@ -244,8 +244,8 @@
<!-- 备注占全行 - rqrq -->
<el-row>
<el-col :span="24">
<el-form-item label="备注">
<el-input v-model="saveHeaderData.remark" type="textarea" :rows="3" resize='none' placeholder="请输入备注"></el-input>
<el-form-item label="最近一次调用原因">
<el-input v-model="saveHeaderData.remark" readonly ></el-input>
</el-form-item>
</el-col>
</el-row>
@ -388,6 +388,13 @@ export default {
columnLabel: "调用标志",
columnWidth: 80,
},
{
columnProp: "remark",
headerAlign: "center",
align: "left",
columnLabel: "最近一次调用原因",
columnWidth: 150,
},
{
columnProp: "locationCode",
headerAlign: "center",
@ -416,13 +423,6 @@ export default {
columnLabel: "托盘状态",
columnWidth: 80,
},
{
columnProp: "remark",
headerAlign: "center",
align: "left",
columnLabel: "备注",
columnWidth: 200,
},
{
columnProp: "createdBy",
headerAlign: "center",

Loading…
Cancel
Save