|
@@ -43,7 +43,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<p class="notice-text" v-if="loading">{{ $t("Key463") }}...</p>
|
|
|
- <p class="notice-text" v-if="noMore">{{ $t("Key462") }}</p>
|
|
|
+ <p class="notice-text" v-if="noMore&&total_count">{{ $t("Key462") }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -62,6 +62,7 @@ export default {
|
|
|
pageSize: 20,
|
|
|
pageNum: 0,
|
|
|
total_page: 1,
|
|
|
+ total_count: 0,
|
|
|
loading: false,
|
|
|
height: "20px",
|
|
|
currDate: "",
|
|
@@ -97,6 +98,7 @@ export default {
|
|
|
this.loading = false;
|
|
|
let list = res.message_list;
|
|
|
this.total_page = res.total_page;
|
|
|
+ this.total_count = res.total_count
|
|
|
if (list && list.length > 0) {
|
|
|
list = list.map((item) => {
|
|
|
item.isShow = false;
|