This commit is contained in:
이담 정 2022-08-04 13:23:03 +00:00
parent 73f369ac42
commit 1af511114c
30 changed files with 41 additions and 41 deletions

View File

@ -25,7 +25,7 @@ import { NoticeOneline } from '../models/notice-oneline';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .notice-oneline-redit-grid {
grid-template-columns: 48px auto 40px; grid-template-columns: 48px auto 40px;
@screen sm { @screen sm {

View File

@ -155,7 +155,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="game-slot-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="slot-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div class="hidden lg:block">상위</div> <div class="hidden lg:block">상위</div>
<div class="hidden lg:block"> <div class="hidden lg:block">
@ -192,7 +192,7 @@
<ng-container *ngIf="slots$ | async as slots"> <ng-container *ngIf="slots$ | async as slots">
<ng-container *ngFor="let slot of slots; trackBy: __trackByFn"> <ng-container *ngFor="let slot of slots; trackBy: __trackByFn">
<div <div
class="game-slot-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="slot-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div class="hidden lg:block"> <div class="hidden lg:block">
{{ slot.highRank }} {{ slot.highRank }}

View File

@ -39,7 +39,7 @@ import { SlotService } from '../services/slot.service';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.game-slot-grid { .slot-grid {
/* 상위 게임 베팅 형식 금액 콤프 롤링 배팅시간*/ /* 상위 게임 베팅 형식 금액 콤프 롤링 배팅시간*/
grid-template-columns: 100px 100px auto 60px 100px 40px 150px 150px; grid-template-columns: 100px 100px auto 60px 100px 40px 150px 150px;

View File

@ -72,7 +72,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="sessionin-overlap-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="duplicated-session-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div class="hidden lg:block">CNT</div> <div class="hidden lg:block">CNT</div>
<div class="hidden lg:block">IP</div> <div class="hidden lg:block">IP</div>
@ -91,7 +91,7 @@
" "
> >
<div <div
class="sessionin-overlap-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="duplicated-session-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<!-- CNT --> <!-- CNT -->
<div class="hidden lg:block"> <div class="hidden lg:block">

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.sessionin-overlap-grid { .duplicated-session-grid {
grid-template-columns: 60px 200px auto; grid-template-columns: 60px 200px auto;
@screen sm { @screen sm {

View File

@ -104,7 +104,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="excel-log-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>번호</div> <div>번호</div>
<div>다운IP</div> <div>다운IP</div>
@ -122,7 +122,7 @@
" "
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="excel-log-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<!-- 번호 --> <!-- 번호 -->
<div class="hidden sm:block truncate"> <div class="hidden sm:block truncate">

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .excel-log-grid {
grid-template-columns: 50px 300px auto 200px; grid-template-columns: 50px 300px auto 200px;
@screen sm { @screen sm {

View File

@ -32,7 +32,7 @@ import { MatTableDataSource } from '@angular/material/table';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .loosing-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -28,7 +28,7 @@ import { LoosingReport } from '../models/loosing-report';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .loosing-view-01-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -28,7 +28,7 @@ import { LoosingReport } from '../models/loosing-report';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .loosing-view-02-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -77,7 +77,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="modification-log-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>일련번호</div> <div>일련번호</div>
<div>아이디</div> <div>아이디</div>
@ -98,7 +98,7 @@
" "
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="modification-log-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div> <div>
{{ modificationLog.idx }} {{ modificationLog.idx }}

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .modification-log-grid {
/* 번호 아이디 등급 변경 관리자등급 관리자아이디 */ /* 번호 아이디 등급 변경 관리자등급 관리자아이디 */
grid-template-columns: 60px 60px 60px auto 60px 60px; grid-template-columns: 60px 60px 60px auto 60px 60px;

View File

@ -90,7 +90,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="money-log-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>날짜</div> <div>날짜</div>
<div> <div>
@ -115,7 +115,7 @@
*ngFor="let moneyLog of moneyLogs; trackBy: __trackByFn" *ngFor="let moneyLog of moneyLogs; trackBy: __trackByFn"
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="money-log-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div>{{ moneyLog.finalSigninDate }}</div> <div>{{ moneyLog.finalSigninDate }}</div>
<div> <div>

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .money-log-grid {
/* 날짜 아이디 내역 금액 메모 배팅번호 */ /* 날짜 아이디 내역 금액 메모 배팅번호 */
grid-template-columns: 100px 100px auto 100px 100px 100px; grid-template-columns: 100px 100px auto 100px 100px 100px;

View File

@ -144,7 +144,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="monthly-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>요율</div> <div>요율</div>
<div>상부</div> <div>상부</div>
@ -176,7 +176,7 @@
*ngFor="let monthly of monthlys; trackBy: __trackByFn" *ngFor="let monthly of monthlys; trackBy: __trackByFn"
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="monthly-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div>요율</div> <div>요율</div>
<div> <div>

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .monthly-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -73,7 +73,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="payment-log-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>번호</div> <div>번호</div>
<div>비고</div> <div>비고</div>
@ -90,7 +90,7 @@
*ngFor="let paymentLog of paymentLogs; trackBy: __trackByFn" *ngFor="let paymentLog of paymentLogs; trackBy: __trackByFn"
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="payment-log-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div> <div>
{{ paymentLog.idx }} {{ paymentLog.idx }}

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .payment-log-grid {
/* 번호 비고 정보 아이디 이전 변동 */ /* 번호 비고 정보 아이디 이전 변동 */
grid-template-columns: 100px 200px auto 100px 100px 100px; grid-template-columns: 100px 200px auto 100px 100px 100px;

View File

@ -102,7 +102,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="statistics-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div>구분</div> <div>구분</div>
<div>이용회원</div> <div>이용회원</div>
@ -119,7 +119,7 @@
*ngFor="let statistics of statistics; trackBy: __trackByFn" *ngFor="let statistics of statistics; trackBy: __trackByFn"
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="statistics-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div>{{ statistics.gameName }}</div> <div>{{ statistics.gameName }}</div>
<div>{{ statistics.casinoUse }}명</div> <div>{{ statistics.casinoUse }}명</div>

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .statistics-grid {
/* 구분 이용 유효 배팅 당첨 취소 */ /* 구분 이용 유효 배팅 당첨 취소 */
grid-template-columns: 100px 100px auto 100px 100px 100px; grid-template-columns: 100px 100px auto 100px 100px 100px;

View File

@ -33,12 +33,12 @@ import { User } from 'app/modules/admin/member/user/models/user';
import { UserService } from 'app/modules/admin/member/user/services/user.service'; import { UserService } from 'app/modules/admin/member/user/services/user.service';
@Component({ @Component({
selector: 'customer-view', selector: 'statistics-view',
templateUrl: './view.component.html', templateUrl: './view.component.html',
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .statistics-view-grid {
grid-template-columns: 48px auto 40px; grid-template-columns: 48px auto 40px;
@screen sm { @screen sm {

View File

@ -143,7 +143,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="inventory-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="today-bet-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8 shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div> <div>
아이디 아이디
@ -183,7 +183,7 @@
*ngFor="let todayBet of todayBets; trackBy: __trackByFn" *ngFor="let todayBet of todayBets; trackBy: __trackByFn"
> >
<div <div
class="inventory-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="today-bet-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<div> <div>
{{ todayBet.signinId }} {{ todayBet.signinId }}

View File

@ -41,7 +41,7 @@ import { Router } from '@angular/router';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .today-bet-grid {
/* 아이디 등급 회원 */ /* 아이디 등급 회원 */
grid-template-columns: 40px auto 30px; grid-template-columns: 40px auto 30px;

View File

@ -104,7 +104,7 @@
<div class="grid"> <div class="grid">
<!-- Header --> <!-- Header -->
<div <div
class="sessionin-info-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5" class="user-session-grid z-10 sticky top-0 grid gap-4 py-4 px-6 md:px-8shadow text-md font-semibold text-secondary bg-gray-50 dark:bg-black dark:bg-opacity-5"
> >
<div class="hidden lg:block">번호</div> <div class="hidden lg:block">번호</div>
<div class="hidden lg:block"> <div class="hidden lg:block">
@ -132,7 +132,7 @@
" "
> >
<div <div
class="sessionin-info-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b" class="user-session-grid grid items-center gap-4 py-3 px-6 md:px-8 border-b"
> >
<!-- 번호 --> <!-- 번호 -->
<div class="hidden lg:block"> <div class="hidden lg:block">

View File

@ -41,7 +41,7 @@ import { MatTableDataSource } from '@angular/material/table';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-basic-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -37,7 +37,7 @@ import { BranchService } from '../services/branch.service';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-branch-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -38,7 +38,7 @@ import { MatSelectChange } from '@angular/material/select';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-evo-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -38,7 +38,7 @@ import { GameService } from '../services/game.service';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-game-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -35,7 +35,7 @@ import { FuseConfirmationService } from '@fuse/services/confirmation';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-indexing-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {

View File

@ -37,7 +37,7 @@ import { LadderService } from '../services/ladder.service';
styles: [ styles: [
/* language=SCSS */ /* language=SCSS */
` `
.inventory-grid { .settings-ladder-grid {
grid-template-columns: 60px auto 40px; grid-template-columns: 60px auto 40px;
@screen sm { @screen sm {