# cs_1 **Repository Path**: luanmajun2002/cs_1 ## Basic Information - **Project Name**: cs_1 - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-08-19 - **Last Updated**: 2025-08-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README import { NewsCommentModel } from '../model/NewsCommentModel'; import { $r } from '@ohos.arkui.component'; export function mockData(): Array { const commentList: Array = new Array(); commentList.push(new NewsCommentModel( '1', $r('app.media.news_user_select'), '你若安好便是晴天', '国足加油!国足必胜!', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '2', $r('app.media.news_user_select'), '天要下雨娘要嫁人', '来点信心,加油加油~', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '3', $r('app.media.news_user_select'), '太阳打北边出来了', '下一场什么时候,有直播吗', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '4', $r('app.media.news_user_select'), '西红柿炒鸡蛋蛋卷(特辣)', '教练组的战术调整值得肯定,尤其是在中场控制方面有所改善。', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '5', $r('app.media.news_user_select'), '东边有个塔玛,西边有个喇嘛', '期待他们在未来的比赛中继续进步!', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '6', $r('app.media.news_user_select'), '等烟雨而我在等你', '希望接下来的比赛中继续发挥,成为球队的中坚力量。','昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '7', $r('app.media.news_user_select'), '大事不妙了', '与世界强队的差距依然显著,继续努力吧。', '昨天23:24·杭州') ) commentList.push(new NewsCommentModel( '8', $r('app.media.news_user_select'), '小猫带耳机', '国足必胜,加油加油。', '昨天23:24·杭州') ) return commentList; }