33 lines
762 B
Vue
33 lines
762 B
Vue
<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>
|