From d91c23a3dc8cb22c0a5b2bbb5a74c6aac37469b5 Mon Sep 17 00:00:00 2001
From: xuxy <1059738716@qq.com>
Date: 星期三, 03 七月 2024 11:35:02 +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