| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view class="page flex-col" :style="{height:height}">
- <view class="flex-col justify-center logoView">
- <view class="flex-row justify-center">
- <image class="logo" mode="widthFix" :src="'/static/logo.png'"></image>
- </view>
- </view>
- <view class="flex-col msg">
- <text>支持<text class="v6">IPv6</text>网络</text>
- <text>贵州娇骄儿科技有限公司</text>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- height:'',
- }
- },
- onLoad() {
- let sysInfo = uni.getSystemInfoSync()
- this.height = sysInfo.windowHeight + 'px'
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- @import './index.rpx.css';
- </style>
|