撤销发布

This commit is contained in:
shijingjing
2022-05-26 16:27:57 +08:00
parent cbd270a47e
commit a139f1a921
2 changed files with 109 additions and 57 deletions

View File

@@ -29,6 +29,11 @@
</div> </div>
</template> </template>
</div> </div>
<div class="btn">
<div>撤销发布</div>
</div>
</div> </div>
</template> </template>
@@ -71,81 +76,103 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.card { .wrapper {
padding: 32px 0 32px 32px; padding-bottom: 120px;
background-color: #ffffff; .card {
padding: 32px 0 32px 32px;
background-color: #ffffff;
.post-info { .post-info {
padding-right: 32px; padding-right: 32px;
.post-name { .post-name {
display: flex;
justify-content: space-between;
line-height: 56px;
& > span:first-child {
font-size: 40px;
font-weight: 600;
color: #333333;
}
& > span:last-child {
font-size: 36px;
font-weight: 600;
color: #FF3521;
flex-shrink: 0;
}
}
& > p {
font-size: 32px;
font-weight: 400;
color: #999999;
margin: 16px 0 32px;
}
}
.form {
height: 112px;
background: #FFFFFF;
border-bottom: 1px solid #DDDDDD;
display: flex; display: flex;
align-items: center;
justify-content: space-between; justify-content: space-between;
line-height: 56px; border-bottom: 1px solid #DDDDDD;
padding-right: 32px;
& > span:first-child { .label {
font-size: 40px; font-size: 32px;
font-weight: 600; font-weight: 400;
color: #999999;
}
.value {
font-size: 32px;
font-weight: 400;
color: #333333; color: #333333;
} }
& > span:last-child { .phone {
font-size: 36px; font-size: 28px;
font-weight: 600; color: #4181FF;
color: #FF3521;
flex-shrink: 0;
} }
} }
& > p { header {
font-size: 32px; font-size: 38px;
font-weight: 400; font-weight: 600;
color: #999999; color: #333333;
margin: 16px 0 32px; padding: 32px 0;
}
}
.form {
height: 112px;
background: #FFFFFF;
border-bottom: 1px solid #DDDDDD;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #DDDDDD;
padding-right: 32px;
.label {
font-size: 32px;
font-weight: 400;
color: #999999;
} }
.value { .post-require {
font-size: 32px; font-size: 32px;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
} line-height: 56px;
padding-right: 20px;
.phone {
font-size: 28px;
color: #4181FF;
} }
} }
header { .btn {
font-size: 38px; position: fixed;
font-weight: 600; bottom: 0;
color: #333333; left: 0;
padding: 32px 0; width: 100%;
} height: 120px;
background: #F3F6F9;
.post-require { padding: 16px 32px;
font-size: 32px; box-sizing: border-box;
font-weight: 400; div {
color: #333333; height: 88px;
line-height: 56px; line-height: 88px;
padding-right: 20px; text-align: center;
background: #FFFFFF;
border-radius: 16px;
border: 1px solid #FF4466;
}
} }
} }
</style> </style>

View File

@@ -26,6 +26,11 @@
<div class="post-require">{{ detail.remark }} <div class="post-require">{{ detail.remark }}
</div> </div>
</div> </div>
<div class="btn">
<div>撤销发布</div>
</div>
</div> </div>
</template> </template>
@@ -74,6 +79,7 @@ export default {
.padding { .padding {
min-height: 100%; min-height: 100%;
background-color: #ffffff; background-color: #ffffff;
padding-bottom: 120px;
.card { .card {
padding: 32px 0 32px 32px; padding: 32px 0 32px 32px;
@@ -152,5 +158,24 @@ export default {
padding-right: 20px; padding-right: 20px;
} }
} }
.btn {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 120px;
background: #F3F6F9;
padding: 16px 32px;
box-sizing: border-box;
div {
height: 88px;
line-height: 88px;
text-align: center;
background: #FFFFFF;
border-radius: 16px;
border: 1px solid #FF4466;
}
}
} }
</style> </style>