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