This commit is contained in:
이담 정 2022-07-13 10:59:19 +00:00
parent 39510406be
commit a7791e5049
6 changed files with 9 additions and 7 deletions

View File

@ -29,7 +29,7 @@ export class ReportMonthlyMockApi {
// @ Monthlys - GET
// -----------------------------------------------------------------------------------------------------
this._fuseMockApiService
.onGet('api/apps/report/montyly/monthlys', 300)
.onGet('api/apps/report/monthly/monthlys', 300)
.reply(({ request }) => {
// Get available queries
const search = request.params.get('search');

View File

@ -84,7 +84,7 @@ export class DailyService {
.get<{
pagination: DailyPagination;
dailys: Daily[];
}>('api/apps/repoart/daily/dailys', {
}>('api/apps/report/daily/dailys', {
params: {
page: '' + page,
size: '' + size,

View File

@ -10,7 +10,7 @@
<mat-progress-bar [mode]="'indeterminate'"></mat-progress-bar>
</div>
<!-- Title -->
<div class="text-4xl font-extrabold tracking-tight">월현황</div>
<div class="text-4xl font-extrabold tracking-tight"> 현황</div>
<!-- Actions -->
<div class="flex shrink-0 items-center mt-6 sm:mt-0 sm:ml-4">
<!-- Memo -->

View File

@ -61,7 +61,7 @@ export class MonthlyService {
// -----------------------------------------------------------------------------------------------------
/**
* Get Monthlys
* Get monthlys
*
*
* @param page
@ -135,7 +135,7 @@ export class MonthlyService {
take(1),
switchMap((monthlys) =>
this._httpClient
.post<Monthly>('api/apps/report/monthly/product', {})
.post<Monthly>('api/apps/result/monthly/product', {})
.pipe(
map((newMonthly) => {
// Update the monthlys with the new product

View File

@ -24,5 +24,6 @@
"Evolution": "Evolution",
"Slot": "Slot",
"Current User": "Current User",
"Daily": "Daily"
"Daily": "Daily",
"Monthly": "Monthly"
}

View File

@ -25,5 +25,6 @@
"Slot": "슬롯배팅리스트",
"Current User": "현재접속자 & 쪽지전송",
"Basic-Setting": "사이트 기본설정",
"Daily": "일일현황"
"Daily": "일일현황",
"Monthly": "월 현황"
}