From 7cfd921455297b492afc6f1cb278ea917bdf70c3 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期三, 26 七月 2023 12:30:39 +0800 Subject: [PATCH] 修改 --- src/views/Admin/msgRecord.vue | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/views/Admin/msgRecord.vue b/src/views/Admin/msgRecord.vue index 3faef87..514b098 100644 --- a/src/views/Admin/msgRecord.vue +++ b/src/views/Admin/msgRecord.vue @@ -12,7 +12,7 @@ /> </a-col> <a-col :span="4"> - <a-button type="primary" @click="getData">查询</a-button> + <a-button type="primary" @click="searchData()">查询</a-button> <a-button style="margin-left: 12px" @click="resetSearch">重置</a-button> </a-col> </a-row> @@ -25,8 +25,9 @@ </div> <a-divider type="vertical" /> <div class="tit"> - 任务ID:<span>{{item.id}}</span> + 任务ID:<span>{{item.id}}</span> </div> + 发送人数:{{item.recipients.length}} </template> <p> {{item.content}} @@ -102,6 +103,11 @@ } }, + searchData(){ + this.search.pageIndex = 1 + this.getData() + }, + resetSearch(){ const t = this t.search = { -- Gitblit v1.9.2