ZhangXianQiang
2024-03-05 5300255dd40ac2ed67676da5568f0e4fd25a7078
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<script setup lang="ts">
import { currentGET } from "@/api";
import SeamlessScroll from "@/components/seamless-scroll";
import { computed, onMounted, reactive } from "vue";
import { useSettingStore } from "@/stores";
import { storeToRefs } from "pinia";
import EmptyCom from "@/components/empty-com"
const options = reactive([
  {
    title: "青城山风景区",
    num1: 56,
    num2: 54,
    num3: 47,
    num4: 35,
    num5: 48,
    num6: 21,
    num7: 87,
  },
  {
    title: "都江堰风景区",
    num1: 356,
    num2: 354,
    num3: 347,
    num4: 335,
    num5: 348,
    num6: 321,
    num7: 387,
  },
  {
    title: "虹口旅游景区",
    num1: 256,
    num2: 254,
    num3: 247,
    num4: 235,
    num5: 248,
    num6: 221,
    num7: 287,
  },
  {
    title: "灌县古城",
    num1: 156,
    num2: 154,
    num3: 147,
    num4: 135,
    num5: 148,
    num6: 121,
    num7: 187,
  }
])
</script>
 
<template>
  <div class="left_boottom_wrap beautify-scroll-def">
    <div class="left-bottom-fj" v-for="(item, index) in options" :key="index">
      <div>
        <div class="left-bottom-fj-title">{{ item.title }}</div>
        <div class="left-bottom-fj-info">
          <p class="left-fj-p">车流量:<span class="left-p">{{ item.num1 }}</span><span class="left-fj-sp">辆</span></p>
          <p class="left-fj-p">游客预约:<span class="left-p">{{ item.num2 }}</span><span class="left-fj-sp">人</span></p>
          <p class="left-fj-p">在岗警力:<span class="left-p">{{ item.num3 }}</span><span class="left-fj-sp">人</span></p>
          <p class="left-fj-p">备用警力:<span class="left-p">{{ item.num4 }}</span><span class="left-fj-sp">辆</span></p>
          <p class="left-fj-p">人流量:<span class="left-p">{{ item.num5 }}</span><span class="left-fj-sp">人</span></p>
          <p class="left-fj-p">入园人数:<span class="left-p">{{ item.num6 }}</span><span class="left-fj-sp">人</span></p>
          <p class="left-fj-p">在岗警车:<span class="left-p">{{ item.num7 }}</span><span class="left-fj-sp">辆</span></p>
        </div>
      </div>
 
    </div>
  </div>
</template>
 
<style scoped lang="scss">
.left_boottom_wrap {
  margin-left: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
 
  .left-bottom-fj {
    margin-bottom: 20px;
    border: 1px solid #29466A;
    background-color: rgba(17, 34, 58, 0.6);
 
    .left-bottom-fj-info {
      padding: 10px;
 
      .left-fj-p {
        width: 23%;
        margin-top: 3px;
        margin-right: 10px;
        color: #4481DD;
        font-family: 'PingFang SC';
 
        .left-fj-sp {
          color: #fff;
        }
      }
 
      display: flex;
      flex-wrap: wrap;
 
      .left-p {
        color: #FAE67D;
      }
    }
 
    .left-bottom-fj-title {
      font-family: 'PingFang SC';
      font-weight: 400;
      font-size: 20px;
      color: #44DBDD;
      line-height: 40px;
      height: 80px;
      text-align: center;
      background-image: url("@/assets/img/fjbg.png");
      background-position: center;
      /* 水平和垂直都居中对齐 */
      background-repeat: no-repeat;
      /* 不重复平铺背景图像 */
      background-size: cover;
      /* 自动调整大小以完全覆盖元素 */
    }
  }
}
 
.doudong {
  overflow: hidden;
  backface-visibility: hidden;
}
 
.overflow-y-auto {
  overflow-y: auto;
}
 
.left_boottom {
  width: 100%;
  height: 100%;
 
  .left_boottom_item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 14px;
    margin: 10px 0;
 
    .orderNum {
      margin: 0 16px 0 -20px;
    }
 
    .info {
      margin-right: 10px;
      display: flex;
      align-items: center;
      color: #fff;
 
      .labels {
        flex-shrink: 0;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
      }
 
      .zhuyao {
        color: $primary-color;
        font-size: 15px;
      }
 
      .ciyao {
        color: rgba(255, 255, 255, 0.8);
      }
 
      .warning {
        color: #e6a23c;
        font-size: 15px;
      }
    }
 
    .inner_right {
      position: relative;
      height: 100%;
      width: 380px;
      flex-shrink: 0;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
 
      .dibu {
        position: absolute;
        height: 2px;
        width: 104%;
        background-image: url("@/assets/img/zuo_xuxian.png");
        bottom: -10px;
        left: -2%;
        background-size: cover;
      }
 
      .addresswrap {
        width: 100%;
        display: flex;
        margin-top: 8px;
      }
    }
 
    .wangguan {
      color: #1890ff;
      font-weight: 900;
      font-size: 15px;
      width: 80px;
      flex-shrink: 0;
    }
 
    .time {
      font-size: 12px;
      // color: rgba(211, 210, 210,.8);
      color: #fff;
    }
 
    .address {
      font-size: 12px;
      cursor: pointer;
      // @include text-overflow(1);
    }
 
    .types {
      width: 30px;
      flex-shrink: 0;
    }
 
    .typeRed {
      color: #fc1a1a;
    }
 
    .typeGreen {
      color: #29fc29;
    }
  }
}
 
.left-p {}
</style>