Commit 424df567 by zhuzhequan

添加字段

parent 7964a627
...@@ -20,6 +20,22 @@ ...@@ -20,6 +20,22 @@
v-model.trim="searchForm.route" v-model.trim="searchForm.route"
placeholder="请输入route"></el-input> placeholder="请输入route"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="消息id">
<el-input
size="small"
style="width: 160px"
clearable
v-model.trim="searchForm.messageId"
placeholder="请输入消息id"></el-input>
</el-form-item>
<el-form-item label="namespace">
<el-input
size="small"
style="width: 160px"
clearable
v-model.trim="searchForm.namespace"
placeholder="请输入namespace"></el-input>
</el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
type="primary" type="primary"
...@@ -109,6 +125,15 @@ export default { ...@@ -109,6 +125,15 @@ export default {
label: 'route', label: 'route',
key: 'route' key: 'route'
}, },
{
label: '消息id',
key: 'messageId'
},
{
label: 'namespace',
key: 'namespace'
},
{ {
label: '发送状态', label: '发送状态',
key: 'statusStr' key: 'statusStr'
...@@ -193,6 +218,8 @@ export default { ...@@ -193,6 +218,8 @@ export default {
currentPage: this.currentPage, currentPage: this.currentPage,
pageSize: this.pageSize, pageSize: this.pageSize,
route: this.searchForm.route, route: this.searchForm.route,
namespace: this.searchForm.namespace,
messageId: this.searchForm.messageId,
startTime: this.period && this.period[0], startTime: this.period && this.period[0],
endTime: this.period && this.period[1] endTime: this.period && this.period[1]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment