Browse Source

盘点单号无法搜索bug

master
x_ying 3 years ago
parent
commit
79224d43e7
  1. 12
      src/views/archivesManage/archivesCheck/index.vue

12
src/views/archivesManage/archivesCheck/index.vue

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

Loading…
Cancel
Save