|
@@ -53,7 +53,59 @@ export class Tab1Page implements OnInit {
|
|
|
// 添加更多示例数据
|
|
|
];
|
|
|
|
|
|
-
|
|
|
+ videos: { videoUrl: string, title: string, description: string }[] = [
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video2.mp4',
|
|
|
+ title: '房屋装修设计指南',
|
|
|
+ description: '了解如何打造理想的家居装修风格'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video2.mp4',
|
|
|
+ title: '家具选购攻略',
|
|
|
+ description: '挑选适合你家的家具,打造舒适空间'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video3.mp4',
|
|
|
+ title: '客厅装饰灵感',
|
|
|
+ description: '打造温馨舒适的客厅装饰'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video4.mp4',
|
|
|
+ title: '卧室设计技巧',
|
|
|
+ description: '掌握卧室设计的实用技巧'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video5.mp4',
|
|
|
+ title: '厨房装修实例',
|
|
|
+ description: '欣赏不同风格的厨房装修案例'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video6.mp4',
|
|
|
+ title: '阳台花园布置',
|
|
|
+ description: '打造美丽的阳台花园'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video7.mp4',
|
|
|
+ title: '书房设计灵感',
|
|
|
+ description: '打造宁静的读书空间'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video8.mp4',
|
|
|
+ title: '浴室装修技巧',
|
|
|
+ description: '打造舒适的浴室空间'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video9.mp4',
|
|
|
+ title: '家居风水指南',
|
|
|
+ description: '了解家居风水的重要性'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ videoUrl: 'assets/videos/video10.mp4',
|
|
|
+ title: '家庭影院布置',
|
|
|
+ description: '打造私人家庭影院'
|
|
|
+ }
|
|
|
+ // 可以根据需要添加更多视频数据
|
|
|
+ ];
|
|
|
|
|
|
|
|
|
|