From 82e5c9acc0076e5cd9b61cd39a3cbbba42692f1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E8=BE=89?= <814457906@qq.com> Date: Mon, 16 Jan 2023 13:30:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/goodsCategory/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/system/goodsCategory/index.vue b/src/views/system/goodsCategory/index.vue index 38c6202..24cbfc4 100644 --- a/src/views/system/goodsCategory/index.vue +++ b/src/views/system/goodsCategory/index.vue @@ -291,7 +291,7 @@ export default { goodsCategoryPicture: null, categoryRemark: null, sort: null, - parentId: "", + parentId: 0, parentName: "", }, // 表单参数 @@ -419,6 +419,11 @@ export default { }, /** 重置按钮操作 */ resetQuery() { + this.queryParams = { + pageNum: 1, + pageSize: 10, + parentId: 0, + }; this.resetForm("queryForm"); this.handleQuery(); },