|
|
|
@ -4,13 +4,31 @@
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.inventoryCode" clearable
|
|
|
|
|
placeholder="存货编码"
|
|
|
|
|
placeholder="产品编码"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.inventoryName" clearable
|
|
|
|
|
placeholder="存货名称"
|
|
|
|
|
placeholder="产品名称"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.spec" clearable
|
|
|
|
|
placeholder="规格型号"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.registerCertNo" clearable
|
|
|
|
|
placeholder="注册/备案凭证号"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="filterQuery.manufactory" clearable
|
|
|
|
|
placeholder="生厂厂家"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
@ -32,21 +50,6 @@
|
|
|
|
|
<el-button type="primary" icon="search" @click="clearAll"
|
|
|
|
|
v-if="!this.thirdSysDetail.enabled">清空全部
|
|
|
|
|
</el-button>
|
|
|
|
|
<!--<el-upload-->
|
|
|
|
|
<!--v-if="!this.thirdSysDetail.enabled"-->
|
|
|
|
|
<!--:action="uploadFileUrl"-->
|
|
|
|
|
<!--multiple-->
|
|
|
|
|
<!--:limit="3"-->
|
|
|
|
|
<!--:data="uploadData"-->
|
|
|
|
|
<!--:show-file-list="false"-->
|
|
|
|
|
<!--:on-success="handleChange"-->
|
|
|
|
|
<!--:file-list="fileList"-->
|
|
|
|
|
<!-->-->
|
|
|
|
|
<!--<el-button size="mini" type="primary">导入库存产品信息</el-button>-->
|
|
|
|
|
<!--</el-upload>-->
|
|
|
|
|
<!--<el-button type="primary" icon="search" @click="downloadDatas"-->
|
|
|
|
|
<!--v-if="this.thirdSysDetail.enabled && this.thirdSysDetail.itrCache">导入库存产品信息-->
|
|
|
|
|
<!--</el-button>-->
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
@ -56,12 +59,16 @@
|
|
|
|
|
<el-table-column label="产品名称" prop="name" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="spec" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="仓位" prop="warehouseName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="货位" prop="spaceName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册证号" prop="registerCertNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产日期" prop="manufacturingDate" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="失效日期" prop="expirationDate" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="数量" prop="count" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="注册证号" prop="registerCertNo" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="仓位" prop="warehouseName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="货位" prop="spaceName" show-overflow-tooltip></el-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" fixed="right" v-if="thirdSysDetail.fromType!=0">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)"
|
|
|
|
@ -95,7 +102,7 @@
|
|
|
|
|
inventoryName: null,
|
|
|
|
|
thirdSys: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 20,
|
|
|
|
|
limit: 100,
|
|
|
|
|
},
|
|
|
|
|
total: 0,
|
|
|
|
|
list: [],
|
|
|
|
|