From e4bb10264e289d376ed5d938c59b0fdbb1d41d6b Mon Sep 17 00:00:00 2001 From: xuxueyang <xuxy@fengyuntec.com> Date: 星期一, 15 七月 2024 18:36:11 +0800 Subject: [PATCH] 1 --- pages/notice/list.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/notice/list.vue b/pages/notice/list.vue index 0c511f0..2a12221 100644 --- a/pages/notice/list.vue +++ b/pages/notice/list.vue @@ -1,12 +1,12 @@ <template> <!-- 列表页面 --> <view> - <view class="p15" style="min-height: calc(100vh - 160rpx);"> + <view class="p15" style="min-height: calc(100vh - 260rpx);"> <no-data v-if="!list||list.length==0" style="width: 100%;"></no-data> <view v-for="(item,index) in list" :key="index" class="m-b-24"> <view @click.stop="toDetail(item)" class="notice-item"> <view>{{item.title}}</view> - <view class="time">{{item.updatedDate}}</view> + <view class="time">{{item.publishDate}}</view> </view> </view> </view> @@ -25,7 +25,7 @@ }, onLoad() { // this.list = [{},{}] - this.listApi = '/api/ua/announcement/list' + this.listApi = '/api/announcement/page' this.getList() }, -- Gitblit v1.9.3