fix:光芯车间库存物料状态筛选传参问题修正
This commit is contained in:
parent
0443ee42e9
commit
5823759669
|
@ -14,7 +14,6 @@
|
|||
v-model="query.state"
|
||||
placeholder="物料状态"
|
||||
clearable
|
||||
@change="searchStateChange"
|
||||
style="width: 250px"
|
||||
>
|
||||
<el-option
|
||||
|
|
|
@ -308,19 +308,19 @@ export default {
|
|||
switch(that.queryState){
|
||||
case 100:
|
||||
that.query.state = 10;
|
||||
that.query.notok_sign__isnull = true;
|
||||
that.query.defect__isnull = true;
|
||||
break;
|
||||
case 101:
|
||||
that.query.state = 10;
|
||||
that.query.notok_sign__isnull = false;
|
||||
that.query.defect__isnull = false;
|
||||
break;
|
||||
case 20:
|
||||
that.query.state = 20;
|
||||
that.query.notok_sign__isnull = null;
|
||||
that.query.defect__isnull = null;
|
||||
break;
|
||||
case 30:
|
||||
that.query.state = 30;
|
||||
that.query.notok_sign__isnull = null;
|
||||
that.query.defect__isnull = null;
|
||||
break;
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue