我的模块完成,朋友圈需要添加功能
This commit is contained in:
32
pages/my-index/meeting-record/index.vue
Normal file
32
pages/my-index/meeting-record/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user