127 lines
2.6 KiB
Vue
127 lines
2.6 KiB
Vue
<template>
|
||
<div class="groupDetail">
|
||
<div class="bg-fff">
|
||
<div class="group-info">
|
||
<img src="./img/down-icon.png" alt="">
|
||
<div>
|
||
<h3>县政法委</h3>
|
||
<p>群成员:45</p>
|
||
</div>
|
||
</div>
|
||
<img src="./img/down-icon.png" alt="" class="group-img">
|
||
<p class="text">使用微信或企业微信扫码加入</p>
|
||
<div class="btn">申请加入群聊</div>
|
||
<div class="btn">进入群聊</div>
|
||
</div>
|
||
<div class="flex">
|
||
<div class="item">
|
||
<img src="./img/retransmission-icon.png" alt="">
|
||
<p>转发到聊天</p>
|
||
</div>
|
||
<div class="item">
|
||
<img src="./img/wechat-icon.png" alt="">
|
||
<p>分享到微信</p>
|
||
</div>
|
||
<div class="item">
|
||
<img src="./img/down-icon.png" alt="">
|
||
<p>保存到相册</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: "groupDetail",
|
||
appName: "群详情",
|
||
data() {
|
||
return {
|
||
|
||
};
|
||
},
|
||
onShow() {
|
||
|
||
},
|
||
methods: {
|
||
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.groupDetail {
|
||
height: 100vh;
|
||
background-color: #f5f5f5;
|
||
.bg-fff {
|
||
background-color: #fff;
|
||
margin: 48px 32px 52px;
|
||
padding: 64px 32px 72px;
|
||
.group-info {
|
||
display: flex;
|
||
margin-bottom: 72px;
|
||
img {
|
||
width: 96px;
|
||
height: 96px;
|
||
margin: 0 20px 0 40px;
|
||
}
|
||
h3 {
|
||
font-family: PingFangSC-Medium;
|
||
font-weight: 500;
|
||
font-size: 36px;
|
||
color: #333;
|
||
line-height: 52px;
|
||
margin-bottom: 4px;
|
||
}
|
||
p {
|
||
font-family: PingFangSC-Regular;
|
||
font-size: 28px;
|
||
color: #999;
|
||
}
|
||
}
|
||
.group-img {
|
||
width: 386px;
|
||
height: 386px;
|
||
margin: 0 0 40px 118px;
|
||
}
|
||
.text {
|
||
text-align: center;
|
||
font-family: PingFangSC-Regular;
|
||
font-size: 28px;
|
||
color: #666;
|
||
margin-bottom: 80px;
|
||
}
|
||
.btn {
|
||
width: 100%;
|
||
height: 100px;
|
||
text-align: center;
|
||
line-height: 100px;
|
||
background: #3975C6;
|
||
border-radius: 8px;
|
||
font-family: PingFangSC-Medium;
|
||
font-weight: 500;
|
||
font-size: 32px;
|
||
color: #FFF;
|
||
margin-bottom: 32px;
|
||
}
|
||
}
|
||
.flex {
|
||
padding: 0 100px;
|
||
display: flex;
|
||
justify-content: space-between;
|
||
.item {
|
||
text-align: center;
|
||
img {
|
||
width: 62px;
|
||
height: 62px;
|
||
margin-bottom: 4px;
|
||
}
|
||
p {
|
||
font-family: PingFangSC-Regular;
|
||
font-weight: 400;
|
||
font-size: 26px;
|
||
color: #999;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style> |