追溯查询页面

master
schry 2 years ago
parent 9aebb2234d
commit 78ce824478

@ -732,6 +732,16 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}, },
manuOrderQuery: {
recordCode: null,
page: 1,
limit: 10,
},
manuCodeRelQuery: {
manuOrderIdFk: null,
page: 1,
limit: 10,
},
total: 0, total: 0,
loading: false, loading: false,
manuOrderLoading: false, manuOrderLoading: false,
@ -740,6 +750,8 @@ export default {
listOrder: [], listOrder: [],
listCodeRel: [], listCodeRel: [],
open: false, open: false,
openManuOrder: false,
openManuCodeRel: false,
formView: {}, formView: {},
manuOrderFormView: {}, manuOrderFormView: {},
manuOrderCodeRelFormView: {}, manuOrderCodeRelFormView: {},
@ -755,13 +767,26 @@ export default {
} }
}, },
methods: { methods: {
handleViewCoderel(row) {
this.listCodeRel.forEach(obj => {
if (this.listCodeRel[0]) {
this.formViewCodeRel = obj
}
})
console.log(this.formViewCodeRel)
this.openManuCodeRel = true
},
handleSelectionChange(val) {
this.currentRow = val;
this.getManuCodeRel();
},
getManuCodeRel() { getManuCodeRel() {
if (this.currentRow == null || isBlank(this.currentRow.billNo)) { if (this.currentRow.id == null) {
this.$message.error("请先选择需要查询的单据!") this.$message.error("请先选择需要查询的单据!")
return; return;
} }
this.manuCodeRelLoading = true; this.manuCodeRelLoading = true;
this.manuCodeRelQuery.manuOrderNo = this.currentRow.billNo; this.manuCodeRelQuery.manuOrderIdFk = this.currentRow.id;
getManuCodeRelList(this.manuCodeRelQuery).then((res) => { getManuCodeRelList(this.manuCodeRelQuery).then((res) => {
this.manuCodeRelLoading = false; this.manuCodeRelLoading = false;
if (res.code === 20000) { if (res.code === 20000) {
@ -784,7 +809,7 @@ export default {
// //
this.listCodeRel = null; this.listCodeRel = null;
this.loading = true; this.loading = true;
getTraceManuOrderList(this.filterQuery).then((res) => { getTraceManuOrderList(this.manuOrderQuery).then((res) => {
this.loading = false; this.loading = false;
if (res.code === 20000) { if (res.code === 20000) {
this.listOrder = res.data.list || []; this.listOrder = res.data.list || [];
@ -970,6 +995,8 @@ export default {
this.list = res.data || []; this.list = res.data || [];
this.total = res.data.total || 0; this.total = res.data.total || 0;
console.log(res.data) console.log(res.data)
this.manuOrderQuery.recordCode = res.data.recordCode
this.getManuOrderList()
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
this.list = []; this.list = [];

Loading…
Cancel
Save