Files
dvcp_v2_wxcp_app/src/apps/AppBroadcast/selectEquipment.vue

164 lines
3.4 KiB
Vue
Raw Normal View History

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