69 lines
1.1 KiB
Vue
69 lines
1.1 KiB
Vue
<template>
|
|
<div class="signIn">
|
|
<div class="card">
|
|
<div class="imgs">
|
|
<img src="https://cdn.cunwuyun.cn/fengdu/ic-renwuleixing.png" alt="">
|
|
</div>
|
|
<p class="status">今日已完成签到</p>
|
|
<h4>积分<span>+5</span></h4>
|
|
<div class="times">
|
|
<div>时间</div>
|
|
<div>2020-12-11 10:10</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'signIn',
|
|
appName: '签到',
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
},
|
|
onShow() {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.signIn {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
padding: 32px;
|
|
box-sizing: border-box;
|
|
.card {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #FFFFFF;
|
|
border-radius: 16px;
|
|
padding-top: 120px;
|
|
|
|
.imgs {
|
|
margin: 0 auto;
|
|
width: 238px;
|
|
height: 238px;
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
.status {
|
|
text-align: center;
|
|
}
|
|
h4 {
|
|
text-align: center;
|
|
}
|
|
.times {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
}
|
|
}
|
|
</style> |