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.
28 lines
355 B
28 lines
355 B
<template>
|
|
<view class="app">
|
|
<view class="center">
|
|
<text>功能暂未开放</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.center{
|
|
padding-top: 30vh;
|
|
font-size: 32rpx;
|
|
color: #333;
|
|
}
|
|
</style>
|