口才和会议场景

This commit is contained in:
zhonghua1
2026-01-09 19:41:18 +08:00
parent 99d644d082
commit 602338b27b
49 changed files with 5747 additions and 13 deletions

View File

@@ -0,0 +1,81 @@
<template>
<view class="page">
<!-- #ifdef APP -->
<statusBar></statusBar>
<!-- #endif -->
<!-- 导航栏 -->
<uni-nav-bar
:fixed="true"
:statusBar="true"
:border="false"
title="开会"
leftIcon="left"
@clickLeft="goBack"
color="#333"
backgroundColor="#FFFFFF">
</uni-nav-bar>
<view class="content">
<view class="empty-state">
<text class="empty-text">开会功能开发中...</text>
</view>
</view>
</view>
</template>
<script>
// #ifdef APP
import statusBar from "@/uni_modules/uni-nav-bar/components/uni-nav-bar/uni-status-bar";
// #endif
export default {
// #ifdef APP
components: {
statusBar
},
// #endif
data() {
return {
}
},
onLoad() {
},
methods: {
goBack() {
uni.navigateBack();
}
}
}
</script>
<style>
page {
background-color: #F5F5F5;
}
.page {
min-height: 100vh;
background-color: #F5F5F5;
}
.content {
padding-top: 88rpx;
min-height: calc(100vh - 88rpx - 96rpx);
padding-bottom: 96rpx;
}
.empty-state {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
padding: 48rpx;
}
.empty-text {
font-size: 28rpx;
color: #999;
}
</style>