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>
| <div class="weather-main">
| <el-row :gutter="13">
| <el-col :span="4">
| <weather-list></weather-list>
| </el-col>
| <el-col :span="20">
| <el-row>
| <el-col :span="24">
| <weather-up-part></weather-up-part>
| </el-col>
| </el-row>
| <el-row>
| <el-col :span="24">
| <weather-down-part></weather-down-part>
| </el-col>
| </el-row>
| </el-col>
| </el-row>
| </div>
| </template>
|
| <script>
| import WeatherList from './weather-list'
| import WeatherUpPart from './weather-up-part'
| import WeatherDownPart from './weather-down-part'
| export default {
| data () {
| return {
| }
| },
| components: {
| WeatherList,
| WeatherUpPart,
| WeatherDownPart
| },
| activated () {},
| methods: {
|
| }
| }
| </script>
|
| <style>
| .weather-main {
| background-image: url(~@/assets/img/camera/bg-content.png);
| background-size: 100% 100%;
| background-repeat: no-repeat;
| }
| </style>
|
|