|
@@ -10,12 +10,12 @@
|
|
|
>
|
|
>
|
|
|
<div class="query-criteria">
|
|
<div class="query-criteria">
|
|
|
<span class="criteria-label">回复状态</span>
|
|
<span class="criteria-label">回复状态</span>
|
|
|
- <el-select v-model="replyResult" placeholder="请选择回复状态">
|
|
|
|
|
|
|
+ <el-select v-model="replyResult" placeholder="请选择回复状态" @change="pageQueryMyMessage()">
|
|
|
<el-option v-for="(label, value) in replyResultMap" :key="value" :label="label" :value="value" />
|
|
<el-option v-for="(label, value) in replyResultMap" :key="value" :label="label" :value="value" />
|
|
|
</el-select>
|
|
</el-select>
|
|
|
|
|
|
|
|
<span class="query-button">
|
|
<span class="query-button">
|
|
|
- <el-button type="primary" @click="pageQueryMyMessage">查询</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" @click="pageQueryMyMessage()">查询</el-button>
|
|
|
</span>
|
|
</span>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
@@ -91,7 +91,7 @@ export default {
|
|
|
methods: {
|
|
methods: {
|
|
|
pageQueryMyMessage(data) {
|
|
pageQueryMyMessage(data) {
|
|
|
const params = {
|
|
const params = {
|
|
|
- reply_result: this.replyResult,
|
|
|
|
|
|
|
+ reply_result: Number(this.replyResult),
|
|
|
page_capacity: this.page_capacity,
|
|
page_capacity: this.page_capacity,
|
|
|
cur_page: this.cur_page,
|
|
cur_page: this.cur_page,
|
|
|
...data,
|
|
...data,
|