9.22 lpt搜索框删除时增加查询列表功能
Showing
3 changed files
with
4 additions
and
4 deletions
| ... | @@ -15,7 +15,7 @@ | ... | @@ -15,7 +15,7 @@ |
| 15 | </el-col> | 15 | </el-col> |
| 16 | <el-col :lg="12"> | 16 | <el-col :lg="12"> |
| 17 | <div style="display: flex;align-items: center;height: 100%"> | 17 | <div style="display: flex;align-items: center;height: 100%"> |
| 18 | <el-input v-model="searchParam.name" class="search-input" clearable :placeholder="languageLibrary[language].e"> | 18 | <el-input v-model="searchParam.name" class="search-input" clearable @clear="getList" :placeholder="languageLibrary[language].e"> |
| 19 | <template #append> | 19 | <template #append> |
| 20 | <el-button @click="getList" class="search-btn" > | 20 | <el-button @click="getList" class="search-btn" > |
| 21 | <el-icon> | 21 | <el-icon> | ... | ... |
| ... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
| 7 | </el-col> | 7 | </el-col> |
| 8 | <el-col :lg="12"> | 8 | <el-col :lg="12"> |
| 9 | <div style="display: flex;align-items: center;height: 100%"> | 9 | <div style="display: flex;align-items: center;height: 100%"> |
| 10 | <el-input class="search-input" clearable :placeholder="languageLibrary[language].c" v-model="searchParam.name"> | 10 | <el-input class="search-input" clearable @clear="getList" :placeholder="languageLibrary[language].c" v-model="searchParam.name"> |
| 11 | <template #append> | 11 | <template #append> |
| 12 | <el-button @click="getList" class="search-btn" > | 12 | <el-button @click="getList" class="search-btn" > |
| 13 | <el-icon> | 13 | <el-icon> | ... | ... |
| ... | @@ -84,8 +84,8 @@ export default defineConfig(({mode, command}) => { | ... | @@ -84,8 +84,8 @@ export default defineConfig(({mode, command}) => { |
| 84 | }, | 84 | }, |
| 85 | '/dev-api': { | 85 | '/dev-api': { |
| 86 | // target: 'http://192.168.1.118:8082/', | 86 | // target: 'http://192.168.1.118:8082/', |
| 87 | target: 'http://192.168.1.238:8082', | 87 | // target: 'http://192.168.1.238:8082', |
| 88 | // target: 'https://www.longpoker.com/stage-api/', | 88 | target: 'https://www.longpoker.com/stage-api/', |
| 89 | // target: 'http://124.70.181.90:1880/stage-api', | 89 | // target: 'http://124.70.181.90:1880/stage-api', |
| 90 | // target: 'https://sys.2025wtcwuxi.com/stage-api/', | 90 | // target: 'https://sys.2025wtcwuxi.com/stage-api/', |
| 91 | changeOrigin: true, | 91 | changeOrigin: true, | ... | ... |
-
Please register or sign in to post a comment