库存查询新增UDI码查询

ywj_dev
anthonywj 2 years ago
parent d52241145e
commit 1497a8e739

@ -7,7 +7,7 @@
<el-form-item class="query-form-item" label-width="100px" label="UDI码:"> <el-form-item class="query-form-item" label-width="100px" label="UDI码:">
<el-input <el-input
id="inputer" id="inputer"
v-model="filterQuery.code" v-model="filterQuery.udiCode"
placeholder="UDI码" placeholder="UDI码"
ref='inputRef' ref='inputRef'
@keypress.enter.native="enterKey($event)" @keypress.enter.native="enterKey($event)"
@ -138,9 +138,9 @@
show-overflow-tooltip width="120"></el-table-column> show-overflow-tooltip width="120"></el-table-column>
<el-table-column label="货位" prop="spaceName" v-if="showSup" <el-table-column label="货位" prop="spaceName" v-if="showSup"
show-overflow-tooltip width="120"></el-table-column> show-overflow-tooltip width="120"></el-table-column>
<el-table-column label="DI标识" prop="nameCode"></el-table-column> <el-table-column label="DI标识" prop="nameCode" width="140"></el-table-column>
<el-table-column label="物资名称" prop="cpmctymc"></el-table-column> <el-table-column label="物资名称" prop="cpmctymc" width="180"></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column> <el-table-column label="规格型号" prop="ggxh" width="180" show-overflow-tooltip></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column> <el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
<!-- <el-table-column label="生产日期" prop="productionDate" width="120"></el-table-column>--> <!-- <el-table-column label="生产日期" prop="productionDate" width="120"></el-table-column>-->
<!-- <el-table-column label="失效日期" prop="expireDate" width="120"></el-table-column>--> <!-- <el-table-column label="失效日期" prop="expireDate" width="120"></el-table-column>-->
@ -148,14 +148,14 @@
<!-- <el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>--> <!-- <el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>-->
<el-table-column label="库存数量" prop="reCount" width="120"></el-table-column> <el-table-column label="库存数量" prop="reCount" width="120"></el-table-column>
<el-table-column label="生产厂家" prop="ylqxzcrbarmc" v-if="showSup" show-overflow-tooltip <el-table-column label="生产厂家" prop="ylqxzcrbarmc" v-if="showSup" show-overflow-tooltip
width="120"></el-table-column> width="180"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" v-if="showSup" show-overflow-tooltip <el-table-column label="注册/备案号" prop="zczbhhzbapzbh" v-if="showSup" show-overflow-tooltip
width="120"></el-table-column> width="180"></el-table-column>
<el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip <el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip
width="120"></el-table-column> width="180"></el-table-column>
<el-table-column label="部门" prop="deptName" v-if="showSup" <!-- <el-table-column label="部门" prop="deptName" v-if="showSup"-->
show-overflow-tooltip width="120"></el-table-column> <!-- show-overflow-tooltip width="120"></el-table-column>-->
<el-table-column label="操作" width="150"> <el-table-column label="操作" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button
@ -214,6 +214,7 @@ export default {
return { return {
showSearch: true, showSearch: true,
filterQuery: { filterQuery: {
udiCode: null,
nameCode: null, nameCode: null,
cpmctymc: null, cpmctymc: null,
ggxh: null, ggxh: null,
@ -257,6 +258,7 @@ export default {
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
udiCode: null,
nameCode: null, nameCode: null,
cpmctymc: null, cpmctymc: null,
ggxh: null, ggxh: null,

Loading…
Cancel
Save