Blame view

antis-ncc-admin/src/views/wageManagement/tech-stock.vue 22.4 KB
2036dd49   李宇   最新
1
2
3
4
5
6
7
8
9
10
  <template>
    <div class="app-container">
      <!-- 页面头部 -->
      <div class="page-header">
        <div class="header-left">
          <h2>科技部股份</h2>
          <p class="page-desc">管理科技部股份相关数据</p>
        </div>
        <div class="header-right">
          <el-button 
64ac7d69   李宇   最新
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
            type="success" 
            icon="el-icon-download"
            @click="handleExport"
            :loading="exportLoading"
          >
            导出
          </el-button>
          <el-button 
            type="primary" 
            icon="el-icon-cpu"
            @click="showCalculateDialog"
            :loading="calculateLoading"
          >
            计算股份
          </el-button>
          <el-button 
2036dd49   李宇   最新
27
            icon="el-icon-refresh" 
64ac7d69   李宇   最新
28
            @click="getList"
2036dd49   李宇   最新
29
30
31
32
33
34
35
            :loading="loading"
          >
            刷新
          </el-button>
        </div>
      </div>
  
64ac7d69   李宇   最新
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
      <!-- 搜索区域 -->
      <div class="search-container">
        <el-form :model="queryParams" ref="queryForm" :inline="true" label-width="80px">
          <el-form-item label="统计月份" prop="statisticsMonth">
            <el-date-picker
              v-model="queryParams.statisticsMonth"
              type="month"
              placeholder="选择月份"
              format="yyyyMM"
              value-format="yyyyMM"
              style="width: 200px"
            />
          </el-form-item>
          <el-form-item label="部门" prop="departmentName">
            <el-select 
              v-model="queryParams.departmentName" 
              placeholder="请选择部门"
              clearable
              filterable
              style="width: 200px"
            >
              <el-option label="科技一部" value="科技一部" />
              <el-option label="科技二部" value="科技二部" />
            </el-select>
          </el-form-item>
          <el-form-item>
            <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
            <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
          </el-form-item>
        </el-form>
2036dd49   李宇   最新
66
      </div>
64ac7d69   李宇   最新
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
243
244
  
      <!-- 数据表格 -->
      <div class="table-container">
        <NCC-table 
          v-loading="loading" 
          :data="list" 
          border 
          stripe
          height="calc(100vh - 420px)"
          :header-cell-style="{ background: '#f5f7fa', color: '#606266' }"
        >
          <!-- 基本信息 -->
          <el-table-column prop="DepartmentName" label="部门名称" width="150" align="center" fixed="left">
            <template slot-scope="scope">
              <div class="department-name">
                <i class="el-icon-office-building department-icon"></i>
                <span>{{ scope.row.DepartmentName || '无' }}</span>
              </div>
            </template>
          </el-table-column>
          <el-table-column prop="StatisticsMonth" label="统计月份" width="120" align="center" fixed="left">
            <template slot-scope="scope">
              <span>{{ formatMonth(scope.row.StatisticsMonth) || '无' }}</span>
            </template>
          </el-table-column>
  
          <!-- 收入信息 -->
          <el-table-column label="收入信息" align="center">
            <el-table-column prop="Income" label="收入" width="120" align="center">
              <template slot-scope="scope">
                <span class="highlight">{{ formatMoney(scope.row.Income) }}</span>
              </template>
            </el-table-column>
          </el-table-column>
  
          <!-- 成本信息 -->
          <el-table-column label="成本信息" align="center">
            <el-table-column prop="CostReimbursement" label="成本-报销" width="120" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostReimbursement) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherBase" label="成本-人工-老师底薪" width="160" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherBase) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherManual" label="成本-人工-手工费" width="160" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherManual) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherBillingComm" label="成本-人工-开单提成" width="160" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherBillingComm) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherConsumeComm" label="成本-人工-消耗提成" width="160" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherConsumeComm) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherExpertComm" label="成本-人工-专家提成" width="160" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherExpertComm) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostTeacherOvertime" label="成本-人工-加班" width="140" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostTeacherOvertime) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostGMBase" label="成本-人工-总经理底薪" width="170" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostGMBase) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostGMComm" label="成本-人工-总经理提成" width="170" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostGMComm) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostOther1" label="成本-其他1" width="120" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostOther1) }}</span>
              </template>
            </el-table-column>
            <el-table-column prop="CostOther2" label="成本-其他2" width="120" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.CostOther2) }}</span>
              </template>
            </el-table-column>
          </el-table-column>
  
          <!-- 奖励 -->
          <el-table-column label="奖励" align="center">
            <el-table-column prop="RewardTechDept" label="奖励-科技部" width="140" align="center">
              <template slot-scope="scope">
                <span>{{ formatMoney(scope.row.RewardTechDept) }}</span>
              </template>
            </el-table-column>
          </el-table-column>
  
          <!-- 利润结果 -->
          <el-table-column label="利润结果" align="center">
            <el-table-column prop="Profit" label="利润" width="120" align="center">
              <template slot-scope="scope">
                <span class="highlight">{{ formatMoney(scope.row.Profit) }}</span>
              </template>
            </el-table-column>
          </el-table-column>
  
          <!-- 操作列 -->
          <el-table-column label="操作" width="120" align="center" fixed="right">
            <template slot-scope="scope">
              <el-button 
                type="text" 
                size="mini"
                icon="el-icon-view"
                @click="showDetail(scope.row)"
              >
                查看详情
              </el-button>
            </template>
          </el-table-column>
        </NCC-table>
      </div>
  
      <!-- 计算股份弹窗 -->
      <el-dialog
        title="计算科技部股份"
        :visible="calculateDialogVisible"
        width="500px"
        :close-on-click-modal="false"
        @close="handleCalculateDialogClose"
      >
        <el-form label-width="100px" label-position="right">
          <el-form-item label="统计月份" required>
            <el-date-picker
              v-model="calculateMonth"
              type="month"
              placeholder="请选择月份"
              format="yyyyMM"
              value-format="yyyyMM"
              style="width: 100%"
            />
          </el-form-item>
          <el-form-item label="部门">
            <el-select 
              v-model="calculateDepartmentName" 
              placeholder="请选择部门(不选则计算所有部门)"
              clearable
              filterable
              style="width: 100%"
            >
              <el-option label="科技一部" value="科技一部" />
              <el-option label="科技二部" value="科技二部" />
            </el-select>
          </el-form-item>
        </el-form>
        <div slot="footer" class="dialog-footer">
          <el-button @click="handleCalculateDialogClose">取消</el-button>
          <el-button 
            type="primary" 
            @click="handleCalculateConfirm"
            :loading="calculateLoading"
          >
            确定
          </el-button>
        </div>
      </el-dialog>
  
      <!-- 详情弹窗 -->
      <tech-stock-detail-dialog
        :visible="detailVisible"
        :detail-data="currentDetailData"
        @close="handleDetailClose"
      />
2036dd49   李宇   最新
245
246
247
248
    </div>
  </template>
  
  <script>
64ac7d69   李宇   最新
249
250
251
  import { getTechStockList, generateTechStock } from '@/api/extend/techStock'
  import TechStockDetailDialog from './tech-stock-detail-dialog.vue'
  
2036dd49   李宇   最新
252
253
  export default {
    name: 'TechStock',
64ac7d69   李宇   最新
254
255
256
    components: {
      TechStockDetailDialog
    },
2036dd49   李宇   最新
257
    data() {
64ac7d69   李宇   最新
258
259
260
261
262
263
264
265
      // 获取当前月份
      const getCurrentMonth = () => {
        const now = new Date()
        const year = now.getFullYear()
        const month = String(now.getMonth() + 1).padStart(2, '0')
        return `${year}${month}`
      }
  
2036dd49   李宇   最新
266
      return {
64ac7d69   李宇   最新
267
268
269
270
271
272
273
274
275
276
277
278
279
        loading: false,
        calculateLoading: false,
        exportLoading: false,
        list: [],
        calculateDialogVisible: false,
        calculateMonth: getCurrentMonth(),
        calculateDepartmentName: '',
        detailVisible: false,
        currentDetailData: null,
        queryParams: {
          statisticsMonth: getCurrentMonth(), // yyyyMM 格式
          departmentName: ''
        }
2036dd49   李宇   最新
280
281
      }
    },
64ac7d69   李宇   最新
282
283
284
    created() {
      this.getList()
    },
2036dd49   李宇   最新
285
    methods: {
64ac7d69   李宇   最新
286
287
      // 获取列表数据
      async getList() {
2036dd49   李宇   最新
288
        this.loading = true
64ac7d69   李宇   最新
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
        try {
          const params = {
            StatisticsMonth: this.queryParams.statisticsMonth || undefined,
            DepartmentName: this.queryParams.departmentName || undefined
          }
  
          const response = await getTechStockList(params)
  
          if (response.code === 200) {
            this.list = response.data.data || []
          } else {
            this.$message.error(response.msg || '获取数据失败')
          }
        } catch (error) {
          console.error('获取科技部股份列表失败:', error)
          this.$message.error('获取数据失败')
        } finally {
2036dd49   李宇   最新
306
          this.loading = false
64ac7d69   李宇   最新
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
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
491
492
493
494
        }
      },
  
      // 搜索
      handleQuery() {
        this.getList()
      },
  
      // 重置搜索
      resetQuery() {
        const getCurrentMonth = () => {
          const now = new Date()
          const year = now.getFullYear()
          const month = String(now.getMonth() + 1).padStart(2, '0')
          return `${year}${month}`
        }
  
        this.queryParams = {
          statisticsMonth: getCurrentMonth(),
          departmentName: ''
        }
        this.getList()
      },
  
      // 显示计算股份弹窗
      showCalculateDialog() {
        const getCurrentMonth = () => {
          const now = new Date()
          const year = now.getFullYear()
          const month = String(now.getMonth() + 1).padStart(2, '0')
          return `${year}${month}`
        }
        this.calculateMonth = getCurrentMonth()
        this.calculateDepartmentName = ''
        this.calculateDialogVisible = true
      },
  
      // 关闭计算股份弹窗
      handleCalculateDialogClose() {
        this.calculateDialogVisible = false
      },
  
      // 确认计算股份
      async handleCalculateConfirm() {
        if (!this.calculateMonth) {
          this.$message.warning('请选择统计月份')
          return
        }
  
        this.calculateLoading = true
        try {
          const data = {
            statisticsMonth: this.calculateMonth,
            departmentName: this.calculateDepartmentName || undefined
          }
  
          const response = await generateTechStock(data)
          if (response.code === 200) {
            this.$message.success('计算股份成功')
            this.calculateDialogVisible = false
            this.getList()
          } else {
            this.$message.error(response.msg || '计算股份失败')
          }
        } catch (error) {
          console.error('计算股份失败:', error)
          this.$message.error(error.message || '计算股份失败')
        } finally {
          this.calculateLoading = false
        }
      },
  
      // 显示详情
      showDetail(row) {
        this.currentDetailData = row
        this.detailVisible = true
      },
  
      // 关闭详情弹窗
      handleDetailClose() {
        this.detailVisible = false
        this.currentDetailData = null
      },
  
      // 导出功能
      async handleExport() {
        if (!this.list || this.list.length === 0) {
          this.$message.warning('暂无数据可导出')
          return
        }
  
        this.exportLoading = true
        try {
          // 动态导入 xlsx 库
          const XLSX = await import('xlsx')
  
          // 构建表头(根据后端DTO字段的中文映射)
          const headers = [
            '部门名称',
            '统计月份',
            '收入',
            '成本-报销',
            '成本-人工-老师底薪',
            '成本-人工-手工费',
            '成本-人工-开单提成',
            '成本-人工-消耗提成',
            '成本-人工-专家提成',
            '成本-人工-加班',
            '成本-人工-总经理底薪',
            '成本-人工-总经理提成',
            '奖励-科技部',
            '成本-其他1',
            '成本-其他2',
            '利润'
          ]
  
          // 构建数据行
          const dataRows = this.list.map(item => [
            item.DepartmentName || '无',
            this.formatMonth(item.StatisticsMonth) || '无',
            this.formatMoney(item.Income),
            this.formatMoney(item.CostReimbursement),
            this.formatMoney(item.CostTeacherBase),
            this.formatMoney(item.CostTeacherManual),
            this.formatMoney(item.CostTeacherBillingComm),
            this.formatMoney(item.CostTeacherConsumeComm),
            this.formatMoney(item.CostTeacherExpertComm),
            this.formatMoney(item.CostTeacherOvertime),
            this.formatMoney(item.CostGMBase),
            this.formatMoney(item.CostGMComm),
            this.formatMoney(item.RewardTechDept),
            this.formatMoney(item.CostOther1),
            this.formatMoney(item.CostOther2),
            this.formatMoney(item.Profit)
          ])
  
          // 合并表头和数据
          const excelData = [headers, ...dataRows]
  
          // 创建工作表
          const ws = XLSX.utils.aoa_to_sheet(excelData)
  
          // 设置列宽
          const colWidths = headers.map(() => ({ wch: 15 }))
          ws['!cols'] = colWidths
  
          // 创建工作簿
          const wb = XLSX.utils.book_new()
          XLSX.utils.book_append_sheet(wb, ws, '科技部股份')
  
          // 生成文件名
          const now = new Date()
          const timestamp = now.getFullYear() + 
            String(now.getMonth() + 1).padStart(2, '0') + 
            String(now.getDate()).padStart(2, '0') + 
            String(now.getHours()).padStart(2, '0') + 
            String(now.getMinutes()).padStart(2, '0') + 
            String(now.getSeconds()).padStart(2, '0')
          const fileName = `科技部股份_${timestamp}.xlsx`
  
          // 导出文件
          XLSX.writeFile(wb, fileName)
  
          this.$message.success('导出成功')
        } catch (error) {
          console.error('导出失败:', error)
          this.$message.error('导出失败,请重试')
        } finally {
          this.exportLoading = false
        }
      },
  
      // 格式化金额
      formatMoney(value) {
        if (value === null || value === undefined || value === '') {
          return '0.00'
        }
        return Number(value).toFixed(2)
      },
  
      // 格式化月份
      formatMonth(value) {
        if (!value || value.length !== 6) {
          return value || '无'
        }
        const year = value.substring(0, 4)
        const month = value.substring(4, 6)
        return `${year}-${month}`
2036dd49   李宇   最新
495
496
497
498
499
500
501
      }
    }
  }
  </script>
  
  <style lang="scss" scoped>
  .app-container {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
502
503
504
505
    padding: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 50%, #f0f4f8 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
2036dd49   李宇   最新
506
507
508
509
510
511
  }
  
  .page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
    margin-bottom: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(144, 147, 153, 0.2);
    position: relative;
    overflow: hidden;
  
    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #606266 0%, #909399 50%, #606266 100%);
    }
2036dd49   李宇   最新
530
531
532
533
534
  
    .header-left {
      h2 {
        margin: 0 0 8px 0;
        color: #303133;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
535
        font-size: 22px;
2036dd49   李宇   最新
536
        font-weight: 600;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
537
538
539
540
        background: linear-gradient(135deg, #303133 0%, #606266 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
2036dd49   李宇   最新
541
542
543
544
545
546
547
548
549
550
551
      }
  
      .page-desc {
        margin: 0;
        color: #909399;
        font-size: 14px;
      }
    }
  
    .header-right {
      display: flex;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
552
553
554
555
556
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
593
594
595
596
597
598
599
600
601
602
      gap: 10px;
      flex-wrap: wrap;
  
      .el-button {
        border-radius: 8px;
        padding: 10px 18px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }
  
        &.el-button--primary {
          background: linear-gradient(135deg, #606266 0%, #909399 100%);
          border: none;
  
          &:hover {
            background: linear-gradient(135deg, #909399 0%, #606266 100%);
          }
        }
  
        &.el-button--success {
          background: linear-gradient(135deg, #67C23A 0%, #85ce61 100%);
          border: none;
  
          &:hover {
            background: linear-gradient(135deg, #85ce61 0%, #67C23A 100%);
          }
        }
  
        &.el-button--warning {
          background: linear-gradient(135deg, #E6A23C 0%, #f0b45a 100%);
          border: none;
  
          &:hover {
            background: linear-gradient(135deg, #f0b45a 0%, #E6A23C 100%);
          }
        }
  
        &.el-button--info {
          background: linear-gradient(135deg, #909399 0%, #a6a9ad 100%);
          border: none;
  
          &:hover {
            background: linear-gradient(135deg, #a6a9ad 0%, #909399 100%);
          }
        }
      }
2036dd49   李宇   最新
603
604
605
    }
  }
  
64ac7d69   李宇   最新
606
  .search-container {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
    margin-bottom: 16px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(144, 147, 153, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
    &:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    }
  
    &::v-deep .el-form {
      .el-form-item {
        margin-bottom: 16px;
      }
  
      .el-button {
        border-radius: 8px;
        padding: 10px 20px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }
  
        &.el-button--primary {
          background: linear-gradient(135deg, #606266 0%, #909399 100%);
          border: none;
  
          &:hover {
            background: linear-gradient(135deg, #909399 0%, #606266 100%);
          }
        }
      }
  
      .el-input__inner,
      .el-select .el-input__inner {
        border-radius: 8px;
        border: 1px solid rgba(144, 147, 153, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
        &:focus {
          border-color: #909399;
          box-shadow: 0 0 0 2px rgba(144, 147, 153, 0.15);
        }
      }
    }
2036dd49   李宇   最新
658
  }
2036dd49   李宇   最新
659
  
64ac7d69   李宇   最新
660
661
  .table-container {
    margin-bottom: 20px;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
    padding: 18px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(144, 147, 153, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
  
    &:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
    }
  
    &::v-deep .el-table {
      background-color: #ffffff;
  
      .el-table__body-wrapper {
        background-color: #ffffff;
      }
    }
64ac7d69   李宇   最新
683
684
685
686
687
688
689
690
  }
  
  .department-name {
    display: flex;
    align-items: center;
    gap: 6px;
  
    .department-icon {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
691
      color: #606266;
64ac7d69   李宇   最新
692
      font-size: 16px;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
693
694
695
696
697
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
  
    &:hover .department-icon {
      transform: scale(1.1) rotate(5deg);
64ac7d69   李宇   最新
698
699
700
701
    }
  }
  
  .highlight {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
702
    color: #606266;
64ac7d69   李宇   最新
703
704
705
706
707
    font-weight: 600;
  }
  
  // 表格样式优化
  ::v-deep .el-table {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
708
709
710
711
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(144, 147, 153, 0.2);
  
64ac7d69   李宇   最新
712
713
    .el-table__header-wrapper {
      th {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
714
715
        background: linear-gradient(135deg, rgba(144, 147, 153, 0.08) 0%, rgba(144, 147, 153, 0.05) 100%);
        color: #303133;
64ac7d69   李宇   最新
716
        font-weight: 600;
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
717
718
719
720
721
        border-bottom: 2px solid rgba(144, 147, 153, 0.2);
        padding: 14px 0 !important;
        height: auto !important;
        line-height: normal !important;
        box-sizing: border-box;
64ac7d69   李宇   最新
722
723
724
725
      }
    }
  
    .el-table__body-wrapper {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
726
727
728
      background-color: #ffffff;
      z-index: 1;
  
64ac7d69   李宇   最新
729
      .el-table__row {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
730
731
732
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background-color: #ffffff;
  
64ac7d69   李宇   最新
733
        &:hover {
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
          background: linear-gradient(90deg, rgba(144, 147, 153, 0.05) 0%, rgba(144, 147, 153, 0.02) 100%) !important;
          transform: translateX(2px);
        }
  
        td {
          border-bottom: 1px solid rgba(144, 147, 153, 0.15);
          background-color: #ffffff !important;
          padding: 12px 0 !important;
          height: auto !important;
          line-height: normal !important;
          box-sizing: border-box;
        }
  
        &.el-table__row--striped {
          td {
            background-color: #fafafa !important;
          }
  
          &:hover td {
            background: linear-gradient(90deg, rgba(144, 147, 153, 0.05) 0%, rgba(144, 147, 153, 0.02) 100%) !important;
          }
64ac7d69   李宇   最新
755
756
757
        }
      }
    }
b36af804   “wangming”   优化工资管理页面UI样式,统一现代...
758
759
760
761
762
  
    .el-table__header-wrapper {
      background-color: #ffffff;
      z-index: 2;
    }
64ac7d69   李宇   最新
763
764
  }
  </style>