Files
Yi.Admin/Yi.Bbs.Vue3/src/views/chathub/Index.vue

136 lines
2.4 KiB
Vue
Raw Normal View History

2024-04-02 18:41:41 +08:00
<template>
<div class="body">
2024-04-02 23:24:10 +08:00
<div class="left">
<div class="icon">
<img src="@/assets/chat_images/icon.jpg">
2024-04-02 18:41:41 +08:00
</div>
2024-04-02 23:24:10 +08:00
<ul class="top-icon">
<li><img src="@/assets/chat_images/wechat.png"></li>
<li><img src="@/assets/chat_images/addressBook.png"></li>
<li><img src="@/assets/chat_images/collection.png"></li>
<li><img src="@/assets/chat_images/file.png"></li>
<li><img src="@/assets/chat_images/friend.png"></li>
<li><img src="@/assets/chat_images/line.png"></li>
<li><img src="@/assets/chat_images/look.png"></li>
<li><img src="@/assets/chat_images/sou.png"></li>
</ul>
<ul class="bottom-icon">
<li><img src="@/assets/chat_images/mini.png"></li>
<li><img src="@/assets/chat_images/phone.png"></li>
<li><img src="@/assets/chat_images/other.png"></li>
</ul>
</div>
<div class="middle">
<div class="header">
<div class="search"></div>
2024-04-02 18:41:41 +08:00
</div>
2024-04-02 23:24:10 +08:00
<div class="user-list"></div>
</div>
<div class="right">
<div class="header"></div>
<div class="content"></div>
<div class="bottom"></div>
2024-04-02 18:41:41 +08:00
</div>
2024-04-02 23:24:10 +08:00
</div>
2024-04-02 18:41:41 +08:00
</template>
<style scoped lang="scss">
.body {
2024-04-02 23:24:10 +08:00
height: 790px;
width: 1400px;
2024-04-02 18:41:41 +08:00
display: flex;
justify-content: center;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.left {
background-color: #2a2a2a;
width: 70px;
2024-04-02 23:24:10 +08:00
padding: 46px 10px 0 10px;
.icon {
background-color: burlywood;
height: 46px;
width: 46px;
img{
height: 100%;
width: 100%;
}
}
2024-04-02 18:41:41 +08:00
}
.middle {
background-color: #dadbdc;
width: 380px;
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.header {
height: 75px;
background: #f7f7f7;
2024-04-02 23:24:10 +08:00
padding: 30px 0 30px 0 ;
.search{
margin: auto;
background-color: #E2E2E2;
height: 30px;
width: 338px;
}
2024-04-02 18:41:41 +08:00
}
2024-04-02 23:24:10 +08:00
.user-list {}
2024-04-02 18:41:41 +08:00
}
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.right {
background-color: #f5f5f5;
width: 950px;
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.header {
height: 75px;
background: #f7f7f7;
border: 1px solid #e7e7e7;
}
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.content {
height: 580px;
}
2024-04-02 23:24:10 +08:00
2024-04-02 18:41:41 +08:00
.bottom {
height: calc(100% - 655px);
background: #f7f7f7;
border: 1px solid #e7e7e7;
}
}
2024-04-02 23:24:10 +08:00
.top-icon
{
margin-top: 32px;
li{
cursor: pointer;
text-align: center;
margin-bottom: 24px;
img{
height: 24px;
width: 24px;
}
}
}
.bottom-icon
{margin-top: 125px;
li{
cursor: pointer;
text-align: center;
margin-bottom: 24px;
img{
height: 24px;
width: 24px;
}
}
}
2024-04-02 18:41:41 +08:00
</style>