experienceDistributionStartupPerson.js 388 B

12345678910111213141516171819
  1. import request from '@/utils/request'
  2. // 查询开机人员年限分布列表全量
  3. export function getTenurelistAll(query) {
  4. return request({
  5. url: '/blocked/tenure/listAll',
  6. method: 'get',
  7. params: query
  8. })
  9. }
  10. //修改开机人员年限分布
  11. export function editTenure(data) {
  12. return request({
  13. url: '/blocked/tenure/edit',
  14. method: 'post',
  15. data: data
  16. })
  17. }