rev:空托盘出入库

This commit is contained in:
2024-01-27 15:53:15 +08:00
parent b0ac44072a
commit 1018b1fac0
5 changed files with 66 additions and 2 deletions

View File

@@ -228,6 +228,16 @@
{{ dict.label.placement_type[scope.row.placement_type] }}
</template>
</el-table-column>
<el-table-column prop="zdepth" label="深度" min-width="120" show-overflow-tooltip>
<template slot-scope="scope">
{{ dict.label.zdepth[scope.row.zdepth] }}
</template>
</el-table-column>
<el-table-column prop="storagevehicle_type" label="托盘类型" min-width="120" show-overflow-tooltip>
<template slot-scope="scope">
{{ dict.label.storagevehicle_type[scope.row.storagevehicle_type] }}
</template>
</el-table-column>
<el-table-column label="是否启用" align="center" prop="is_used">
<template slot-scope="scope">
<el-switch
@@ -322,7 +332,7 @@ const defaultForm = {
}
export default {
name: 'Structattr',
dicts: ['ST_HEIGHT_TYPE', 'is_used', 'd_lock_type', 'SCH_TASK_TYPE_DTL', 'placement_type'],
dicts: ['ST_HEIGHT_TYPE', 'is_used', 'd_lock_type', 'SCH_TASK_TYPE_DTL', 'placement_type', 'zdepth', 'storagevehicle_type'],
components: { pagination, crudOperation, rrOperation, udOperation },
mixins: [presenter(), header(), form(defaultForm), crud()],
cruds() {