Przeglądaj źródła

fix: 查询重置

dx 5 miesięcy temu
rodzic
commit
be92d17b92
1 zmienionych plików z 2 dodań i 1 usunięć
  1. 2 1
      src/views/HomeView.vue

+ 2 - 1
src/views/HomeView.vue

@@ -178,7 +178,7 @@ const onLoad = (value) => {
   listTools({
       level: '3',
       parentId: value,
-      materialName: searchValueRef.value,
+      toolName: searchValueRef.value,
       pageSize: totalPage.value,
       delFlag: 0
     }).then((res) => {
@@ -255,6 +255,7 @@ const handleChangeDropdownOfType2 = (value) => {
 
 const handleClear = () => {
   searchValueRef.value = ''
+  onLoad()
 }
 const handleDetail = (row) => {
   router.push({ path: '/detail', query: { id: row.id, toolName: row.toolName } })