12345678910111213141516171819202122232425262728293031 |
- <template>
- <view>
- <img class="img" src="@/assets/img/LaunchScreenBg.jpg" alt="">
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- },onLoad() {
- setTimeout(()=>{
- uni.reLaunch({
- url:"/pages/business/main"
- })
- },500)
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .img{
- width: 100%;
- height: 100%;
- }
-
- </style>
|