帮扶成效

This commit is contained in:
shijingjing
2022-07-21 10:19:50 +08:00
parent 9cc9d6ed30
commit e0d3cf92ca
4 changed files with 260 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<template>
<div class="AppHelpEffect">
<AiFixedBtn>
<div class="addBtn iconfont iconfont-iconfangda" @tap="toAddLog(0)"></div>
</AiFixedBtn>
</div>
</template>
<script>
export default {
name: "AppHelpEffect",
appName: '帮扶成效',
data() {
return {}
},
methods: {},
onShow() {
document.title = '帮扶成效'
}
}
</script>
<style lang="scss" scoped>
.AppHelpEffect {
.addBtn {
width: 96px;
height: 96px;
flex-shrink: 0;
background: $uni-color-primary;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
font-size: 48px;
color: #fff;
border-radius: 50%;
justify-content: center;
align-items: center;
display: flex;
}
}
</style>