26 lines
500 B
Vue
26 lines
500 B
Vue
<template>
|
|
<view class="legacy-community-page">
|
|
<text>正在前往社区…</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onLoad } from '@dcloudio/uni-app'
|
|
|
|
onLoad(() => {
|
|
uni.reLaunch({ url: '/pages/community/community' })
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.legacy-community-page {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #98a2b3;
|
|
font-size: 26rpx;
|
|
background: #f5f7fb;
|
|
}
|
|
</style>
|