This commit is contained in:
曹辉 2023-01-16 13:30:14 +08:00
parent 89d31d0392
commit 82e5c9acc0

View File

@ -291,7 +291,7 @@ export default {
goodsCategoryPicture: null, goodsCategoryPicture: null,
categoryRemark: null, categoryRemark: null,
sort: null, sort: null,
parentId: "", parentId: 0,
parentName: "", parentName: "",
}, },
// //
@ -419,6 +419,11 @@ export default {
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery() { resetQuery() {
this.queryParams = {
pageNum: 1,
pageSize: 10,
parentId: 0,
};
this.resetForm("queryForm"); this.resetForm("queryForm");
this.handleQuery(); this.handleQuery();
}, },