Files
dvcp_v2_wxcp_app/src/apps/AppResourcesManage/talking.vue

96 lines
1.6 KiB
Vue
Raw Normal View History

2021-11-15 10:29:05 +08:00
<template>
<div class="talking">
<div class="header">
<p>刘家河村委会张家村<span>20</span>个设备</p>
2021-12-27 08:58:42 +08:00
<img src="./img/right-img.png" alt="">
2021-11-15 10:29:05 +08:00
</div>
<div class="content">
<!-- <p class="time">00:00:13</p> -->
2021-12-27 08:58:42 +08:00
<img src="./img/body.png" alt="">
2021-11-15 10:29:05 +08:00
<p class="text">请先选择设备</p>
<p class="text">再点击下方按钮开始喊话~</p>
</div>
<div class="footer">
2021-12-16 18:30:17 +08:00
<img :src="`${$cdn}video/stop-img.png`" alt="">
2021-11-15 10:29:05 +08:00
</div>
</div>
</template>
2021-12-15 14:37:20 +08:00
<script>
2021-11-15 10:29:05 +08:00
export default {
2021-12-16 18:30:17 +08:00
name: "talking"
2021-11-15 10:29:05 +08:00
}
</script>
<style lang="scss" scoped>
2021-12-15 14:37:20 +08:00
uni-page-body {
2021-11-15 10:29:05 +08:00
background-color: #fff;
}
2021-12-15 14:37:20 +08:00
2021-11-15 10:29:05 +08:00
.talking {
2021-12-15 14:37:20 +08:00
.header {
2021-11-15 10:29:05 +08:00
width: 100%;
height: 128px;
background: #F6F8FC;
padding: 42px 32px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
2021-12-15 14:37:20 +08:00
p {
2021-11-15 10:29:05 +08:00
font-size: 32px;
color: #333;
line-height: 44px;
2021-12-15 14:37:20 +08:00
span {
2021-11-15 10:29:05 +08:00
color: #1174FE;
}
}
2021-12-15 14:37:20 +08:00
img {
2021-11-15 10:29:05 +08:00
width: 32px;
height: 32px;
}
}
2021-12-15 14:37:20 +08:00
.content {
2021-11-15 10:29:05 +08:00
margin-top: 224px;
2021-12-15 14:37:20 +08:00
.time {
2021-11-15 10:29:05 +08:00
width: 100%;
text-align: center;
font-size: 96px;
color: #000000;
line-height: 134px;
}
2021-12-15 14:37:20 +08:00
img {
2021-11-15 10:29:05 +08:00
width: 406px;
height: 306px;
margin: 0 0 48px 172px;
}
2021-12-15 14:37:20 +08:00
.text {
2021-11-15 10:29:05 +08:00
font-size: 30px;
color: #999;
line-height: 42px;
text-align: center;
}
}
2021-12-15 14:37:20 +08:00
.footer {
2021-11-15 10:29:05 +08:00
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 168px;
background: #F6F8FC;
padding: 20px 310px;
box-sizing: border-box;
2021-12-15 14:37:20 +08:00
img {
2021-11-15 10:29:05 +08:00
width: 128px;
height: 128px;
}
}
}
2021-12-15 14:37:20 +08:00
</style>