rev:优化测试出现的问题

This commit is contained in:
2024-07-06 17:30:10 +08:00
parent 4f678392e0
commit d810379d1e
9 changed files with 145 additions and 63 deletions

View File

@@ -8,14 +8,18 @@
<!-- style="width: 200px;"-->
<!-- class="filter-item"-->
<!-- />-->
<el-input
<el-select
v-model="query.method"
clearable
filterable
size="small"
placeholder="请输入你要搜索的方法名"
style="width: 200px;"
class="filter-item"
/>
style="width: 200px"
@change="crud.toQuery"
>
<el-option v-for="item in methods" :key="item.value" :label="item.label" :value="item.value" />
</el-select>
<el-input
v-model="query.requestparam"
clearable
@@ -104,7 +108,7 @@ export default {
queryAddressCodeList().then(data => {
this.methods = data.content
})
},
}
}
</script>