Skip to content

Commit

Permalink
fix: 🐛 重置查询方法名错误纠正
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxianrui committed Nov 27, 2024
1 parent dda1b30 commit a74f458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/work/role/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
placeholder="请输入关键字"
/>
<view class="flex-between py-2">
<wd-button class="w-20%" type="info" @click="hendleResetQuery">重置</wd-button>
<wd-button class="w-20%" type="info" @click="handleResetQuery">重置</wd-button>
<wd-button class="w-70%" @click="handleQuery">确定</wd-button>
</view>
</view>
Expand Down Expand Up @@ -126,7 +126,7 @@ function handleQuery() {
/**
* 重置查询
*/
const hendleResetQuery = () => {
const handleResetQuery = () => {
filterDropMenu.value?.close();
queryParams.keywords = "";
queryParams.pageNum = 1;
Expand Down

0 comments on commit a74f458

Please sign in to comment.