diff --git a/src/views/inout/receive/receiveAdd.vue b/src/views/inout/receive/receiveAdd.vue index ccd4bf49..da0790da 100644 --- a/src/views/inout/receive/receiveAdd.vue +++ b/src/views/inout/receive/receiveAdd.vue @@ -33,7 +33,7 @@ v-for="item in corpList" :key="item.code" :label="item.name" - :value="item.code"> + :value="item.name"> diff --git a/src/views/inout/receive/receiveAudit.vue b/src/views/inout/receive/receiveAudit.vue index f238e6ac..b18e2a83 100644 --- a/src/views/inout/receive/receiveAudit.vue +++ b/src/views/inout/receive/receiveAudit.vue @@ -33,7 +33,7 @@ v-for="item in corpList" :key="item.code" :label="item.name" - :value="item.code"> + :value="item.name"> diff --git a/src/views/inout/receive/receiveSearch.vue b/src/views/inout/receive/receiveSearch.vue index c475d870..04be3d9c 100644 --- a/src/views/inout/receive/receiveSearch.vue +++ b/src/views/inout/receive/receiveSearch.vue @@ -33,7 +33,7 @@ v-for="item in corpList" :key="item.code" :label="item.name" - :value="item.code"> + :value="item.name"> diff --git a/src/views/sync/SysUdimsData.vue b/src/views/sync/SysUdimsData.vue index 7633144b..1a87f29d 100644 --- a/src/views/sync/SysUdimsData.vue +++ b/src/views/sync/SysUdimsData.vue @@ -24,7 +24,7 @@ 重置 - 查询 + 查询 同步单据 @@ -174,6 +174,11 @@ export default { this.syncTime = null; this.getList(); }, + + search(){ + this.filterQuery.page=1; + this.getList(); + }, getList() { this.loading = true; filterLog(this.filterQuery) diff --git a/src/views/thirdSys/busType/index.vue b/src/views/thirdSys/busType/index.vue index 6e8362ae..d223b1cc 100644 --- a/src/views/thirdSys/busType/index.vue +++ b/src/views/thirdSys/busType/index.vue @@ -219,6 +219,8 @@ export default { this.mainThirdSys = this.thirdSys[i].thirdId; } } + this.filterQuery.thirdSys= this.mainThirdSys; + this.getList(); this.getThirdSysDetail(); }) .catch(() => { @@ -440,7 +442,7 @@ export default { this.init(); this.getSyncConfig(); this.getBasicThirdSys(); - this.getList(); + }, };