Blame view

antis-ncc-admin/src/api/extend/storeManagerSalary.js 465 Bytes
97151af6   李宇   feat(lqInventory)...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  import request from '@/utils/request'
  
  // 获取店长工资列表
  export function getStoreManagerSalaryList(params) {
    return request({
      url: '/api/Extend/lqstoremanagersalary/store-manager',
      method: 'GET',
      data: params
    })
  }
  
  // 计算店长工资
  export function calculateStoreManagerSalary(year, month) {
    return request({
      url: `/api/Extend/lqstoremanagersalary/calculate/store-manager?year=${year}&month=${month}`,
      method: 'POST'
    })
  }