video.vue 368 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="center"><image src="../../static/img/start.gif" mode=""></image></view>
  3. </template>
  4. <script>
  5. export default {
  6. onLoad() {
  7. setTimeout(() => {
  8. uni.switchTab({
  9. url: '/pages/index/index'
  10. });
  11. }, 2500);
  12. }
  13. };
  14. </script>
  15. <style lang="scss">
  16. .center {
  17. width: 100%;
  18. height: 100vh;
  19. image {
  20. width: 100%;
  21. height: 100%;
  22. }
  23. }
  24. </style>