37 lines
585 B
Vue
37 lines
585 B
Vue
<template>
|
|
<view class="page">
|
|
<image src="/static/signIn/go.jpg" mode="aspectFit"></image>
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import {onShow,onLoad} from "@dcloudio/uni-app"
|
|
// const hk = uni.requireNativePlugin('hk-preview');
|
|
onShow(()=>{
|
|
// setTimeout(()=>{
|
|
// uni.reLaunch({
|
|
// url:"/pages/index"
|
|
// })
|
|
// },5000)
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
image{
|
|
position: absolute;
|
|
width: 700rpx;
|
|
}
|
|
.page{
|
|
background: #f1f5fe;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
</style> |