1.修复bug

ywj_dev
x_z 2 years ago
parent b873f7e01e
commit 1c4b8cd1e5

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

Loading…
Cancel
Save