<!-- 证书页面 -->
|
|
<template>
|
|
<view class="certificate bx">
|
|
<navbar :leftClick="leftClick" :title="$t('page.certificate.title')"></navbar>
|
|
|
|
<!-- 证书图片 -->
|
|
<view class="certificate-image">
|
|
<image src="@/static/certificate/certificate.png" mode="aspectFit"></image>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import navbar from '@/components/base/m-navbar.vue'
|
|
|
|
export default {
|
|
components : { navbar },
|
|
data(){
|
|
return {
|
|
|
|
}
|
|
},
|
|
created(){
|
|
|
|
},
|
|
methods : {
|
|
leftClick() {
|
|
uni.navigateTo({
|
|
url: '/pages/home/home'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.certificate{
|
|
width: 750rpx;
|
|
min-height: 100vh;
|
|
background-color: black;
|
|
margin: 0 auto;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
|
|
.certificate-image{
|
|
width: 96%;
|
|
margin: 0rpx auto;
|
|
padding-top: 30rpx;
|
|
|
|
image{
|
|
width: 100%;
|
|
height: 50vh;
|
|
background-size: 100% !important;
|
|
}
|
|
}
|
|
|
|
}
|
|
</style>
|