bug fix
This commit is contained in:
parent
39510406be
commit
a7791e5049
|
@ -29,7 +29,7 @@ export class ReportMonthlyMockApi {
|
||||||
// @ Monthlys - GET
|
// @ Monthlys - GET
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
this._fuseMockApiService
|
this._fuseMockApiService
|
||||||
.onGet('api/apps/report/montyly/monthlys', 300)
|
.onGet('api/apps/report/monthly/monthlys', 300)
|
||||||
.reply(({ request }) => {
|
.reply(({ request }) => {
|
||||||
// Get available queries
|
// Get available queries
|
||||||
const search = request.params.get('search');
|
const search = request.params.get('search');
|
||||||
|
|
|
@ -84,7 +84,7 @@ export class DailyService {
|
||||||
.get<{
|
.get<{
|
||||||
pagination: DailyPagination;
|
pagination: DailyPagination;
|
||||||
dailys: Daily[];
|
dailys: Daily[];
|
||||||
}>('api/apps/repoart/daily/dailys', {
|
}>('api/apps/report/daily/dailys', {
|
||||||
params: {
|
params: {
|
||||||
page: '' + page,
|
page: '' + page,
|
||||||
size: '' + size,
|
size: '' + size,
|
||||||
|
|
|
@ -61,7 +61,7 @@ export class MonthlyService {
|
||||||
// -----------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get Monthlys
|
* Get monthlys
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param page
|
* @param page
|
||||||
|
@ -135,7 +135,7 @@ export class MonthlyService {
|
||||||
take(1),
|
take(1),
|
||||||
switchMap((monthlys) =>
|
switchMap((monthlys) =>
|
||||||
this._httpClient
|
this._httpClient
|
||||||
.post<Monthly>('api/apps/report/monthly/product', {})
|
.post<Monthly>('api/apps/result/monthly/product', {})
|
||||||
.pipe(
|
.pipe(
|
||||||
map((newMonthly) => {
|
map((newMonthly) => {
|
||||||
// Update the monthlys with the new product
|
// Update the monthlys with the new product
|
||||||
|
|
|
@ -24,5 +24,6 @@
|
||||||
"Evolution": "Evolution",
|
"Evolution": "Evolution",
|
||||||
"Slot": "Slot",
|
"Slot": "Slot",
|
||||||
"Current User": "Current User",
|
"Current User": "Current User",
|
||||||
"Daily": "Daily"
|
"Daily": "Daily",
|
||||||
|
"Monthly": "Monthly"
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,5 +25,6 @@
|
||||||
"Slot": "슬롯배팅리스트",
|
"Slot": "슬롯배팅리스트",
|
||||||
"Current User": "현재접속자 & 쪽지전송",
|
"Current User": "현재접속자 & 쪽지전송",
|
||||||
"Basic-Setting": "사이트 기본설정",
|
"Basic-Setting": "사이트 기본설정",
|
||||||
"Daily": "일일현황"
|
"Daily": "일일현황",
|
||||||
|
"Monthly": "월 현황"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user