From 98f4b7ec4164ec1c6798c8c4188b93f4ce48ec46 Mon Sep 17 00:00:00 2001 From: xuxy <1059738716@qq.com> Date: 星期三, 10 七月 2024 23:39:57 +0800 Subject: [PATCH] update收获地址 --- 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