This commit is contained in:
shijingjing
2022-05-13 17:25:18 +08:00
parent beb63fec25
commit 7f4bad3131

View File

@@ -6,6 +6,8 @@
<span @click="$linkTo('./progress')">我的申请</span> <span @click="$linkTo('./progress')">我的申请</span>
</div> </div>
<div class="content">
<div class="type"> <div class="type">
<img src="./components/tab.png" alt=""> <img src="./components/tab.png" alt="">
<div> <div>
@@ -30,6 +32,7 @@
<div class="btn" @click="$linkTo('./add')">我要发布</div> <div class="btn" @click="$linkTo('./add')">我要发布</div>
</div> </div>
</div>
</template> </template>
<script> <script>
@@ -57,7 +60,8 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.AppHelpDeclaration { .AppHelpDeclaration {
background: #006FDE; background: #006FDE;
padding: 0 32px 32px 30px; padding: 0 0 32px 0;
box-sizing: border-box;
.title { .title {
position: relative; position: relative;
@@ -67,7 +71,7 @@ export default {
background-size: cover; background-size: cover;
span { span {
position: absolute; position: absolute;
right: 0; right: 32px;
top: 60px; top: 60px;
padding: 10px 20px; padding: 10px 20px;
box-sizing: border-box; box-sizing: border-box;
@@ -81,7 +85,10 @@ export default {
.type { .type {
margin-top: 62px; margin-top: 62px;
} }
.content {
padding: 0 32px;
box-sizing: border-box;
background: #006FDE;
.type, .type,
.standard, .standard,
.case { .case {
@@ -110,5 +117,6 @@ export default {
color: #BB5634; color: #BB5634;
font-size: 34px; font-size: 34px;
} }
}
} }
</style> </style>