123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <template>
- <view class="content">
- <view class="one">
- <image :src="logoUrl" mode="aspectFit"></image>
- </view>
- <view class="two">
- <view class="two_1">
- 抵制不良游戏,拒绝盗版游戏。
- </view>
- <view class="two_1">
- 注意自我保护,谨防受骗上当。
- </view>
- <view class="two_1">
- 适度游戏宜脑,沉迷游戏伤身体。
- </view>
- <view class="two_1">
- 合理安排时间,享受健康时间。
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- logoUrl: 'https://broadcast.waityou24.cn/files/test/20230116145912.jpg',
- timer: null
- }
- },
- onLoad() {
- const that = this;
- that.search('/pagesHome/home/index');
- },
- methods: {
- async search(e) {
- const that = this;
- uni.redirectTo({
- url: e
- })
- // that.timer = setTimeout(() => {
- // uni.redirectTo({
- // url: e
- // })
- // clearTimeout(that.timer);
- // that.timer = null;
- // }, 2000)
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- .one {
- flex-grow: 1;
- text-align: center;
- image {
- width: 50vw;
- height: 50vw;
- border-radius: 90px;
- box-shadow: 0 0 5px #f1f1f1;
- margin: 30vw 0 0 0;
- }
- }
- .two {
- text-align: center;
- padding: 10px 0;
- .two_1 {
- padding: 0 0 10px 0;
- font-size: 14px;
- }
- }
- }
- </style>
|