From 79e7a45877a83277e7802ef305a7ddf06f9ca00a Mon Sep 17 00:00:00 2001 From: wangwei <1610949092@qq.com> Date: Mon, 24 Apr 2023 10:28:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=B3=E8=81=94=E7=AC=AC=E4=B8=89=E6=96=B9?= =?UTF-8?q?=E4=BB=93=E5=BA=93=20=E6=B7=BB=E5=8A=A0=E9=87=8D=E7=BD=AE?= =?UTF-8?q?=E6=8C=89=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/dept/invWarehouse.vue | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/src/views/system/dept/invWarehouse.vue b/src/views/system/dept/invWarehouse.vue index a960f5f..390694a 100644 --- a/src/views/system/dept/invWarehouse.vue +++ b/src/views/system/dept/invWarehouse.vue @@ -288,6 +288,7 @@ 查询 + 重置 @@ -501,6 +502,33 @@ export default { }; }, + onResetintent(){ + debugger + this.$router.push({ + path: "", + }); + this.thirdSubQuery = { + thirdSysFk: this.thirdSubQuery.thirdSysFk, + page:1, + limit: 10 + } + + filterThridSubByInv(this.thirdSubQuery).then((res) => { + if (res.code == 20000) { + this.thrSubWarehouseData = res.data.list; + this.subTotal = res.data.total || 0; + } else { + this.$message.error(res.message); + } + + }).catch((error) => { + this.thrWarehouseData = []; + this.subTotal = 0; + this.$message.error("第三方分库库数据加载失败"); + }); + + }, + onSubmit() { //提交查询 this.query.advanceType=this.subDataType.advanceType; this.getList();