fjl
fujunling
2023-07-10 1993ef2efaf55b8b42a51f3b9fd0ddfa80b2d0cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import request from '@/router/axios';
 
// 申领单数据
export const getList = (params) => {
    return request({
      url: '/api/ubcs-applyjtcodeservice/DockingPreApplyCode/page',
      method: 'get',
      params: params
    })
  }
  // 申领单状态
export const queryApplyStat = (params) => {
  return request({
    url: '/api/ubcs-applyjtcodeservice/DockingPreApplyCode/queryApplyState',
    method: 'get',
    params: params
  })
}