调整预结算、正式结算
This commit is contained in:
@@ -11,8 +11,10 @@ export const getCandidates = (current, size, params) =>
|
||||
method: 'get',
|
||||
params: { current, size, ...params },
|
||||
});
|
||||
export const getContractOptions = keyword =>
|
||||
request({ url: `${baseUrl}/contract-options`, method: 'get', params: { keyword } });
|
||||
export const getContractOptions = (keyword, projectId) =>
|
||||
request({ url: `${baseUrl}/contract-options`, method: 'get', params: { keyword, projectId } });
|
||||
export const getNextNo = () => request({ url: `${baseUrl}/next-no`, method: 'get' });
|
||||
export const getFeeOptions = () => request({ url: `${baseUrl}/fee-options`, method: 'get' });
|
||||
export const getCandidateDetails = (current, size, params) =>
|
||||
request({
|
||||
url: `${baseUrl}/candidate-details`,
|
||||
|
||||
Reference in New Issue
Block a user