修改耗材单据bug

prod
郑明梁 2 years ago
parent c95511e041
commit da9c4229e3

@ -215,6 +215,14 @@ export default {
this.showSearch = !this.showSearch;
},
getList() {
if (this.actDateRange != null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
}
this.loading = true;
getReceiveOrder(this.filterQuery)
.then((response) => {

@ -138,6 +138,7 @@ export default {
saveOrder(val){
var data={
id:this.formData.id,
billNo:this.formData.billNo,
status:val,
auditRemark:this.formData.auditRemark
};

@ -11,8 +11,6 @@
<el-col :span="6">
<el-form-item label="审核状态:">
<el-select v-model="filterQuery.status" style="width: 90%" placeholder="审核状态">
<el-option label="全部" value=""></el-option>
<el-option label="未审核" value="2"></el-option>
<el-option label="已审核" value="3"></el-option>
<el-option label="已拒绝" value="4"></el-option>
</el-select>
@ -239,6 +237,13 @@ export default {
});
},
getList() {
if (this.actDateRange != null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
}
this.loading = true;
getReceiveOrder(this.filterQuery)
.then((response) => {

Loading…
Cancel
Save