瑶都万能墙
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
649 B

<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>