Files
dvcp_v2_wechat_app/src/project/fengdu/AppMine/myHarvestQR.vue

116 lines
2.3 KiB
Vue
Raw Normal View History

2023-03-16 13:49:00 +08:00
<template>
<div class="AppHarvestQR">
2023-03-17 09:42:16 +08:00
<u-navbar :is-back="false" title="我的丰收码" title-color="#000" title-width="300" title-size="32"
:background="backgroundNavbar" :title-bold="true"></u-navbar>
<div class="card">
<div class="myself">
<img class="avatar" src="https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png" alt="">
<div class="info">
<div class="name">百里守约</div>
<div class="area">百地社区</div>
</div>
</div>
<div class="qr">
<img src="https://cdn.cunwuyun.cn/dvcp/myFamily/tx.png" alt="">
</div>
<div class="my-qr">我的丰收码</div>
<div class="pic">
2023-03-20 10:41:37 +08:00
<img src="https://cdn.cunwuyun.cn/fengdu/img-zhuangshi.png" alt="">
2023-03-17 09:42:16 +08:00
</div>
</div>
2023-03-16 13:49:00 +08:00
</div>
</template>
<script>
export default {
name: "AppHarvestQR",
appName: '丰收码',
2023-03-17 09:42:16 +08:00
customNavigation: true,
2023-03-16 13:49:00 +08:00
data() {
return {
2023-03-17 09:42:16 +08:00
backgroundNavbar: {
background: '#FFF'
}
2023-03-16 13:49:00 +08:00
}
},
methods: {
},
2023-03-17 09:42:16 +08:00
onShow() {
},
2023-03-16 13:49:00 +08:00
}
</script>
<style lang="scss" scoped>
.AppHarvestQR {
2023-03-17 09:42:16 +08:00
padding: 32px;
box-sizing: border-box;
.card {
width: 100%;
height: 100%;
box-sizing: border-box;
background: #FFF;
border-radius: 16px;
2023-03-16 13:49:00 +08:00
2023-03-17 09:42:16 +08:00
.myself {
padding: 72px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
.avatar {
width: 108px;
height: 108px;
border-radius: 16px;
}
.info {
width: calc(100% - 128px);
height: 100%;
.name {
color: #333333;
font-size: 34px;
font-weight: 500;
margin-top: 10px;
}
.area {
color: #999999;
font-size: 28px;
font-weight: 400;
margin-top: 10px;
}
}
}
.qr {
margin: 10% auto 24px;
width: 542px;
height: 542px;
border-radius: 32px;
border: 8px solid #f6f5f8;
padding: 36px;
box-sizing: border-box;
img {
width: 100%;
height: 100%;
}
}
.my-qr {
color: #999999;
font-size: 32px;
font-weight: 400;
text-align: center;
}
.pic {
margin-top: 10%;
width: 100%;
height: 234px;
img {
width: 100%;
height: 234px;
}
}
}
2023-03-16 13:49:00 +08:00
}
</style>