|
|
|
@ -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; |
|
|
|
|