1.调整摆放页面

prod
x_z 2 years ago
parent 4c059b2c45
commit 3b8deee6e2

@ -71,13 +71,13 @@
border max-height="300" height="300">
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="DI/物资编码" prop="relId" width="150"></el-table-column>
<el-table-column label="物资名称" prop="productName" width="150"></el-table-column>
<el-table-column label="物资名称" prop="productName" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="150"></el-table-column>
<el-table-column label="批次号" prop="batchNo" width="150"></el-table-column>
<el-table-column label="序列号" prop="serialNo" width="150"></el-table-column>
<el-table-column label="计量单位" prop="measname" width="150"></el-table-column>
<el-table-column label="货位" prop="invSpaceName" width="150"></el-table-column>
<el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150"></el-table-column>
<el-table-column label="注册备案号" prop="zczbhhzbapzbh" width="150" show-tooltip-when-overflow></el-table-column>
<el-table-column label="生产厂家" prop="manufactory" width="150"></el-table-column>
<el-table-column label="供应商" prop="supName" width="150"></el-table-column>
</el-table>
@ -96,7 +96,7 @@
<invPlaceSelectOrder
:closeDialog="closeDialog"
:formData="selectFormData"
:getInvProductInfogetInvProductInfogetInvProductInfo="getInvProductInfo"
:getInvProductInfo="getInvProductInfo"
>
</invPlaceSelectOrder>
</el-dialog>
@ -260,7 +260,7 @@ export default {
getInvProductInfo(orderId) {
let params = {
invCode: this.formData.invCode,
code: orderId
orderId: orderId
};
getInvProductInfo(params).then((res) => {
if (res.data !== null) {

@ -125,7 +125,7 @@ export default {
},
getList() {
this.loading = true;
getInvPlaceOrderList().then((res) => {
getInvPlaceOrderList(this.filterQuery).then((res) => {
this.loading = false;
if (res.code === 20000) {
this.list = res.data.list || [];
@ -153,7 +153,7 @@ export default {
},
},
created() {
this.getInvList();
this.getList();
},
}
</script>

Loading…
Cancel
Save