출금관리 오타 수정
This commit is contained in:
parent
1426cb91bb
commit
374e98d0c2
|
@ -23,6 +23,7 @@ import { ShortcutsMockApi } from 'app/mock-api/common/shortcuts/api';
|
|||
import { TasksMockApi } from 'app/mock-api/apps/tasks/api';
|
||||
import { UserMockApi } from 'app/mock-api/common/user/api';
|
||||
import { BankDepositMockApi } from './apps/bank/deposit/api';
|
||||
import { BankWithdrawMockApi } from './apps/bank/withdraw/api';
|
||||
import { GamePowerballMockApi } from './apps/game/powerball/api';
|
||||
import { GameCasinoMockApi } from './apps/game/casino/api';
|
||||
|
||||
|
@ -52,6 +53,7 @@ export const mockApiServices = [
|
|||
TasksMockApi,
|
||||
UserMockApi,
|
||||
BankDepositMockApi,
|
||||
BankWithdrawMockApi,
|
||||
GamePowerballMockApi,
|
||||
GameCasinoMockApi,
|
||||
];
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
<mat-select placeholder="내용">
|
||||
<mat-option value="">카지노콤프</mat-option>
|
||||
<mat-option value="">슬롯콤프</mat-option>
|
||||
<mat-option value="">베팅콤프</mat-option>
|
||||
<mat-option value="">배팅콤프</mat-option>
|
||||
<mat-option value="">첫충콤프</mat-option>
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
|
@ -123,7 +123,7 @@
|
|||
class="hidden sm:block"
|
||||
[mat-sort-header]="'bettingInfomation'"
|
||||
>
|
||||
베팅정보
|
||||
배팅정보
|
||||
</div>
|
||||
<div class="hidden sm:block" [mat-sort-header]="'delete'">
|
||||
삭제
|
||||
|
@ -227,7 +227,7 @@
|
|||
<!-- bettingInformation -->
|
||||
<div class="hidden sm:block truncate">
|
||||
<button mat-flat-button [color]="'primary'">
|
||||
베팅리스트
|
||||
배팅리스트
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
export interface Withdraw {
|
||||
rank: string;
|
||||
id: string;
|
||||
nickname: string;
|
||||
exchangeApplication: number;
|
||||
calculateType: string;
|
||||
accountHolder: string;
|
||||
note: string;
|
||||
registrationDate: string;
|
||||
processDate: string;
|
||||
deposit: number;
|
||||
withdraw: number;
|
||||
total: number;
|
||||
highRank: string;
|
||||
state: string;
|
||||
memberInformation: string;
|
||||
bettingInformation: string;
|
||||
delete: string;
|
||||
rank?: string;
|
||||
id?: string;
|
||||
nickname?: string;
|
||||
exchangeApplication?: number;
|
||||
calculateType?: string;
|
||||
accountHolder?: string;
|
||||
note?: string;
|
||||
registrationDate?: string;
|
||||
processDate?: string;
|
||||
deposit?: number;
|
||||
withdraw?: number;
|
||||
total?: number;
|
||||
highRank?: string;
|
||||
state?: string;
|
||||
memberInformation?: string;
|
||||
bettingInformation?: string;
|
||||
delete?: string;
|
||||
}
|
||||
|
|
|
@ -2,14 +2,14 @@ import { Route } from '@angular/router';
|
|||
|
||||
import { ListComponent } from './components/list.component';
|
||||
|
||||
// import { DepositResolver } from './resolvers/deposit.resolver';
|
||||
import { WithdrawsResolver } from './resolvers/withdraw.resolver';
|
||||
|
||||
export const withdrawRoutes: Route[] = [
|
||||
{
|
||||
path: '',
|
||||
component: ListComponent,
|
||||
// resolve: {
|
||||
// deposits: DepositResolver,
|
||||
// },
|
||||
resolve: {
|
||||
withdraws: WithdrawsResolver,
|
||||
},
|
||||
},
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue
Block a user