Mr.Zhang
2023-08-21 5103535bcd7b012c0eda4cbb26968066b35704d1
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<template>
  <div class="content">
    <div class="header">
      <div class="header-item" style="font-size: 20px;">豆米科技</div>
      <div class="title">DM云工厂车间大屏</div>
      <div class="header-item">天气</div>
    </div>
 
    <div class="num-list">
 
    </div>
    <RouterView />
  </div>
</template>
 
 
<script setup>
 
import { reactive } from 'vue';
import { RouterView } from 'vue-router'
 
const layoutList = [
  { bgImg: requir('@/assets/img/bg_zhixingzhong@2x.png'), name: '执行中计划数(个)', logo: requir('@/assets/img') }
]
 
</script>
 
<style lang="scss" scoped>
.content {
  background-image: url('@/assets/img/bg@2x.png');
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  padding: 30px;
  box-sizing: border-box;
  .header {
    background-image: url('@/assets/img/bg_maintitle@2x.png');
    background-size: 100% 74px;
    width: 100%;
    height: 74px;
    display: flex;
    padding-top: 1px;
    justify-content: space-between;
    color: #fff;
    .header-item {
      width: 200px;
    }
    .title {
      margin-top: 15px;
      font-size: 25px;
      font-weight: 500;
      text-shadow: 0px 2px 17px rgba(0,0,0,0.32);
      line-height: 25px;
      text-align: center;
    }
  }
  .num-list {
    display: flex;
    justify-content: space-between;
  }
}
</style>