查询记录优化

master
schry 2 years ago
parent 27a773fdcc
commit ee3e256a85

@ -839,7 +839,7 @@
<script>
import {getTraceRecordList,getTraceOrder,getManuOrder} from "@/api/udi/udiTrace";
import {getTraceRecordList,getTraceOrder,getManuOrder,getManuCodeRelList} from "@/api/udi/udiTrace";
export default {
@ -853,6 +853,7 @@ export default {
orderFormView: {},
orderLoading: false,
manuOrderLoading: false,
manuCodeRelLoading: false,
traceOrderQuery: {
recordCode: null,
page: 1,
@ -863,10 +864,17 @@ export default {
page: 1,
limit: 10,
},
manuCodeRelQuery: {
manuOrderIdFk: null,
page: 1,
limit: 10,
},
traceOrderList: [],
traceOrderTotal: 0,
manuOrderList: [],
manuOrderTotal: 0,
listCodeRel: [],
codeRelTotal: 0,
filterQuery: {
recordCode: null,
cpmctymc: null,
@ -914,10 +922,61 @@ export default {
},
},
methods: {
orderhandleView(row) {
this.traceOrderList.forEach(obj => {
if (row.id == obj.id) {
this.orderFormView = obj
}
})
this.orderOpen = true
},
handleViewCoderel(row) {
this.listCodeRel.forEach(obj => {
if (row.id == obj.id) {
this.manuOrderCodeRelFormView = obj
}
})
console.log(this.formViewCodeRel)
this.openManuCodeRel = true
},
handleViewManuOrder(row) {
this.manuOrderList.forEach(obj => {
if (row.id == obj.id) {
this.manuOrderFormView = obj
}
})
console.log(this.manuOrderFormView)
this.openManuOrder = true
},
handleSelectionChange(val) {
this.currentRow = val;
this.getManuCodeRel();
},
getManuCodeRel() {
if (this.currentRow.id == null) {
this.$message.error("请先选择需要查询的单据!")
return;
}
this.manuCodeRelLoading = true;
this.manuCodeRelQuery.manuOrderIdFk = this.currentRow.id;
getManuCodeRelList(this.manuCodeRelQuery).then((res) => {
this.manuCodeRelLoading = false;
if (res.code === 20000) {
this.listCodeRel = res.data.list || [];
this.codeRelTotal = res.data.total || 0;
console.log(this.listCodeRel)
} else {
this.$message.error(res.message);
this.listCodeRel = [];
this.codeRelTotal = 0;
}
}).catch((error) => {
this.manuCodeRelLoading = false;
this.$message.error(error.message);
this.listCodeRel = [];
this.codeRelTotal = 0;
})
},
recordhandleSelectionChange(val){
this.currentRow = val;
this.getTraceOrder();
@ -1019,6 +1078,19 @@ export default {
page: 1,
limit: 10,
};
this.traceOrderQuery = {
recordCode: null,
page: 1,
limit: 10,
},
this.manuOrderQuery = {
recordCode: null,
page: 1,
limit: 10,
},
this.traceOrderList = null,
this.manuOrderList = null,
this.listCodeRel = null,
this.getList();
},
onSubmit(){

Loading…
Cancel
Save