welcome.vue 699 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="page flex-col" :style="{height:height}">
  3. <view class="flex-col justify-center logoView">
  4. <view class="flex-row justify-center">
  5. <image class="logo" mode="widthFix" :src="'/static/logo.png'"></image>
  6. </view>
  7. </view>
  8. <view class="flex-col msg">
  9. <text>支持<text class="v6">IPv6</text>网络</text>
  10. <text>贵州娇骄儿科技有限公司</text>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data() {
  17. return {
  18. height:'',
  19. }
  20. },
  21. onLoad() {
  22. let sysInfo = uni.getSystemInfoSync()
  23. this.height = sysInfo.windowHeight + 'px'
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. @import './index.rpx.css';
  31. </style>