index.vue 374 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view>
  3. <img class="img" src="@/assets/img/LaunchScreenBg.jpg" alt="">
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. };
  11. },onLoad() {
  12. setTimeout(()=>{
  13. uni.reLaunch({
  14. url:"/pages/business/main"
  15. })
  16. },500)
  17. }
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .img{
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>