我的模块完成,朋友圈需要添加功能

This commit is contained in:
cbb
2025-12-29 17:53:30 +08:00
parent e3e409b8b8
commit 417bfe235f
10 changed files with 311 additions and 3 deletions

View File

@@ -0,0 +1,32 @@
<script setup>
import { navigateTo } from '@/utils/router'
</script>
<template>
<view class="meeting-record-index">
<view
v-for="item in 3"
class="public-meeting-card"
@click="
navigateTo('/pages/my-index/meeting-record/details', { id: item })
"
>
<image
src="https://q9.itc.cn/q_70/images01/20241011/856bff05ebe54098ad4af2cb59e02ae8.png"
mode="aspectFill"
class="left-img"
></image>
<view class="right-box">
<text>Admin的视频的会议</text>
<text>12月27日13:27</text>
</view>
</view>
</view>
</template>
<style lang="scss" scoped>
@import '../styles/meeting-record.scss';
.meeting-record-index {
padding: 32rpx 24rpx;
}
</style>