1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
| <template>
| <view class="content">
| <image class="logo" src="/static/icon/logo.png" mode="widthFix"></image>
| <view class="title">
| <view>聚焦热点</view>
| <view>共享健康</view>
| </view>
| </view>
| </template>
|
| <script>
| export default {
| data() {
| return {
|
| };
| },
| onReady() {
| setTimeout(()=>{
| uni.switchTab({
| url:"/pages/index/index/index"
| })
| },3000)
| }
| }
| </script>
|
| <style lang="scss">
| .content{
| display: flex;
| flex-direction: column;
| align-items: center;
| padding-top: 320rpx;
| .logo{
| width: 200rpx;
| height: 200rpx;
| }
| .title{
| display: flex;
| align-items: center;
| justify-content: space-between;
| width: 340rpx;
| margin-top: 80rpx;
| view{
| font-size: 34rpx;
| font-weight: bold;
| }
| }
| }
| </style>
|
|