Browse Source

🎈 perf:新增包件明细搜索

master
qb 1 year ago
parent
commit
c798588e9f
  1. 43
      src/views/warehouse/parcelList/distributionParcelList.vue

43
src/views/warehouse/parcelList/distributionParcelList.vue

@ -242,7 +242,7 @@ export default {
{
prop: 'firsts',
label: '一级品',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -252,7 +252,7 @@ export default {
{
prop: 'second',
label: '二级品',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -262,7 +262,7 @@ export default {
{
prop: 'thirdProduct',
label: '三级品',
type: 1,
type: 2,
values: '',
width: '130',
checkarr: [],
@ -272,10 +272,19 @@ export default {
{
prop: 'orderPackageGroundingStatusName',
label: '上架状态',
type: 1,
type: 3,
values: '',
width: '180',
checkarr: [],
width: '130',
checkarr: [
{
label: '待上架',
value: '10',
},
{
label: '已上架',
value: '20',
},
],
fixed: false,
sortable: true,
},
@ -292,9 +301,9 @@ export default {
{
prop: 'quantity',
label: '数量',
type: 2,
type: 1,
values: '',
width: '180',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
@ -449,13 +458,31 @@ export default {
inputsc(index, row) {
this.query[row.prop] = index;
console.log(this.query);
this.page.currentPage = 1;
this.onLoad(this.page);
},
timesc() {},
btnsc() {},
//
selectsc(value, row) {
console.log('value :>> ', value);
console.log('row :>> ', row);
this.query[row.prop] = value;
//
if (row.prop === 'conditionsType') {
this.query.conditions = value;
if (value === '') delete this.query.conditions;
}
//
if (row.prop === 'orderPackageGroundingStatusName') {
this.query.orderPackageGroundingStatus = value;
if (value === '') delete this.query.orderPackageGroundingStatus;
}
if (value === '') {
delete this.query[row.prop];
}
this.page.currentPage = 1;
this.onLoad(this.page);
},
showdrawer(value) {
this.drawerShow = value;

Loading…
Cancel
Save