zhengyiming
2025-02-10 0f686ea1fe4700a909a6159efcf1fcb0e1f88a17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
  <PageLayout title="消息详情" class="chatRoom-page-wrapper">
    <InnerPage />
  </PageLayout>
</template>
 
<script setup lang="ts">
import { PageLayout } from '@/components';
import InnerPage from './InnerPage.vue';
 
defineOptions({
  name: 'chatRoom',
});
</script>
 
<style lang="scss">
@import '@/styles/common.scss';
 
.chatRoom-page-wrapper {
  .safe-area-bottom {
    background-color: #fff;
  }
}
</style>