查询记录优化

master
schry 2 years ago
parent 27a773fdcc
commit ee3e256a85

@ -839,7 +839,7 @@
<script> <script>
import {getTraceRecordList,getTraceOrder,getManuOrder} from "@/api/udi/udiTrace"; import {getTraceRecordList,getTraceOrder,getManuOrder,getManuCodeRelList} from "@/api/udi/udiTrace";
export default { export default {
@ -853,6 +853,7 @@ export default {
orderFormView: {}, orderFormView: {},
orderLoading: false, orderLoading: false,
manuOrderLoading: false, manuOrderLoading: false,
manuCodeRelLoading: false,
traceOrderQuery: { traceOrderQuery: {
recordCode: null, recordCode: null,
page: 1, page: 1,
@ -863,10 +864,17 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}, },
manuCodeRelQuery: {
manuOrderIdFk: null,
page: 1,
limit: 10,
},
traceOrderList: [], traceOrderList: [],
traceOrderTotal: 0, traceOrderTotal: 0,
manuOrderList: [], manuOrderList: [],
manuOrderTotal: 0, manuOrderTotal: 0,
listCodeRel: [],
codeRelTotal: 0,
filterQuery: { filterQuery: {
recordCode: null, recordCode: null,
cpmctymc: null, cpmctymc: null,
@ -914,10 +922,61 @@ export default {
}, },
}, },
methods: { 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) { handleSelectionChange(val) {
this.currentRow = val; this.currentRow = val;
this.getManuCodeRel(); 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){ recordhandleSelectionChange(val){
this.currentRow = val; this.currentRow = val;
this.getTraceOrder(); this.getTraceOrder();
@ -1019,6 +1078,19 @@ export default {
page: 1, page: 1,
limit: 10, 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(); this.getList();
}, },
onSubmit(){ onSubmit(){

Loading…
Cancel
Save