Browse Source

添加订单字段

dev-warehouse
caoyizhong 2 years ago
parent
commit
47ab085072
  1. 17
      src/option/distribution/distributionStockArticle.js
  2. 2
      src/views/distribution/inventory/distributionStockArticleDetails.vue

17
src/option/distribution/distributionStockArticle.js

@ -77,6 +77,11 @@ export default {
display: false, display: false,
hide: true hide: true
}, },
{
label: '运单号',
prop: 'waybillNumber',
search: true
},
{ {
label: '服务号', label: '服务号',
prop: 'serviceNumber' prop: 'serviceNumber'
@ -124,7 +129,8 @@ export default {
label: '工厂车次', label: '工厂车次',
prop: 'factoryTrain', prop: 'factoryTrain',
search: true search: true
} },
], ],
columnTakeClice: [ columnTakeClice: [
@ -352,11 +358,10 @@ export default {
label: '仓库', label: '仓库',
prop: 'warehouse' prop: 'warehouse'
}, },
// { {
// label: '包件类型', label: '运单号',
// prop: 'conditions', prop: 'waybillNumber',
// search: true },
// },
{ {
label: '包件状态', label: '包件状态',
prop: 'orderPackageStatusName', prop: 'orderPackageStatusName',

2
src/views/distribution/inventory/distributionStockArticleDetails.vue

@ -813,7 +813,7 @@ export default {
this.query.id = this.$route.query.id; this.query.id = this.$route.query.id;
getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => { getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
const data = res.data.data; const data = res.data.data;
this.page.total = data.total; // this.page.total = data.total;
this.data = data.records; this.data = data.records;
this.loading = false; this.loading = false;
this.selectionClear(); this.selectionClear();

Loading…
Cancel
Save