特殊人群

This commit is contained in:
liuye
2022-08-08 14:37:30 +08:00
parent 3de32a3db6
commit 653cdee447
11 changed files with 478 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
<template>
<div class="AppSpecialGroups">
<div class="title">特殊人群总计 : 60</div>
<div class="item" @click="toList">
<div class="left">
<img src="./img/user-icon-mini.png" alt="">
<span>残疾人残疾人残疾人残疾人残疾人残疾人残疾人残疾人残疾人残疾人</span>
</div>
<div class="right">
12<img src="./img/down-icon-666.png" alt="">
</div>
</div>
<div class="item">
<div class="left">
<img src="./img/user-icon-mini.png" alt="">
<span>残疾人</span>
</div>
<div class="right">
12<img src="./img/down-icon-666.png" alt="">
</div>
</div>
</div>
</template>
<script>
export default {
name: "AppSpecialGroups",
appName: "特殊人群",
data() {
return {
}
},
methods: {
toList() {
uni.navigateTo({ url: './List'})
}
},
onShow() {
document.title = "特殊人群"
},
}
</script>
<style lang="scss" scoped>
.AppSpecialGroups {
.title {
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #666666;
line-height: 28px;
padding: 40px 0 20px 30px;
}
.item {
display: flex;
padding: 30px;
background-color: #fff;
border-radius: 8px;
margin: 0 0 30px 30px;
width: 690px;
box-sizing: border-box;
.left {
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #666;
line-height: 48px;
width: calc(100% - 200px);
img {
width: 44px;
height: 44px;
margin-right: 16px;
vertical-align: middle;
}
span {
display: inline-block;
width: calc(100% - 60px);
word-break: break-all;
vertical-align: text-top;
}
}
.right {
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #000;
line-height: 48px;
width: 200px;
text-align: right;
img {
width: 32px;
height: 32px;
margin: -4px 0 0 16px;
vertical-align: middle;
transform: rotate(270deg);
}
}
}
}
</style>