Blame view

antis-ncc-admin/src/views/lqTkjlb/Report.vue 16.7 KB
96009bc9   hexiaodong   hxd
1
  <template>
4f068096   李宇   最新
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
    <div class="app-container">
      <!-- 页面标题 -->
      <div class="page-header">
        <h2>拓客活动报表</h2>
      </div>
  
      <!-- 筛选条件 -->
      <div class="filter-container">
        <el-form :inline="true" :model="queryParams" class="demo-form-inline">
          <el-form-item label="活动ID">
            <el-input
              v-model="queryParams.eventId"
              placeholder="请输入活动ID"
              style="width: 200px"
              clearable
            />
          </el-form-item>
          <el-form-item>
            <el-button type="primary" @click="handleQuery">查询</el-button>
            <el-button @click="resetQuery">重置</el-button>
          </el-form-item>
        </el-form>
      </div>
  
      <!-- 团队数据报表 -->
      <div class="report-section">
        <div class="section-header">
          <h3>团队数据报表</h3>
        </div>
        <div v-loading="teamLoading" class="report-content">
          <div v-if="teamData.length === 0" class="no-data">
            暂无数据
2d733a6a   李宇   最新
34
          </div>
4f068096   李宇   最新
35
36
37
38
          <div v-else class="waterfall-container">
            <div v-for="store in teamData" :key="store.StoreId" class="store-card-waterfall">
              <div class="store-header">
                <h4>{{ store.StoreName }}</h4>
2d733a6a   李宇   最新
39
              </div>
4f068096   李宇   最新
40
41
42
43
              <div class="teams-container">
                <div v-for="team in store.TeamList" :key="team.TeamName" class="team-card">
                  <div class="team-header">
                    <span class="team-name">{{ team.TeamName }}</span>
2d733a6a   李宇   最新
44
                  </div>
4f068096   李宇   最新
45
46
47
48
                  <div class="team-members">
                    <div v-for="member in team.TeamUserInfo" :key="member.ExpansionUserId" class="member-row">
                      <div class="member-info">
                        <span class="member-name">{{ member.ExpansionUserName }}</span>
96009bc9   hexiaodong   hxd
49
                      </div>
4f068096   李宇   最新
50
51
52
53
54
55
                      <div class="member-stats">
                        <span class="target">目标: {{ member.EventTarget }}</span>
                        <span class="count">完成: {{ member.ExpansionCount }}</span>
                        <span class="rate" :class="getCompletionRateClass(member.ExpansionCount, member.EventTarget)">
                          完成率: {{ getCompletionRate(member.ExpansionCount, member.EventTarget) }}%
                        </span>
96009bc9   hexiaodong   hxd
56
                      </div>
2d733a6a   李宇   最新
57
58
59
                    </div>
                  </div>
                </div>
96009bc9   hexiaodong   hxd
60
              </div>
2d733a6a   李宇   最新
61
62
            </div>
          </div>
96009bc9   hexiaodong   hxd
63
64
        </div>
      </div>
4f068096   李宇   最新
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
  
      <!-- 门店数据报表 -->
      <div class="report-section">
        <div class="section-header">
          <h3>门店数据报表</h3>
        </div>
        <div v-loading="storeLoading" class="report-content">
          <div v-if="storeData.length === 0" class="no-data">
            暂无数据
          </div>
          <div v-else class="store-table">
            <el-table :data="storeData" stripe style="width: 100%">
              <el-table-column prop="StoreName" label="门店名称" width="150" />
              <el-table-column prop="TotalTarget" label="目标数据" width="80" align="center" />
              <el-table-column prop="CompletedTarget" label="完成数量" width="80" align="center" />
              <el-table-column label="完成率" width="150" align="center">
                <template slot-scope="scope">
                  <div class="progress-container">
                    <div class="progress-bar">
                      <div 
                        class="progress-fill" 
                        :style="{ width: scope.row.CompletionRate + '%' }"
                      ></div>
                    </div>
                    <span class="progress-text">{{ scope.row.CompletionRate }}%</span>
                  </div>
                </template>
              </el-table-column>
              <el-table-column prop="Ranking" label="排名" width="60" align="center">
                <template slot-scope="scope">
                  <span class="ranking" :class="getRankingClass(scope.row.Ranking)">
                    {{ scope.row.Ranking }}
                  </span>
                </template>
              </el-table-column>
            </el-table>
          </div>
        </div>
      </div>
  
      <!-- 个人数据报表 -->
      <div class="report-section">
        <div class="section-header">
          <h3>个人数据报表</h3>
        </div>
        <div v-loading="personLoading" class="report-content">
          <div v-if="personData.length === 0" class="no-data">
            暂无数据
2d733a6a   李宇   最新
113
          </div>
4f068096   李宇   最新
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
          <div v-else class="person-table">
            <el-table :data="personData" stripe style="width: 100%">
              <el-table-column prop="UserName" label="姓名" width="80" />
              <el-table-column prop="StoreName" label="门店" width="120" />
              <el-table-column prop="TeamName" label="团队" width="80" />
              <el-table-column prop="PersonalTarget" label="个人目标" width="70" align="center" />
              <el-table-column prop="CompletedTarget" label="完成数量" width="70" align="center" />
              <el-table-column label="完成率" width="120" align="center">
                <template slot-scope="scope">
                  <div class="progress-container">
                    <div class="progress-bar">
                      <div 
                        class="progress-fill" 
                        :style="{ width: Math.min(scope.row.CompletionRate, 100) + '%' }"
                      ></div>
                    </div>
                    <span class="progress-text">{{ scope.row.CompletionRate }}%</span>
                  </div>
                </template>
              </el-table-column>
              <el-table-column prop="Ranking" label="排名" width="60" align="center">
                <template slot-scope="scope">
                  <span class="ranking" :class="getRankingClass(scope.row.Ranking)">
                    {{ scope.row.Ranking }}
                  </span>
                </template>
              </el-table-column>
              <el-table-column label="最后拓客时间" width="140" align="center">
                <template slot-scope="scope">
                  {{ formatTime(scope.row.LastExpansionTime) }}
                </template>
              </el-table-column>
            </el-table>
2d733a6a   李宇   最新
147
148
          </div>
        </div>
4f068096   李宇   最新
149
      </div>
96009bc9   hexiaodong   hxd
150
151
152
153
    </div>
  </template>
  
  <script>
4f068096   李宇   最新
154
  import { getTeamData, getStoreData, getPersonData } from '@/api/lqTkjlb'
96009bc9   hexiaodong   hxd
155
156
  
  export default {
4f068096   李宇   最新
157
    name: 'TkjlbReport',
96009bc9   hexiaodong   hxd
158
159
    data() {
      return {
4f068096   李宇   最新
160
161
162
163
164
165
166
167
168
        queryParams: {
          eventId: '740360861859710213'
        },
        teamData: [],
        storeData: [],
        personData: [],
        teamLoading: false,
        storeLoading: false,
        personLoading: false
96009bc9   hexiaodong   hxd
169
170
      }
    },
96009bc9   hexiaodong   hxd
171
    created() {
4f068096   李宇   最新
172
173
174
      this.handleQuery()
      // 添加测试数据,确保页面正常显示
      this.addTestData()
96009bc9   hexiaodong   hxd
175
    },
96009bc9   hexiaodong   hxd
176
    methods: {
4f068096   李宇   最新
177
178
179
180
181
      // 查询数据
      handleQuery() {
        if (!this.queryParams.eventId) {
          this.$message.warning('请输入活动ID')
          return
2d733a6a   李宇   最新
182
        }
4f068096   李宇   最新
183
184
185
186
187
188
189
190
191
192
193
        this.getTeamData()
        this.getStoreData()
        this.getPersonData()
      },
      
      // 重置查询
      resetQuery() {
        this.queryParams.eventId = ''
        this.teamData = []
        this.storeData = []
        this.personData = []
2d733a6a   李宇   最新
194
195
      },
  
4f068096   李宇   最新
196
197
198
      // 获取团队数据
      async getTeamData() {
        this.teamLoading = true
96009bc9   hexiaodong   hxd
199
        try {
4f068096   李宇   最新
200
201
202
203
204
          console.log('正在获取团队数据...')
          const response = await getTeamData(this.queryParams.eventId)
          console.log('团队数据响应:', response)
          this.teamData = response.data || []
          console.log('团队数据:', this.teamData)
96009bc9   hexiaodong   hxd
205
        } catch (error) {
4f068096   李宇   最新
206
207
208
209
210
          console.error('获取团队数据失败:', error)
          this.$message.error('获取团队数据失败: ' + error.message)
          this.teamData = []
        } finally {
          this.teamLoading = false
2d733a6a   李宇   最新
211
212
213
        }
      },
  
4f068096   李宇   最新
214
215
216
      // 获取门店数据
      async getStoreData() {
        this.storeLoading = true
2d733a6a   李宇   最新
217
        try {
4f068096   李宇   最新
218
219
220
221
222
          console.log('正在获取门店数据...')
          const response = await getStoreData(this.queryParams.eventId)
          console.log('门店数据响应:', response)
          this.storeData = response.data || []
          console.log('门店数据:', this.storeData)
2d733a6a   李宇   最新
223
        } catch (error) {
4f068096   李宇   最新
224
225
226
          console.error('获取门店数据失败:', error)
          this.$message.error('获取门店数据失败: ' + error.message)
          this.storeData = []
96009bc9   hexiaodong   hxd
227
        } finally {
4f068096   李宇   最新
228
          this.storeLoading = false
96009bc9   hexiaodong   hxd
229
230
231
        }
      },
  
4f068096   李宇   最新
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
      // 获取个人数据
      async getPersonData() {
        this.personLoading = true
        try {
          console.log('正在获取个人数据...')
          const response = await getPersonData(this.queryParams.eventId)
          console.log('个人数据响应:', response)
          this.personData = response.data || []
          console.log('个人数据:', this.personData)
        } catch (error) {
          console.error('获取个人数据失败:', error)
          this.$message.error('获取个人数据失败: ' + error.message)
          this.personData = []
        } finally {
          this.personLoading = false
2d733a6a   李宇   最新
247
        }
96009bc9   hexiaodong   hxd
248
249
      },
  
2d733a6a   李宇   最新
250
      // 计算完成率
4f068096   李宇   最新
251
252
253
      getCompletionRate(completed, target) {
        if (target === 0) return 0
        return Math.round((completed / target) * 100)
96009bc9   hexiaodong   hxd
254
255
      },
  
2d733a6a   李宇   最新
256
      // 获取完成率样式类
4f068096   李宇   最新
257
258
259
260
261
262
      getCompletionRateClass(completed, target) {
        const rate = this.getCompletionRate(completed, target)
        if (rate >= 100) return 'rate-excellent'
        if (rate >= 80) return 'rate-good'
        if (rate >= 60) return 'rate-normal'
        return 'rate-poor'
96009bc9   hexiaodong   hxd
263
264
      },
  
4f068096   李宇   最新
265
266
267
268
269
      // 获取排名样式类
      getRankingClass(ranking) {
        if (ranking <= 3) return 'ranking-top'
        if (ranking <= 6) return 'ranking-good'
        return 'ranking-normal'
96009bc9   hexiaodong   hxd
270
271
      },
  
4f068096   李宇   最新
272
273
274
275
276
      // 格式化时间
      formatTime(timestamp) {
        if (!timestamp) return '无'
        const date = new Date(timestamp)
        return date.toLocaleString('zh-CN')
96009bc9   hexiaodong   hxd
277
278
      },
  
4f068096   李宇   最新
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
      // 添加测试数据
      addTestData() {
        // 如果API调用失败,添加一些测试数据确保页面正常显示
        setTimeout(() => {
          if (this.teamData.length === 0) {
            this.teamData = [
              {
                "StoreId": "1649328471923847186",
                "StoreName": "绿纤骑士郡店",
                "TeamList": [
                  {
                    "TeamName": "咕噜队",
                    "TeamUserInfo": [
                      {
                        "ExpansionUserId": "17882512738",
                        "ExpansionUserName": "梁诗雨",
                        "ExpansionCount": 6,
                        "EventTarget": 100
                      },
                      {
                        "ExpansionUserId": "admin",
                        "ExpansionUserName": "管理员",
                        "ExpansionCount": 0,
                        "EventTarget": 6
                      }
                    ]
                  }
                ]
              }
            ]
          }
2d733a6a   李宇   最新
310
          
4f068096   李宇   最新
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
          if (this.storeData.length === 0) {
            this.storeData = [
              {
                "StoreId": "1649328471923847190",
                "StoreName": "绿纤亚洲湾店",
                "TotalTarget": 6,
                "CompletedTarget": 6,
                "CompletionRate": 100,
                "Ranking": 1
              },
              {
                "StoreId": "1649328471923847169",
                "StoreName": "绿纤紫荆店",
                "TotalTarget": 3,
                "CompletedTarget": 3,
                "CompletionRate": 100,
                "Ranking": 2
              }
            ]
          }
2d733a6a   李宇   最新
331
          
4f068096   李宇   最新
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
          if (this.personData.length === 0) {
            this.personData = [
              {
                "UserId": "19982024821",
                "UserName": "谢珂欣",
                "StoreId": "1649328471923847190",
                "StoreName": "绿纤亚洲湾店",
                "TeamName": "9444",
                "PersonalTarget": 1,
                "CompletedTarget": 6,
                "CompletionRate": 600,
                "Ranking": 1,
                "LastExpansionTime": 1758699730000
              },
              {
                "UserId": "17780181798",
                "UserName": "王任燕",
                "StoreId": "1649328471923847175",
                "StoreName": "绿纤468店",
                "TeamName": "222",
                "PersonalTarget": 1,
                "CompletedTarget": 3,
                "CompletionRate": 300,
                "Ranking": 2,
                "LastExpansionTime": 1758699412000
              }
            ]
2d733a6a   李宇   最新
359
          }
4f068096   李宇   最新
360
361
362
363
364
        }, 2000) // 2秒后添加测试数据
      }
    }
  }
  </script>
2d733a6a   李宇   最新
365
  
4f068096   李宇   最新
366
367
368
369
370
371
372
373
  <style lang="scss" scoped>
  .app-container {
    padding: 12px;
    background-color: #f5f5f5;
    min-height: 100vh;
    overflow-y: scroll;
    box-sizing: border-box;
  }
2d733a6a   李宇   最新
374
  
4f068096   李宇   最新
375
376
377
378
379
380
381
382
383
384
  .page-header {
    margin-bottom: 12px;
    
    h2 {
      margin: 0;
      color: #303133;
      font-size: 20px;
      font-weight: 500;
    }
  }
2d733a6a   李宇   最新
385
  
4f068096   李宇   最新
386
387
388
389
390
391
392
  .filter-container {
    background: white;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
2d733a6a   李宇   最新
393
  
4f068096   李宇   最新
394
395
396
397
398
399
400
  .report-section {
    background: white;
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
2d733a6a   李宇   最新
401
  
4f068096   李宇   最新
402
403
404
405
406
407
408
409
410
411
412
  .section-header {
    background: #409EFF;
    color: white;
    padding: 10px 16px;
    
    h3 {
      margin: 0;
      font-size: 16px;
      font-weight: 500;
    }
  }
2d733a6a   李宇   最新
413
  
4f068096   李宇   最新
414
415
416
  .report-content {
    padding: 12px;
  }
2d733a6a   李宇   最新
417
  
4f068096   李宇   最新
418
419
420
421
422
423
  .no-data {
    text-align: center;
    color: #909399;
    padding: 20px 0;
    font-size: 14px;
  }
96009bc9   hexiaodong   hxd
424
  
4f068096   李宇   最新
425
426
427
428
429
430
431
  // 瀑布流容器
  .waterfall-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
  }
96009bc9   hexiaodong   hxd
432
  
4f068096   李宇   最新
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
  // 团队数据样式 - 瀑布流版本
  .store-card-waterfall {
    width: calc(25% - 9px); // 25%宽度减去gap的一半
    margin-bottom: 12px;
    border: 1px solid #e4e7ed;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    
    // 响应式设计
    @media (max-width: 1200px) {
      width: calc(33.333% - 8px); // 3列
    }
    
    @media (max-width: 900px) {
      width: calc(50% - 6px); // 2列
    }
    
    @media (max-width: 600px) {
      width: 100%; // 1列
    }
  }
96009bc9   hexiaodong   hxd
456
  
4f068096   李宇   最新
457
458
459
460
461
462
463
464
465
466
467
  // 原有的store-card样式保留,用于其他报表
  .store-card {
    margin-bottom: 12px;
    border: 1px solid #e4e7ed;
    border-radius: 6px;
    overflow: hidden;
    
    &:last-child {
      margin-bottom: 0;
    }
  }
96009bc9   hexiaodong   hxd
468
  
4f068096   李宇   最新
469
470
471
472
473
474
475
476
477
478
  .store-header {
    background: #f8f9fa;
    padding: 8px 12px;
    border-bottom: 1px solid #e4e7ed;
    
    h4 {
      margin: 0;
      color: #303133;
      font-size: 14px;
      font-weight: 500;
96009bc9   hexiaodong   hxd
479
480
    }
  }
96009bc9   hexiaodong   hxd
481
  
4f068096   李宇   最新
482
483
484
485
486
487
488
489
  .teams-container {
    padding: 8px;
  }
  
  .team-card {
    margin-bottom: 8px;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
2d733a6a   李宇   最新
490
    overflow: hidden;
4f068096   李宇   最新
491
492
493
494
    
    &:last-child {
      margin-bottom: 0;
    }
96009bc9   hexiaodong   hxd
495
496
  }
  
4f068096   李宇   最新
497
498
499
500
501
502
503
504
505
506
  .team-header {
    background: #f0f2f5;
    padding: 6px 8px;
    border-bottom: 1px solid #e4e7ed;
    
    .team-name {
      font-weight: 500;
      color: #606266;
      font-size: 13px;
    }
96009bc9   hexiaodong   hxd
507
508
  }
  
4f068096   李宇   最新
509
510
  .team-members {
    padding: 6px;
96009bc9   hexiaodong   hxd
511
  }
2d733a6a   李宇   最新
512
  
4f068096   李宇   最新
513
514
515
516
517
518
  .member-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid #f0f2f5;
2d733a6a   李宇   最新
519
    
4f068096   李宇   最新
520
521
    &:last-child {
      border-bottom: none;
2d733a6a   李宇   最新
522
    }
4f068096   李宇   最新
523
524
525
526
527
  }
  
  .member-info {
    flex: 1;
    min-width: 0; // 防止内容溢出
2d733a6a   李宇   最新
528
    
4f068096   李宇   最新
529
530
531
532
533
534
535
    .member-name {
      font-weight: 500;
      color: #303133;
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
2d733a6a   李宇   最新
536
    }
96009bc9   hexiaodong   hxd
537
538
  }
  
4f068096   李宇   最新
539
540
541
542
  .member-stats {
    display: flex;
    gap: 8px;
    flex-shrink: 0; // 防止统计信息被压缩
2d733a6a   李宇   最新
543
    
4f068096   李宇   最新
544
545
546
    span {
      font-size: 10px;
      white-space: nowrap;
96009bc9   hexiaodong   hxd
547
      
4f068096   李宇   最新
548
549
      &.target {
        color: #606266;
2d733a6a   李宇   最新
550
551
      }
      
4f068096   李宇   最新
552
553
554
      &.count {
        color: #409EFF;
        font-weight: 500;
96009bc9   hexiaodong   hxd
555
556
      }
      
4f068096   李宇   最新
557
558
      &.rate {
        font-weight: 500;
2d733a6a   李宇   最新
559
        
4f068096   李宇   最新
560
561
        &.rate-excellent {
          color: #67C23A;
96009bc9   hexiaodong   hxd
562
563
        }
        
4f068096   李宇   最新
564
565
        &.rate-good {
          color: #409EFF;
2d733a6a   李宇   最新
566
567
        }
        
4f068096   李宇   最新
568
569
        &.rate-normal {
          color: #E6A23C;
96009bc9   hexiaodong   hxd
570
        }
2d733a6a   李宇   最新
571
        
4f068096   李宇   最新
572
573
        &.rate-poor {
          color: #F56C6C;
2d733a6a   李宇   最新
574
575
        }
      }
96009bc9   hexiaodong   hxd
576
577
578
    }
  }
  
4f068096   李宇   最新
579
580
581
  // 表格样式
  .store-table{
    width: 100%;
96009bc9   hexiaodong   hxd
582
  }
4f068096   李宇   最新
583
584
585
586
587
  .store-table, .person-table {
    .el-table {
      border-radius: 4px;
      overflow: hidden;
      font-size: 12px;
96009bc9   hexiaodong   hxd
588
589
    }
    
4f068096   李宇   最新
590
591
592
    .el-table th {
      padding: 8px 0;
      font-size: 12px;
96009bc9   hexiaodong   hxd
593
594
    }
    
4f068096   李宇   最新
595
596
597
    .el-table td {
      padding: 6px 0;
      font-size: 12px;
96009bc9   hexiaodong   hxd
598
599
600
    }
  }
  
4f068096   李宇   最新
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
  .progress-container {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .progress-bar {
    flex: 1;
    height: 6px;
    background: #f0f2f5;
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: #409EFF;
    border-radius: 3px;
    transition: width 0.3s ease;
96009bc9   hexiaodong   hxd
620
621
  }
  
4f068096   李宇   最新
622
623
624
625
626
  .progress-text {
    font-size: 11px;
    color: #606266;
    min-width: 35px;
    text-align: right;
96009bc9   hexiaodong   hxd
627
628
  }
  
4f068096   李宇   最新
629
630
631
632
633
634
635
636
637
638
639
640
641
642
  .ranking {
    font-weight: 500;
    font-size: 12px;
    
    &.ranking-top {
      color: #F56C6C;
    }
    
    &.ranking-good {
      color: #E6A23C;
    }
    
    &.ranking-normal {
      color: #606266;
96009bc9   hexiaodong   hxd
643
644
645
    }
  }
  
4f068096   李宇   最新
646
647
648
649
650
  // 响应式设计
  @media (max-width: 768px) {
    .app-container {
      padding: 8px;
    }
2d733a6a   李宇   最新
651
    
4f068096   李宇   最新
652
653
    .waterfall-container {
      gap: 8px;
96009bc9   hexiaodong   hxd
654
    }
2d733a6a   李宇   最新
655
    
4f068096   李宇   最新
656
657
658
659
660
661
    .store-card-waterfall {
      width: 100% !important; // 移动端强制单列
    }
    
    .member-stats {
      gap: 4px;
96009bc9   hexiaodong   hxd
662
      
4f068096   李宇   最新
663
664
      span {
        font-size: 9px;
96009bc9   hexiaodong   hxd
665
666
      }
    }
2d733a6a   李宇   最新
667
    
4f068096   李宇   最新
668
669
670
671
    .progress-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
96009bc9   hexiaodong   hxd
672
673
    }
  }
4f068096   李宇   最新
674
  </style>