1.修复bug

ywj_dev
x_z 2 years ago
parent b873f7e01e
commit 1c4b8cd1e5

@ -113,6 +113,7 @@
<script> <script>
import {getResultDetailList, getResultOrderList} from '@/api/inout/orderDetailResult' import {getResultDetailList, getResultOrderList} from '@/api/inout/orderDetailResult'
import {isBlank} from "@/utils/strUtil";
export default { export default {
name: "supInoutSearchOrder", name: "supInoutSearchOrder",
@ -190,7 +191,7 @@ export default {
limit: 10, limit: 10,
startAduditTime: null, startAduditTime: null,
endAduditTime: null, endAduditTime: null,
actionType: "norDetail", actionType: this.actionType,
}; };
this.actDateRange = []; this.actDateRange = [];
this.getList(); this.getList();
@ -216,6 +217,9 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.actionType = this.actionType; this.filterQuery.actionType = this.actionType;
if (isBlank(this.filterQuery.actionType)) {
this.filterQuery.actionType = "norDetail";
}
getResultOrderList(this.filterQuery) getResultOrderList(this.filterQuery)
.then((response) => { .then((response) => {
if (response.code === 20000) { if (response.code === 20000) {

Loading…
Cancel
Save