43 lines
624 B
Vue
43 lines
624 B
Vue
<template>
|
|
<view class="qualification-container">
|
|
<image
|
|
src="/static/images/yyzz.png"
|
|
mode="widthFix"
|
|
class="qualification-image"
|
|
></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
methods: {
|
|
jumpTo(url) {
|
|
uni.navigateTo({
|
|
url,
|
|
});
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.qualification-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 40rpx;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
min-height: 100vh;
|
|
box-sizing: border-box;
|
|
|
|
.qualification-image {
|
|
width: 100%;
|
|
max-width: 600rpx;
|
|
height: auto;
|
|
}
|
|
}
|
|
</style>
|