|
@ -134,8 +134,6 @@ export default { |
|
|
cruds() { |
|
|
cruds() { |
|
|
return CRUD({ |
|
|
return CRUD({ |
|
|
url: 'api/arrange/initArrangeList', |
|
|
url: 'api/arrange/initArrangeList', |
|
|
// url: 'api/case/initCaseList', |
|
|
|
|
|
// crudMethod: caseCrudMethod, |
|
|
|
|
|
title: '档案盒', |
|
|
title: '档案盒', |
|
|
optShow: { |
|
|
optShow: { |
|
|
add: false, |
|
|
add: false, |
|
@ -146,7 +144,6 @@ export default { |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
}, |
|
|
}, |
|
|
// dicts: ['job_status'], |
|
|
|
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
btnLoading: false, |
|
|
btnLoading: false, |
|
@ -163,7 +160,7 @@ export default { |
|
|
cateSearch: 'region', |
|
|
cateSearch: 'region', |
|
|
cateSearchOptions: [ |
|
|
cateSearchOptions: [ |
|
|
{ value: 'region', label: '区域' }, |
|
|
{ value: 'region', label: '区域' }, |
|
|
{ value: 'id', label: '盘点单号' } |
|
|
|
|
|
|
|
|
{ value: 'orderNo', label: '盘点单号' } |
|
|
], |
|
|
], |
|
|
deleteVisible: false |
|
|
deleteVisible: false |
|
|
} |
|
|
} |
|
@ -187,11 +184,10 @@ export default { |
|
|
if (this.cateSearch === 'region') { |
|
|
if (this.cateSearch === 'region') { |
|
|
this.crud.query.region = this.keyWord |
|
|
this.crud.query.region = this.keyWord |
|
|
} else { |
|
|
} else { |
|
|
this.crud.query.id = this.keyWord |
|
|
|
|
|
console.log(this.crud.query.id) |
|
|
|
|
|
// this.crud.data = this.crud.data.filter(item => item.id.includes(this.keyWord)) |
|
|
|
|
|
console.log(this.crud.data) |
|
|
|
|
|
|
|
|
this.crud.query.orderNo = this.keyWord |
|
|
} |
|
|
} |
|
|
|
|
|
console.log(this.crud.query, '2') |
|
|
|
|
|
|
|
|
this.crud.downloadLoading = false |
|
|
this.crud.downloadLoading = false |
|
|
}, |
|
|
}, |
|
|
// 删除 |
|
|
// 删除 |
|
|