From c1a578302edc941b70d37422360ce1628aa9994b Mon Sep 17 00:00:00 2001 From: binbin_pan Date: Fri, 26 Apr 2024 17:48:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=201360=20=E8=8B=A5=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E7=89=A9=E5=93=81=E7=A7=8D=E7=B1=BB=E4=B8=8E=E8=AE=BE=E5=A4=87?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=EF=BC=8C=E9=87=8D=E7=BD=AE=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E6=97=A0=E6=B3=95=E9=87=8D=E7=BD=AE=E8=AE=BE=E5=A4=87=E7=B1=BB?= =?UTF-8?q?=E5=9E=8B=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sgzb-ui/src/views/store/tools/devices.vue | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/sgzb-ui/src/views/store/tools/devices.vue b/sgzb-ui/src/views/store/tools/devices.vue index 060caa24..f3bcb568 100644 --- a/sgzb-ui/src/views/store/tools/devices.vue +++ b/sgzb-ui/src/views/store/tools/devices.vue @@ -617,12 +617,12 @@ getTypeList({ level: '2' }).then((response) => { this.itemList = response.data }) - getTypeList({ level: '3' }).then((response) => { - this.typeList = response.data - }) - getTypeList({ level: '4' }).then((response) => { - this.modelList = response.data - }) + // getTypeList({ level: '3' }).then((response) => { + // this.typeList = response.data + // }) + // getTypeList({ level: '4' }).then((response) => { + // this.modelList = response.data + // }) }, //选择物品种类 selectItem(id) { @@ -704,6 +704,8 @@ /** 重置按钮操作 */ resetQuery() { this.dateRange = [] + this.typeList = [] + this.modelList = [] this.resetForm('queryForm') this.handleQuery() },