35 lines
572 B
Vue
35 lines
572 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>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
setTimeout(function() {
|
|
uni.switchTab({
|
|
url:"/uni_modules/uni-cms-article/pages/list/list"
|
|
})
|
|
}, 1000);
|
|
},
|
|
methods: {
|
|
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.index {
|
|
width: 100%;
|
|
height: calc(100vh - 58px);
|
|
}
|
|
</style>
|