Commit 424df567 by zhuzhequan

添加字段

parent 7964a627
......@@ -20,6 +20,22 @@
v-model.trim="searchForm.route"
placeholder="请输入route"></el-input>
</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-button
type="primary"
......@@ -109,6 +125,15 @@ export default {
label: 'route',
key: 'route'
},
{
label: '消息id',
key: 'messageId'
},
{
label: 'namespace',
key: 'namespace'
},
{
label: '发送状态',
key: 'statusStr'
......@@ -193,6 +218,8 @@ export default {
currentPage: this.currentPage,
pageSize: this.pageSize,
route: this.searchForm.route,
namespace: this.searchForm.namespace,
messageId: this.searchForm.messageId,
startTime: this.period && this.period[0],
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