<template>
|
|
<uv-popup ref="popup" :round="30">
|
|
<view class="page">
|
|
<view class="logo">
|
|
<image src="/static/image/logo.jpg" mode="aspectFill"></image>
|
|
</view>
|
|
<view class="title">
|
|
|
|
</view>
|
|
</view>
|
|
</uv-popup>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {
|
|
open() {
|
|
this.$refs.popup.open('bottom')
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.page {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.logo {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
image{
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 15rpx;
|
|
}
|
|
}
|
|
.title{
|
|
|
|
}
|
|
}
|
|
</style>
|