UDI查询模块代码修改

master
schry 2 years ago
parent dd69265d32
commit 25731d6376

@ -150,9 +150,10 @@
<el-table-column label="单据号" prop="billNo" width="180"></el-table-column>
<el-table-column label="单据日期" prop="billDate" width="150"></el-table-column>
<el-table-column label="单据类型" prop="billType" width="150"></el-table-column>
<el-table-column label="发货单位" prop="fromCorp" width="220"></el-table-column>
<el-table-column label="收货单位" prop="toCorp" width="220"></el-table-column>
<el-table-column label="所属企业" prop="companyName" width="220"></el-table-column>
<el-table-column label="所属企业" prop="companyIdFk" width="220" :formatter="formatCompanyName"></el-table-column>
<el-table-column label="上传人" prop="uploadUser" width="220"></el-table-column>
<el-table-column label="备注" prop="remark" width="220"></el-table-column>
@ -343,7 +344,7 @@
<script>
import {filterCpmctymc, filterGgxh, filterNameCode, sourceSearch} from "@/api/udi/udiTrace";
import {filterCpmctymc, filterGgxh, filterNameCode, sourceSearch,filterCompanyName} from "@/api/udi/udiTrace";
import {filterCompany} from "@/api/basic/udiInfo";
export default {
@ -369,11 +370,31 @@ export default {
fromOptions: [],
cpmctymcList: [],
ggxhList: [],
nameCodeList: []
nameCodeList: [],
companyNameList: []
}
},
methods: {
formatCompanyName(row){
let temp = this.companyNameList.find(item=>{
return item.id == row.companyIdFk
})
return temp && temp.companyName
},
getCompanyName(){
let cQuery = {
page: 1,
limit: 10,
};
filterCompanyName(cQuery).then((res) => {
this.companyNameList = res.data.list || [];
console.log(this.companyNameList)
})
},
ggxhChange() {
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getNameCodeList()
},
getNameCodeList(query) {
@ -391,6 +412,9 @@ export default {
})
},
cpmctymcChange() {
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getGgxhList()
},
getGgxhList(query) {
@ -407,6 +431,10 @@ export default {
})
},
ylqxzcrbarmcChange() {
this.filterQuery.cpmctymc = null
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getCpmctymcList()
},
getCpmctymcList(query) {
@ -464,7 +492,7 @@ export default {
page: 1,
limit: 10,
};
//this.list = null
this.list = null
//this.total = 0
},
onSubmit() {
@ -493,6 +521,7 @@ export default {
},
},
created() {
this.getCompanyName()
}
}
</script>

@ -175,7 +175,7 @@
<el-table-column label="单据类型" prop="billType" width="150"></el-table-column>
<el-table-column label="发货单位" prop="fromCorp" width="220"></el-table-column>
<el-table-column label="收货单位" prop="toCorp" width="220"></el-table-column>
<el-table-column label="所属企业" prop="companyName" width="220"></el-table-column>
<el-table-column label="所属企业" prop="companyIdFk" width="220" :formatter="formatCompanyName"></el-table-column>
<el-table-column label="上传人" prop="uploadUser" width="220"></el-table-column>
<el-table-column label="备注" prop="remark" width="220"></el-table-column>
@ -397,6 +397,13 @@ export default {
}
},
methods: {
formatCompanyName(row){
let temp = this.companyNameList.find(item=>{
return item.id == row.companyIdFk
})
return temp && temp.companyName
},
geCompanyNameList(query) {
let cQuery = {
companyName: query,
@ -414,6 +421,8 @@ export default {
});
},
ggxhChange() {
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getNameCodeList()
},
getNameCodeList(query) {
@ -431,6 +440,9 @@ export default {
})
},
cpmctymcChange() {
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getGgxhList()
},
getGgxhList(query) {
@ -447,6 +459,10 @@ export default {
})
},
ylqxzcrbarmcChange() {
this.filterQuery.cpmctymc = null
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getCpmctymcList()
},
getCpmctymcList(query) {
@ -504,7 +520,7 @@ export default {
page: 1,
limit: 10,
};
//this.list = null
this.list = null
//this.total = 0
},
onSubmit() {
@ -533,6 +549,7 @@ export default {
},
},
created() {
this.geCompanyNameList()
}
}
</script>

Loading…
Cancel
Save