general-basic-form 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/GeneralBasicForm.vue +3 -3
package/package.json
CHANGED
package/src/GeneralBasicForm.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!--
|
|
2
2
|
* @Author: 陈德立*******419287484@qq.com
|
|
3
3
|
* @Date: 2021-08-20 17:14:53
|
|
4
|
-
* @LastEditTime: 2021-
|
|
4
|
+
* @LastEditTime: 2021-10-13 16:35:02
|
|
5
5
|
* @LastEditors: 陈德立*******419287484@qq.com
|
|
6
6
|
* @Github: https://github.com/Alan1034
|
|
7
7
|
* @Description:
|
|
@@ -169,10 +169,10 @@ export default {
|
|
|
169
169
|
});
|
|
170
170
|
},
|
|
171
171
|
/** 重置按钮操作 */
|
|
172
|
-
resetQuery() {
|
|
172
|
+
async resetQuery() {
|
|
173
173
|
this.$refs.queryFormRef.resetFields();
|
|
174
174
|
const params = { page: 1 };
|
|
175
|
-
this.$router.push({
|
|
175
|
+
await this.$router.push({
|
|
176
176
|
query: { ...params },
|
|
177
177
|
});
|
|
178
178
|
this.handleQuery();
|