From c75ad6914038bef15c13cf1a00ed490ab2881977 Mon Sep 17 00:00:00 2001 From: "luoJunYong.123" Date: Thu, 30 Dec 2021 17:45:53 +0800 Subject: [PATCH] css_bug --- src/pages/information/contentManage/contentList.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/pages/information/contentManage/contentList.vue b/src/pages/information/contentManage/contentList.vue index be3f220..e57a9a9 100644 --- a/src/pages/information/contentManage/contentList.vue +++ b/src/pages/information/contentManage/contentList.vue @@ -96,6 +96,14 @@ export default { this.$get(`${this.api.queryArticleByCondition}/${this.pageNo}/${this.pageSize}`, data).then(res => { this.listData = res.articleList; this.totals = res.total; + // 测试中。。。以下可删 + for(let i=0; i<9; i++) { + this.listData.push(res.articleList[0]) + } + + console.log(res) + + if (!this.listData.length && this.totals) { this.pageNo--; this.getData(); @@ -208,4 +216,9 @@ export default { .off + span { display: none; } + +.page-content { + height: 67vh; + overflow: auto!important; +} \ No newline at end of file