30 lines
579 B
Vue
30 lines
579 B
Vue
<template>
|
|
<view class="content">
|
|
<image class="index" src="https://env-00jxt5y29hrd.normal.cloudstatic.cn/static/index.jpg?expire_at=1741101691&er_sign=3bcc9c0a7c1cf915beee4bd1f8cc2884" mode="scaleToFill"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { onLoad } from 'uni-app'
|
|
|
|
export default {
|
|
setup() {
|
|
onLoad(() => {
|
|
setTimeout(() => {
|
|
uni.switchTab({
|
|
url: "/uni_modules/uni-cms-article/pages/list/list"
|
|
})
|
|
}, 1000)
|
|
})
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.index {
|
|
width: 100%;
|
|
height: calc(100vh - 58px);
|
|
}
|
|
</style>
|