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="billNo" width="180"></el-table-column>
<el-table-column label="单据日期" prop="billDate" width="150"></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="billType" width="150"></el-table-column>
<el-table-column label="发货单位" prop="fromCorp" width="220"></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="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="uploadUser" width="220"></el-table-column>
<el-table-column label="备注" prop="remark" width="220"></el-table-column> <el-table-column label="备注" prop="remark" width="220"></el-table-column>
@ -343,7 +344,7 @@
<script> <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"; import {filterCompany} from "@/api/basic/udiInfo";
export default { export default {
@ -369,11 +370,31 @@ export default {
fromOptions: [], fromOptions: [],
cpmctymcList: [], cpmctymcList: [],
ggxhList: [], ggxhList: [],
nameCodeList: [] nameCodeList: [],
companyNameList: []
} }
}, },
methods: { 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() { ggxhChange() {
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getNameCodeList() this.getNameCodeList()
}, },
getNameCodeList(query) { getNameCodeList(query) {
@ -391,6 +412,9 @@ export default {
}) })
}, },
cpmctymcChange() { cpmctymcChange() {
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getGgxhList() this.getGgxhList()
}, },
getGgxhList(query) { getGgxhList(query) {
@ -407,6 +431,10 @@ export default {
}) })
}, },
ylqxzcrbarmcChange() { ylqxzcrbarmcChange() {
this.filterQuery.cpmctymc = null
this.filterQuery.ggxh = null
this.filterQuery.nameCode = null
this.filterQuery.batchNo = null
this.getCpmctymcList() this.getCpmctymcList()
}, },
getCpmctymcList(query) { getCpmctymcList(query) {
@ -464,7 +492,7 @@ export default {
page: 1, page: 1,
limit: 10, limit: 10,
}; };
//this.list = null this.list = null
//this.total = 0 //this.total = 0
}, },
onSubmit() { onSubmit() {
@ -493,6 +521,7 @@ export default {
}, },
}, },
created() { created() {
this.getCompanyName()
} }
} }
</script> </script>

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

Loading…
Cancel
Save