This commit is contained in:
shidongli 2022-11-15 15:16:10 +08:00
parent 0642d8307b
commit 134dfce80f
4 changed files with 20 additions and 13 deletions

View File

@ -42,7 +42,10 @@
</el-form-item> </el-form-item>
<el-form-item label="商品用途" prop="goodsPurpose"> <el-form-item label="商品用途" prop="goodsPurpose">
<el-select v-model="queryParams.goodsPurpose" placeholder="请选择商品用途"> <el-select
v-model="queryParams.goodsPurpose"
placeholder="请选择商品用途"
>
<el-option <el-option
v-for="item in goods" v-for="item in goods"
:key="item.value" :key="item.value"
@ -797,6 +800,8 @@ export default {
this.queryParams.goodsName = null this.queryParams.goodsName = null
this.queryParams.goodsCategoryName = null this.queryParams.goodsCategoryName = null
this.queryParams.goodsPurpose = null this.queryParams.goodsPurpose = null
this.queryParams.whetherShelf = null
} }
this.handleQuery(); this.handleQuery();
}, },

View File

@ -934,7 +934,6 @@ export default {
this.queryParams.orderNo = null this.queryParams.orderNo = null
this.queryParams.orderStatus = null this.queryParams.orderStatus = null
} }
this.handleQuery(); this.handleQuery();
}, },

View File

@ -782,6 +782,9 @@ export default {
} else { } else {
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.queryParams.pageSize = 10; this.queryParams.pageSize = 10;
this.queryParams.orderNo = null
this.queryParams.orderStatus = null
this.queryParams.patientName=null
} }
this.handleQuery(); this.handleQuery();
}, },

View File

@ -883,7 +883,7 @@ export default {
// this.queryParams.nurseStationCode = null; // this.queryParams.nurseStationCode = null;
this.queryParams.pageSize = 10; this.queryParams.pageSize = 10;
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
this.queryParams.nurseStationType = null; this.queryParams.nurseStationCode = null;
this.handleQuery(); this.handleQuery();
} }
}, },