Merge branch 'NiceDev' into develop
# Conflicts: # src/app.config.ts
This commit is contained in:
commit
9073df6632
7 changed files with 797 additions and 310 deletions
10
src/api/KPI/api.KPI.ts
Normal file
10
src/api/KPI/api.KPI.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import env from "../index";
|
||||
|
||||
const kpiPeriod = `${env.API_URI}/kpi/period`;
|
||||
const kpiEvaluation = `${env.API_URI}/kpi/user/evaluation`;
|
||||
const kpiPlan = `${env.API_URI}/kpi/plan`;
|
||||
export default {
|
||||
kpiPeriod,
|
||||
kpiEvaluation,
|
||||
kpiPlan,
|
||||
};
|
||||
|
|
@ -1,10 +1,14 @@
|
|||
import env from "@/api/index";
|
||||
import env from "../index";
|
||||
|
||||
const kpiPeriod = `${env.API_URI}/kpi/period`;
|
||||
const kpiEvaluation = `${env.API_URI}/kpi/user/evaluation`;
|
||||
const kpiPlan = `${env.API_URI}/kpi/plan`;
|
||||
const KpiCapacity = `${env.API_URI}/kpi/capacity`;
|
||||
const KpiFile = `${env.API_URI}/salary/file`;
|
||||
|
||||
export default {
|
||||
KpiCapacity,
|
||||
|
||||
file:KpiFile,
|
||||
KpiCapacity,
|
||||
KpiFile,
|
||||
kpiPeriod,
|
||||
kpiEvaluation,
|
||||
kpiPlan,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue