|
|
|
@ -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) => {
|
|
|
|
|