申请积分
This commit is contained in:
95
src/apps/AppPointsApply/AppPointsApply.vue
Normal file
95
src/apps/AppPointsApply/AppPointsApply.vue
Normal file
@@ -0,0 +1,95 @@
|
|||||||
|
<template>
|
||||||
|
<div class="AppPointsApply">
|
||||||
|
<div class="points_img">
|
||||||
|
<img src="./imgs/points.png" alt="">
|
||||||
|
</div>
|
||||||
|
<h3>申请记录</h3>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<div class="top">
|
||||||
|
<div class="top_title">完成群发任务完成群发任务完成群发任务完成群发任务完成群发任务完成群发任务</div>
|
||||||
|
<div><span class="top_status">审核通过</span></div>
|
||||||
|
</div>
|
||||||
|
<div class="bottom">
|
||||||
|
<div class="bottom_points">积分+5</div>
|
||||||
|
<div class="bottom_time">2020-12-11 10:10</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'AppPointsApply',
|
||||||
|
appName: '积分申请',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onShow() {
|
||||||
|
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.AppPointsApply {
|
||||||
|
padding: 32px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
.points_img {
|
||||||
|
width: 100%;
|
||||||
|
img {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
margin-top: 48px;
|
||||||
|
}
|
||||||
|
.card {
|
||||||
|
margin-top: 24px;
|
||||||
|
padding: 24px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #FFFFFF;
|
||||||
|
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.02);
|
||||||
|
border-radius: 16px;
|
||||||
|
.top {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
.top_title {
|
||||||
|
width: 450px;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
display: -webkit-box;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-line-clamp: 2;
|
||||||
|
color: #333333;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
.top_status {
|
||||||
|
padding: 6px 16px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background: #F5FCF5;
|
||||||
|
border: 1px solid #E2F6E1;
|
||||||
|
border-radius: 8px;
|
||||||
|
text-align: right;
|
||||||
|
width: calc(100% - 450px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.bottom {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-top: 24px;
|
||||||
|
.bottom_points {
|
||||||
|
color: #FF6900;
|
||||||
|
}
|
||||||
|
.bottom_time {
|
||||||
|
color: #999999;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
BIN
src/apps/AppPointsApply/imgs/points.png
Normal file
BIN
src/apps/AppPointsApply/imgs/points.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 548 KiB |
Reference in New Issue
Block a user