迁移广播通知

This commit is contained in:
aixianling
2021-12-16 18:30:17 +08:00
parent b96dcf261a
commit d2296dc116
36 changed files with 46 additions and 133 deletions

View File

@@ -0,0 +1,163 @@
<template>
<div class="selectEquipment">
<div class="search">
<div class="search-bg">
<img src="./img/search-icon.png" alt="">
<u-input v-model="value" type="text" placeholder="搜索设备名称" class="search-input" height="18"/>
</div>
</div>
<div class="record">
<div class="item">
<img src="./img/cir.png" alt="" class="check-img">
<img src="./img/lb@2x.png" alt="" class="voice-img">
<div class="info">
<div class="text">
<p>村头大喇叭</p>
<span>刘家河居委会</span>
</div>
<div class="status">在线</div>
</div>
</div>
<div class="item">
<img src="./img/cir.png" alt="" class="check-img">
<img src="./img/lb@2x.png" alt="" class="voice-img">
<div class="info">
<div class="text">
<p>村头大喇叭</p>
<span>刘家河居委会</span>
</div>
<div class="status">在线</div>
</div>
</div>
</div>
<div class="btn">
<div>确定选择</div>
</div>
</div>
</template>
<script>
export default {
name: "selectEquipment",
}
</script>
<style lang="scss" scoped>
.selectEquipment {
padding-bottom: 128px;
.search {
width: 100%;
height: 104px;
background: #FFF;
margin-bottom: 4px;
padding: 20px 32px;
box-sizing: border-box;
.search-bg {
width: 686px;
height: 64px;
padding: 14px 0;
box-sizing: border-box;
background: #F5F5F5;
border-radius: 32px;
position: relative;
img {
width: 32px;
height: 32px;
position: absolute;
top: 16px;
left: 32px;
}
.search-input {
width: 590px;
height: 36px;
line-height: 36px;
font-size: 28px;
margin-left: 70px;
}
}
}
.record {
padding-left: 32px;
background-color: #fff;
.item {
width: 100%;
display: flex;
border-bottom: 1px solid #ddd;
.check-img {
width: 32px;
height: 32px;
margin: 32px 32px 0 0;
}
.voice-img {
width: 48px;
height: 48px;
margin: 28px 16px 0 0;
}
.info {
width: calc(100% - 148px);
padding: 18px 0;
line-height: 44px;
font-size: 34px;
display: flex;
justify-content: space-between;
.text {
p {
font-family: PingFang-SC-Medium, PingFang-SC;
font-weight: 500;
color: #333;
margin-bottom: 8px;
}
span {
font-size: 26px;
font-family: PingFang-SC-Medium, PingFang-SC;
font-weight: 500;
color: #999;
line-height: 36px;
}
}
.status {
font-size: 34px;
font-family: PingFang-SC-Medium, PingFang-SC;
font-weight: 500;
color: #4E8EEE;
line-height: 48px;
}
}
}
}
.btn {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 128px;
background: #FFF;
border-top: 1px solid #ddd;
padding: 24px 32px 24px 0;
box-sizing: border-box;
div {
width: 192px;
height: 80px;
line-height: 80px;
text-align: center;
background: #3975C6;
border-radius: 4px;
color: #fff;
font-size: 32px;
float: right;
}
}
}
</style>