9 changed files with 840 additions and 573 deletions
@ -0,0 +1,97 @@ |
|||||
|
<template> |
||||
|
<view class="main"> |
||||
|
<!-- nav --> |
||||
|
<navigation>{{ i18n.AboutUs }}</navigation> |
||||
|
<view class="body"> |
||||
|
|
||||
|
|
||||
|
</view> |
||||
|
</view> |
||||
|
</template> |
||||
|
|
||||
|
<script> |
||||
|
import api from '@/utils/api' |
||||
|
export default { |
||||
|
name: "AboutUs", |
||||
|
data() { |
||||
|
return { |
||||
|
|
||||
|
}; |
||||
|
}, |
||||
|
computed: { |
||||
|
i18n() { |
||||
|
return this.$t("me"); |
||||
|
}, |
||||
|
}, |
||||
|
onLoad() { |
||||
|
this.about(); |
||||
|
}, |
||||
|
onShow() { }, |
||||
|
methods: { |
||||
|
// 关于我们 |
||||
|
about() { |
||||
|
api.aboutus().then(res => { |
||||
|
console.log(res) |
||||
|
}) |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
</script> |
||||
|
|
||||
|
<style lang="scss" scoped> |
||||
|
.main { |
||||
|
|
||||
|
.body { |
||||
|
overflow: hidden; |
||||
|
margin-top: 200rpx; |
||||
|
padding: 0 48rpx; |
||||
|
|
||||
|
.shareText { |
||||
|
margin-top: 104rpx; |
||||
|
font-size: 60rpx; |
||||
|
font-weight: 800; |
||||
|
text-align: center; |
||||
|
} |
||||
|
|
||||
|
.scanText { |
||||
|
font-size: 32rpx; |
||||
|
text-align: center; |
||||
|
color: #A2A0A8; |
||||
|
} |
||||
|
|
||||
|
.QRCode { |
||||
|
box-sizing: border-box; |
||||
|
margin: 66rpx auto; |
||||
|
width: 520rpx; |
||||
|
height: 520rpx; |
||||
|
background-image: url(../../static/me/bg_QR_code.png); |
||||
|
background-repeat: no-repeat; |
||||
|
background-size: 520rpx; |
||||
|
padding: 52rpx; |
||||
|
|
||||
|
.QRCodeImg { |
||||
|
margin-left: 8rpx; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.myIdText { |
||||
|
font-size: 48rpx; |
||||
|
font-weight: 800; |
||||
|
text-align: center; |
||||
|
} |
||||
|
|
||||
|
.button { |
||||
|
height: 112rpx; |
||||
|
margin: 72rpx 0; |
||||
|
border-radius: 32rpx; |
||||
|
color: #15141F !important; |
||||
|
font-weight: 700; |
||||
|
font-size: 32rpx; |
||||
|
} |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
||||
|
|
||||
|
} |
||||
|
</style> |
Loading…
Reference in new issue