diff --git a/src/views/udi/trace/search/index.vue b/src/views/udi/trace/search/index.vue index 4f6b32f..56be1bc 100644 --- a/src/views/udi/trace/search/index.vue +++ b/src/views/udi/trace/search/index.vue @@ -150,9 +150,10 @@ + - + @@ -343,7 +344,7 @@ diff --git a/src/views/udi/trace/searchLive/index.vue b/src/views/udi/trace/searchLive/index.vue index e272a1a..8889a35 100644 --- a/src/views/udi/trace/searchLive/index.vue +++ b/src/views/udi/trace/searchLive/index.vue @@ -175,7 +175,7 @@ - + @@ -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() } }