diff --git a/nladmin-ui/src/views/wms/basedata/structattr/index.vue b/nladmin-ui/src/views/wms/basedata/structattr/index.vue index 8bb4f7d..7fd44d2 100644 --- a/nladmin-ui/src/views/wms/basedata/structattr/index.vue +++ b/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() },