You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
491 B
14 lines
491 B
// noinspection SpellCheckingInspection
|
|
|
|
import http from 'apis/axios';
|
|
|
|
const apiUrl = import.meta.env.VITE_API_URL;
|
|
console.log('apiUrl: ', apiUrl);
|
|
const ptccsens = `${apiUrl}/ptccsens/v1.0`;
|
|
const finance = `${ptccsens}/finance`;
|
|
|
|
// 查看项目下的所有任务对应的财务信息
|
|
export const financeInfo = params => http.post(`${finance}/getByTask`, params);
|
|
|
|
// 修改任务或项目的预算和奖金信息
|
|
// export const edit = params => http.post(`${finance}/info`, params);
|
|
|