Browse Source

fix:入库新增BUG修复

master_V2.0
zhouz 2 weeks ago
parent
commit
3fa1f5112d
  1. 6
      nladmin-ui/src/views/wms/basedata/structattr/index.vue

6
nladmin-ui/src/views/wms/basedata/structattr/index.vue

@ -490,15 +490,15 @@ export default {
sectQueryChange(val) {
if (val.length === 1) {
this.query.stor_id = val[0]
this.query.sect_id = ''
this.query.sect_code = ''
}
if (val.length === 0) {
this.query.sect_id = ''
this.query.sect_code = ''
this.query.stor_id = ''
}
if (val.length === 2) {
this.query.stor_id = val[0]
this.query.sect_id = val[1]
this.query.sect_code = val[1]
}
this.crud.toQuery()
},

Loading…
Cancel
Save