增加Ip查询

This commit is contained in:
zhx 2026-05-19 18:00:44 +08:00
parent 027ff95e8b
commit d2a994cfa9
2 changed files with 9 additions and 20 deletions

View File

@ -1,20 +0,0 @@
## 安装使用
2. 安装依赖
```bash
npm i -g corepack
pnpm install
```
3. 运行
```bash
pnpm dev
```
4. 打包
```bash
pnpm build
```

View File

@ -38,6 +38,7 @@ const accountHandleOpen = ref(false);
const query = reactive({
cursor: 1,
deviceId: '',
ip: '',
limit: 20,
userId: '',
});
@ -161,6 +162,14 @@ loadData(true);
style="width: 260px"
/>
</InlineFilterField>
<InlineFilterField label="IP">
<Input
v-model:value="query.ip"
allow-clear
placeholder="IP"
style="width: 200px"
/>
</InlineFilterField>
<Button :loading="loading" type="primary" @click="loadData(true)">
搜索
</Button>