Blame view

antis-ncc-admin/src/views/statisticsList/form18.vue 21.6 KB
ad3658d9   李宇   ```
1
2
3
4
5
6
7
  <template>
    <div class="NCC-common-layout">
      <div class="NCC-common-layout-center">
        <!-- 筛选条件 -->
        <el-row class="NCC-common-search-box" :gutter="16">
          <el-form @submit.native.prevent>
            <el-col :span="6">
18ca819c   李宇   最新
8
9
10
11
12
13
14
15
              <el-form-item label="开始日期">
                <el-date-picker
                  v-model="query.StartTime"
                  type="date"
                  value-format="yyyy-MM-dd"
                  format="yyyy-MM-dd"
                  placeholder="开始日期"
                  :style='{"width":"100%"}'
ffd6aaca   李宇   最新
16
                  @change="handleStartTimeChange"
18ca819c   李宇   最新
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
                />
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="结束日期">
                <el-date-picker
                  v-model="query.EndTime"
                  type="date"
                  value-format="yyyy-MM-dd"
                  format="yyyy-MM-dd"
                  placeholder="结束日期"
                  :style='{"width":"100%"}'
                />
              </el-form-item>
            </el-col>
            <el-col :span="6">
ad3658d9   李宇   ```
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
              <el-form-item label="品项">
                <el-select
                  v-model="query.ItemId"
                  placeholder="请选择品项"
                  filterable
                  clearable
                  :style='{"width":"100%"}'>
                  <el-option
                    v-for="item in itemOptions"
                    :key="item.id"
                    :label="item.xmmc"
                    :value="item.id">
                  </el-option>
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
18ca819c   李宇   最新
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
              <el-form-item label="品项分类">
                <el-select
                  v-model="query.ItemCategory"
                  placeholder="请选择品项分类"
                  filterable
                  clearable
                  :style='{"width":"100%"}'>
                  <el-option
                    v-for="item in itemCategoryOptions"
                    :key="item.value"
                    :label="item.label"
                    :value="item.value">
                  </el-option>
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
ad3658d9   李宇   ```
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
              <el-form-item label="最小金额">
                <el-input-number
                  v-model="query.MinAmount"
                  placeholder="请输入最小金额"
                  :min="0"
                  :precision="2"
                  :style='{"width":"100%"}'
                  clearable>
                </el-input-number>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="最大金额">
                <el-input-number
                  v-model="query.MaxAmount"
                  placeholder="请输入最大金额"
                  :min="0"
                  :precision="2"
                  :style='{"width":"100%"}'
                  clearable>
                </el-input-number>
              </el-form-item>
            </el-col>
            <el-col :span="6">
ffd6aaca   李宇   最新
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
              <el-form-item label="组织类型">
                <el-select
                  v-model="query.organizationType"
                  placeholder="请选择组织类型"
                  filterable
                  clearable
                  @change="handleOrganizationTypeChange"
                  :style='{"width":"100%"}'>
                  <el-option label="事业部" value="事业部"></el-option>
                  <el-option label="科技部" value="科技部"></el-option>
                  <el-option label="教育部" value="教育部"></el-option>
                  <el-option label="大项目部" value="大项目部"></el-option>
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
              <el-form-item label="部门">
                <el-select
                  v-model="query.departmentId"
                  placeholder="请选择部门"
                  filterable
                  clearable
                  @change="handleDepartmentChange"
                  :style='{"width":"100%"}'>
                  <el-option
                    v-for="dept in departmentOptions"
                    :key="dept.Id || dept.id"
                    :label="dept.FullName || dept.fullName"
                    :value="dept.Id || dept.id">
                  </el-option>
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="12">
              <el-form-item label="门店">
                <el-select
                  v-model="query.StoreIds"
                  placeholder="请选择门店"
                  multiple
                  filterable
                  clearable
                  :style='{"width":"100%"}'>
                  <el-option
                    v-for="store in storeOptions"
                    :key="store.id"
                    :label="store.dm"
                    :value="store.id">
                  </el-option>
                </el-select>
              </el-form-item>
            </el-col>
            <el-col :span="6">
ad3658d9   李宇   ```
143
144
145
146
147
148
149
150
              <el-form-item>
                <el-button type="primary" icon="el-icon-search" @click="search()">查询</el-button>
                <el-button icon="el-icon-refresh-right" @click="reset()">重置</el-button>
              </el-form-item>
            </el-col>
          </el-form>
        </el-row>
  
18ca819c   李宇   最新
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
        <!-- 统计卡片(基于当前列表数据统计) -->
        <div class="statistics-cards" v-if="pageStatistics && pageStatistics.totalCount > 0">
          <el-row :gutter="16">
            <el-col :span="8">
              <div class="statistics-card">
                <div class="card-icon">
                  <i class="el-icon-document"></i>
                </div>
                <div class="card-content">
                  <div class="card-title">总记录数</div>
                  <div class="card-value">{{ pageStatistics.totalCount || 0 }}</div>
                </div>
              </div>
            </el-col>
            <el-col :span="8">
              <div class="statistics-card">
                <div class="card-icon">
                  <i class="el-icon-money"></i>
                </div>
                <div class="card-content">
                  <div class="card-title">总金额</div>
                  <div class="card-value">¥{{ formatMoney(pageStatistics.totalAmount) }}</div>
                </div>
              </div>
            </el-col>
            <el-col :span="8">
              <div class="statistics-card">
                <div class="card-icon">
                  <i class="el-icon-goods"></i>
                </div>
                <div class="card-content">
                  <div class="card-title">总项目数</div>
                  <div class="card-value">{{ pageStatistics.totalProjectNumber || 0 }}</div>
                </div>
              </div>
            </el-col>
          </el-row>
        </div>
  
ad3658d9   李宇   ```
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
        <!-- 数据表格 -->
        <div class="NCC-common-layout-main NCC-flex-main">
          <NCC-table v-loading="listLoading" :data="list" has-c>
            <el-table-column prop="Id" label="储扣记录ID" width="150">
              <template slot-scope="scope">
                <span>{{ scope.row.Id || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="DeductType" label="扣减类型" >
              <template slot-scope="scope">
                <span>{{ scope.row.DeductType || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="DeductTypeName" label="扣减类型名称" >
              <template slot-scope="scope">
                <span>{{ getDeductTypeName(scope.row.DeductType) || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="BillingId" label="开单ID" width="150">
              <template slot-scope="scope">
                <span>{{ scope.row.BillingId || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="Amount" label="合计金额"  >
              <template slot-scope="scope">
                <span class="amount-value">¥{{ formatMoney(scope.row.Amount) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="ItemName" label="品项名称" >
              <template slot-scope="scope">
                <span>{{ scope.row.ItemName || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="ItemCategory" label="品项分类" >
              <template slot-scope="scope">
                <el-tag 
                  :type="getItemCategoryType(scope.row.ItemCategory)" 
                  size="small">
                  {{ scope.row.ItemCategory || '无' }}
                </el-tag>
              </template>
            </el-table-column>
            <el-table-column prop="BillingDate" label="开单日期">
              <template slot-scope="scope">
                <span>{{ formatDate(scope.row.BillingDate) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="MemberName" label="客户名称" >
              <template slot-scope="scope">
                <span>{{ scope.row.MemberName || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="MemberPhone" label="客户手机号" min-width="130">
              <template slot-scope="scope">
                <span>{{ scope.row.MemberPhone || '无' }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="StoreName" label="门店名称" >
              <template slot-scope="scope">
                <span>{{ scope.row.StoreName || '无' }}</span>
              </template>
            </el-table-column>
          </NCC-table>
          <pagination 
            v-show="total > 0" 
            :total="total" 
            :page.sync="listQuery.currentPage"
            :limit.sync="listQuery.pageSize" 
            @pagination="handlePagination" 
          />
        </div>
      </div>
    </div>
  </template>
  
  <script>
  import request from '@/utils/request'
  import Pagination from '@/components/Pagination'
  
  export default {
    name: 'DeductList',
    components: {
      Pagination
    },
    data() {
      return {
18ca819c   李宇   最新
276
          query: {
ffd6aaca   李宇   最新
277
278
279
            organizationType: undefined,
            departmentId: undefined,
            StoreIds: [],
18ca819c   李宇   最新
280
281
282
283
284
285
286
287
            StartTime: undefined,
            EndTime: undefined,
            ItemId: undefined,
            ItemCategory: undefined,
            MinAmount: undefined,
            MaxAmount: undefined
          },
          storeOptions: [],
ffd6aaca   李宇   最新
288
          departmentOptions: [],
18ca819c   李宇   最新
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
          itemOptions: [],
          itemCategoryOptions: [],
          list: [],
          listLoading: false,
          total: 0,
          listQuery: {
            currentPage: 1,
            pageSize: 10
          }
      }
    },
    computed: {
      // 基于当前列表数据的统计信息
      pageStatistics() {
        if (!this.list || this.list.length === 0) {
          return {
            totalCount: 0,
            totalAmount: 0,
            totalProjectNumber: 0
          }
        }
        let totalAmount = 0
        let totalProjectNumber = 0
        this.list.forEach(item => {
          const amount = Number(item.Amount) || 0
          const projectNum = Number(item.ProjectNumber) || 0
          totalAmount += amount
          totalProjectNumber += projectNum
        })
        return {
          totalCount: this.list.length,
          totalAmount,
          totalProjectNumber
ad3658d9   李宇   ```
322
323
324
325
        }
      }
    },
    created() {
18ca819c   李宇   最新
326
        this.setDefaultTimeRange()
ffd6aaca   李宇   最新
327
        this.loadAllStores()
ad3658d9   李宇   ```
328
      this.initItemOptions()
18ca819c   李宇   最新
329
        this.initItemCategoryOptions()
ad3658d9   李宇   ```
330
331
      this.search()
    },
ffd6aaca   李宇   最新
332
333
334
335
336
337
338
339
    watch: {
      // 监听开始时间变化,重新加载门店列表
      'query.StartTime'() {
        this.$nextTick(() => {
          this.initStoreOptions()
        })
      }
    },
ad3658d9   李宇   ```
340
    methods: {
18ca819c   李宇   最新
341
342
343
344
345
346
      // 设置默认时间范围(本月1号到现在)
      setDefaultTimeRange() {
        const now = new Date()
        const firstDayOfMonth = new Date(now.getFullYear(), now.getMonth(), 1)
        this.query.StartTime = this.formatDate(firstDayOfMonth)
        this.query.EndTime = this.formatDate(now)
ffd6aaca   李宇   最新
347
348
349
350
351
352
353
        
        // 时间设置后,如果有组织类型和部门,重新加载门店列表
        if (this.query.organizationType && this.query.departmentId) {
          this.$nextTick(() => {
            this.initStoreOptions()
          })
        }
18ca819c   李宇   最新
354
355
      },
  
ffd6aaca   李宇   最新
356
357
      // 加载全部门店(当没有选择部门时)
      loadAllStores() {
18ca819c   李宇   最新
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
        request({
          url: '/api/Extend/LqMdxx',
          method: 'GET',
          data: {
            currentPage: 1,
            pageSize: 1000
          }
        }).then(res => {
          if (res.data && res.data.list) {
            this.storeOptions = res.data.list
          }
        }).catch(() => {
          this.storeOptions = []
        })
      },
  
ffd6aaca   李宇   最新
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
      // 获取部门选项(根据组织类型)
      loadDepartmentOptions() {
        if (!this.query.organizationType) {
          this.departmentOptions = []
          return
        }
        
        request({
          url: '/api/Extend/Organize/GetByName',
          method: 'GET',
          data: {
            organizeName: this.query.organizationType
          }
        }).then(res => {
          this.departmentOptions = res.data || []
          // 如果部门ID不在新列表中,清空部门ID
          if (this.query.departmentId) {
            const exists = this.departmentOptions.some(
              dept => (dept.Id || dept.id) === this.query.departmentId
            )
            if (!exists) {
              this.query.departmentId = undefined
              this.query.StoreIds = []
              this.storeOptions = []
            }
          }
        }).catch(() => {
          this.departmentOptions = []
        })
      },
  
      // 初始化门店选项(根据组织类型、部门、年月)
      initStoreOptions() {
        // 如果没有选择部门,加载全部门店
        if (!this.query.departmentId) {
          this.loadAllStores()
          return
        }
  
        // 如果缺少必要参数,不加载门店列表
        if (!this.query.organizationType || !this.query.StartTime) {
          this.storeOptions = []
          return
        }
  
        // 从开始时间提取年月(格式:YYYYMM)
        // StartTime 格式为 yyyy-MM-dd
        const dateStr = this.query.StartTime
        if (!dateStr) {
          this.storeOptions = []
          return
        }
        
        // 提取年月,格式:YYYYMM
        const monthStr = dateStr.substring(0, 4) + dateStr.substring(5, 7)
  
        request({
          url: '/api/Extend/lqmdtarget/GetManagedStores',
          method: 'POST',
          data: {
            month: monthStr,
            organizationType: this.query.organizationType,
            departmentId: this.query.departmentId
          }
        }).then(res => {
          if (res.data && Array.isArray(res.data)) {
            // 将返回的数据格式转换为 storeOptions 需要的格式
            // 返回格式: [{ StoreId: "...", StoreName: "..." }]
            // 需要格式: [{ id: "...", dm: "..." }]
            this.storeOptions = res.data.map(store => ({
              id: store.StoreId,
              dm: store.StoreName
            }))
            // 默认选中所有获取到的门店
            this.query.StoreIds = this.storeOptions.map(store => store.id)
          } else {
            this.storeOptions = []
            this.query.StoreIds = []
          }
        }).catch(err => {
          console.error('获取门店列表失败:', err)
          this.$message({
            type: 'error',
            message: '获取门店列表失败',
            duration: 1500
          })
          this.storeOptions = []
          this.query.StoreIds = []
        })
      },
  
      // 处理开始时间变化
      handleStartTimeChange() {
        this.$nextTick(() => {
          this.initStoreOptions()
        })
      },
  
      // 处理组织类型变化
      handleOrganizationTypeChange() {
        // 清空部门和门店
        this.query.departmentId = undefined
        this.query.StoreIds = []
        // 重新加载部门选项
        this.loadDepartmentOptions()
        // 加载全部门店(因为部门已清空)
        this.loadAllStores()
      },
  
      // 处理部门变化
      handleDepartmentChange() {
        // 清空门店选择
        this.query.StoreIds = []
        // 重新加载门店列表(如果有部门则加载部门管理的门店,否则加载全部门店)
        this.initStoreOptions()
      },
  
ad3658d9   李宇   ```
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
      // 初始化品项选项
      initItemOptions() {
        request({
          url: '/api/Extend/LqXmzl',
          method: 'GET',
          data: {
            currentPage: 1,
            pageSize: 1000
          }
        }).then(res => {
          if (res.data && res.data.list) {
            this.itemOptions = res.data.list
          }
        }).catch(() => {
          this.itemOptions = []
        })
      },
  
18ca819c   李宇   最新
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
      // 初始化品项分类选项(使用项目资料表 qt2 字段)
      initItemCategoryOptions() {
        request({
          url: '/api/Extend/lqxmzl/GetDistinctFieldData?fieldName=qt2',
          method: 'GET'
        }).then(res => {
          if (res.code === 200 && res.data && res.data.values) {
            this.itemCategoryOptions = res.data.values.map(item => ({
              label: item,
              value: item
            }))
          } else {
            this.itemCategoryOptions = []
          }
        }).catch(() => {
          this.itemCategoryOptions = []
        })
      },
  
ad3658d9   李宇   ```
528
529
530
531
532
533
534
535
536
537
538
539
540
      // 查询数据
      search() {
        this.listLoading = true
  
        const params = {
          currentPage: this.listQuery.currentPage,
          pageSize: this.listQuery.pageSize
        }
  
        if (this.query.ItemId) {
          params.ItemId = this.query.ItemId
        }
  
ffd6aaca   李宇   最新
541
        if (this.query.StoreIds && this.query.StoreIds.length > 0) {
0a60e4b5   李宇   最新
542
          params.StoreIds = this.query.StoreIds.join(',')
18ca819c   李宇   最新
543
544
545
546
547
548
549
550
551
552
553
554
555
556
        }
  
        if (this.query.StartTime) {
          params.StartTime = this.query.StartTime
        }
  
        if (this.query.EndTime) {
          params.EndTime = this.query.EndTime
        }
  
        if (this.query.ItemCategory) {
          params.ItemCategory = this.query.ItemCategory
        }
  
ad3658d9   李宇   ```
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
        if (this.query.MinAmount !== null && this.query.MinAmount !== undefined && this.query.MinAmount !== '') {
          params.MinAmount = this.query.MinAmount
        }
  
        if (this.query.MaxAmount !== null && this.query.MaxAmount !== undefined && this.query.MaxAmount !== '') {
          params.MaxAmount = this.query.MaxAmount
        }
  
        request({
          url: '/api/Extend/lqkdkdjlb/deduct-list',
          method: 'GET',
          data: params,
        }).then(res => {
          if (res.data && res.data.list) {
            this.list = res.data.list
            this.total = (res.data.pagination && res.data.pagination.total) || res.data.list.length || 0
          } else {
            this.list = []
            this.total = 0
          }
          this.listLoading = false
        }).catch(err => {
          console.error('查询失败:', err)
          this.$message({
            type: 'error',
            message: '查询失败,请重试',
            duration: 1500
          })
          this.listLoading = false
          this.list = []
          this.total = 0
        })
      },
  
      // 处理分页变化
      handlePagination({ page, limit }) {
18ca819c   李宇   最新
593
594
595
          this.listQuery.currentPage = page
          this.listQuery.pageSize = limit
          this.search()
ad3658d9   李宇   ```
596
597
598
599
      },
  
      // 重置查询条件
      reset() {
18ca819c   李宇   最新
600
          this.query = {
ffd6aaca   李宇   最新
601
602
603
            organizationType: undefined,
            departmentId: undefined,
            StoreIds: [],
18ca819c   李宇   最新
604
605
606
607
608
609
610
611
            StartTime: undefined,
            EndTime: undefined,
            ItemId: undefined,
            ItemCategory: undefined,
            MinAmount: undefined,
            MaxAmount: undefined
          }
          this.setDefaultTimeRange()
ffd6aaca   李宇   最新
612
613
614
          this.departmentOptions = []
          // 重置后加载全部门店
          this.loadAllStores()
18ca819c   李宇   最新
615
616
617
618
619
          this.listQuery.currentPage = 1
          this.listQuery.pageSize = 10
          this.list = []
          this.total = 0
          this.search()
ad3658d9   李宇   ```
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
      },
  
      // 格式化金额
      formatMoney(value) {
        if (value === null || value === undefined || value === '') {
          return '0.00'
        }
        const num = parseFloat(value)
        if (isNaN(num)) {
          return '0.00'
        }
        return num.toFixed(2)
      },
  
      // 格式化日期
      formatDate(value) {
        if (!value) {
18ca819c   李宇   最新
637
          return ''
ad3658d9   李宇   ```
638
639
640
        }
        const date = new Date(value)
        if (isNaN(date.getTime())) {
18ca819c   李宇   最新
641
          return ''
ad3658d9   李宇   ```
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
        }
        const year = date.getFullYear()
        const month = String(date.getMonth() + 1).padStart(2, '0')
        const day = String(date.getDate()).padStart(2, '0')
        return `${year}-${month}-${day}`
      },
  
      // 获取品项分类的标签类型
      getItemCategoryType(category) {
        if (!category) {
          return 'info'
        }
        if (category === '医美') {
          return 'danger'
        } else if (category === '科美') {
          return 'warning'
        } else if (category === '生美') {
          return 'success'
        }
        return 'info'
      },
  
      // 获取扣减类型名称
      getDeductTypeName(deductType) {
        if (!deductType) {
          return '无'
        }
        // 根据扣减类型返回对应的名称
        const typeMap = {
          '储值': '储值扣减',
          '品项': '品项扣减',
          '体验': '体验扣减',
          '赠送': '赠送扣减'
        }
        return typeMap[deductType] || deductType
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  .amount-value {
    color: #F56C6C;
    font-weight: 500;
  }
18ca819c   李宇   最新
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
  
  .statistics-cards {
    margin: 16px 0;
  }
  
  .statistics-card {
    height: 100px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  
    .card-icon {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      background: linear-gradient(135deg, #409EFF, #67C23A);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 16px;
  
      i {
        font-size: 24px;
        color: #fff;
      }
    }
  
    .card-content {
      flex: 1;
  
      .card-title {
        font-size: 14px;
        color: #909399;
        margin-bottom: 8px;
      }
  
      .card-value {
        font-size: 22px;
        font-weight: bold;
        color: #303133;
      }
    }
  }
ad3658d9   李宇   ```
733
  </style>