fix: restore storeNm property in session management and adjust padding in check and radio components for improved layout
This commit is contained in:
parent
98299ffe92
commit
a2a2b2e6fa
@ -29,7 +29,7 @@ export async function POST(request: Request) {
|
|||||||
session.compCd = result.data.data.compCd
|
session.compCd = result.data.data.compCd
|
||||||
session.agencyStoreId = result.data.data.agencyStoreId
|
session.agencyStoreId = result.data.data.agencyStoreId
|
||||||
session.storeId = result.data.data.storeId
|
session.storeId = result.data.data.storeId
|
||||||
// session.storeNm = result.data.data.storeNm
|
session.storeNm = result.data.data.storeNm
|
||||||
session.userId = result.data.data.userId
|
session.userId = result.data.data.userId
|
||||||
session.category = result.data.data.category
|
session.category = result.data.data.category
|
||||||
session.userNm = result.data.data.userNm
|
session.userNm = result.data.data.userNm
|
||||||
|
|||||||
@ -21,7 +21,7 @@ const initialState: InitialState = {
|
|||||||
compCd: null,
|
compCd: null,
|
||||||
agencyStoreId: null,
|
agencyStoreId: null,
|
||||||
storeId: null,
|
storeId: null,
|
||||||
// storeNm: null,
|
storeNm: null,
|
||||||
userId: null,
|
userId: null,
|
||||||
category: null,
|
category: null,
|
||||||
userNm: null,
|
userNm: null,
|
||||||
|
|||||||
@ -31,14 +31,14 @@
|
|||||||
.check-form-box{
|
.check-form-box{
|
||||||
position: relative;
|
position: relative;
|
||||||
label{
|
label{
|
||||||
padding-left: 30px;
|
padding-left: 28px;
|
||||||
&::before{
|
&::before{
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 22px;
|
width: 20px;
|
||||||
height: 22px;
|
height: 20px;
|
||||||
top: -1px;
|
top: 0px;
|
||||||
left: 0;
|
left: 0;
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
border: 1px solid #A8B6C7;
|
border: 1px solid #A8B6C7;
|
||||||
@ -51,9 +51,9 @@
|
|||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 22px;
|
width: 20px;
|
||||||
height: 22px;
|
height: 20px;
|
||||||
top: -1px;
|
top: 0px;
|
||||||
left: 0;
|
left: 0;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
border-color: #fff;
|
border-color: #fff;
|
||||||
@ -69,7 +69,7 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: -1px;
|
top: -1px;
|
||||||
left: 0%;
|
left: -1px;
|
||||||
width: 7px;
|
width: 7px;
|
||||||
height: 9px;
|
height: 9px;
|
||||||
border: 2px solid #fff;
|
border: 2px solid #fff;
|
||||||
@ -89,20 +89,30 @@
|
|||||||
input[type="checkbox"]:disabled + label::after{
|
input[type="checkbox"]:disabled + label::after{
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
&.ch-bld{
|
||||||
|
input[type="checkbox"]:checked + label{
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&.light{
|
||||||
|
label{
|
||||||
|
color: #8595A7;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// radio box
|
// radio box
|
||||||
.radio-form-box{
|
.radio-form-box{
|
||||||
position: relative;
|
position: relative;
|
||||||
label{
|
label{
|
||||||
padding-left: 30px;
|
padding-left: 28px;
|
||||||
&::before{
|
&::before{
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 22px;
|
width: 20px;
|
||||||
height: 22px;
|
height: 20px;
|
||||||
top: -1px;
|
top: 0px;
|
||||||
left: 0;
|
left: 0;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
border: 1px solid #A8B6C7;
|
border: 1px solid #A8B6C7;
|
||||||
@ -119,7 +129,7 @@
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
left: 6px;
|
left: 5px;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|||||||
@ -36,8 +36,84 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 지붕재 적합성 상세
|
// 지붕재 적합성 상세
|
||||||
|
.compliance-check-bx{
|
||||||
|
&.act{
|
||||||
|
.compliance-check-pop-contents{
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.compliance-check-pop-contents{
|
.compliance-check-pop-contents{
|
||||||
padding: 14px;
|
display: none;
|
||||||
|
padding: 14px 14px 10px 14px;
|
||||||
border-top: 1px solid #ECECEC;
|
border-top: 1px solid #ECECEC;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
.check-pop-data-wrap{
|
||||||
|
margin-bottom: 24px;
|
||||||
|
.check-pop-data-tit{
|
||||||
|
position: relative;
|
||||||
|
padding-left: 10px;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
||||||
|
&::before{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 0;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 4px;
|
||||||
|
height: 4px;
|
||||||
|
background-color: #2E3A59;
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.check-pop-data-txt{
|
||||||
|
padding-left: 10px;
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.check-pop-data-table{
|
||||||
|
border-top: 1px solid #2E3A59;
|
||||||
|
&:last-child{
|
||||||
|
.pop-data-table-footer{
|
||||||
|
border-bottom: 1px solid #2E3A59;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pop-data-table-head{
|
||||||
|
@include flex(0px);
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px;
|
||||||
|
border-top: 1px solid #2E3A59;
|
||||||
|
border-bottom: 1px solid #2E3A59;
|
||||||
|
.pop-data-table-head-name{
|
||||||
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
||||||
|
}
|
||||||
|
.pop-data-table-head-icon{
|
||||||
|
margin-left: auto;
|
||||||
|
min-width: 44px;
|
||||||
|
@include flex(0px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.pop-data-table-body{
|
||||||
|
padding: 11px 10px;
|
||||||
|
border-bottom: 1px solid #2E3A59;
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
}
|
||||||
|
.pop-data-table-footer{
|
||||||
|
@include flex(0px);
|
||||||
|
.pop-data-table-footer-unit{
|
||||||
|
flex: 1;
|
||||||
|
padding: 10px;
|
||||||
|
@include defaultFont($font-s-13, $font-w-500, $font-c);
|
||||||
|
border-right: 1px solid #2E3A59;
|
||||||
|
}
|
||||||
|
.pop-data-table-footer-data{
|
||||||
|
flex: none;
|
||||||
|
width: 104px;
|
||||||
|
padding: 10px;
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@ -338,8 +338,34 @@
|
|||||||
position: relative;
|
position: relative;
|
||||||
padding-right: 70px;
|
padding-right: 70px;
|
||||||
.inquiry-item-category{
|
.inquiry-item-category{
|
||||||
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
span{
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
padding: 0 6px;
|
||||||
|
&:first-child{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
&:last-child{
|
||||||
|
padding-right: 0;
|
||||||
|
&::before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&::before{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 0;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 1px;
|
||||||
|
height: 10px;
|
||||||
|
background-color: #A2ABB8;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.inquiry-item-tit{
|
.inquiry-item-tit{
|
||||||
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
||||||
@ -419,8 +445,34 @@
|
|||||||
border-bottom: 1px solid #2E3A59;
|
border-bottom: 1px solid #2E3A59;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
.inquiry-detail-category{
|
.inquiry-detail-category{
|
||||||
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
margin-bottom: 3px;
|
margin-bottom: 3px;
|
||||||
|
span{
|
||||||
|
position: relative;
|
||||||
|
display: block;
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
padding: 0 6px;
|
||||||
|
&:first-child{
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
&:last-child{
|
||||||
|
padding-right: 0;
|
||||||
|
&::before{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&::before{
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
right: 0;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
width: 1px;
|
||||||
|
height: 10px;
|
||||||
|
background-color: #A2ABB8;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.inquiry-detail-tit{
|
.inquiry-detail-tit{
|
||||||
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
@include defaultFont($font-s-15, $font-w-500, $font-c);
|
||||||
@ -434,6 +486,7 @@
|
|||||||
// 1:1 문의 답변
|
// 1:1 문의 답변
|
||||||
.inquiry-answer-wrap{
|
.inquiry-answer-wrap{
|
||||||
margin-top: 24px;
|
margin-top: 24px;
|
||||||
|
|
||||||
}
|
}
|
||||||
.inquiry-answer-header{
|
.inquiry-answer-header{
|
||||||
padding: 20px 0;
|
padding: 20px 0;
|
||||||
@ -447,6 +500,10 @@
|
|||||||
@include defaultFont($font-s-13, $font-w-400, #F86A56);
|
@include defaultFont($font-s-13, $font-w-400, #F86A56);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.inquiry-answer-tit{
|
||||||
|
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
||||||
|
margin-bottom: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
// 비밀번호 변경
|
// 비밀번호 변경
|
||||||
.border-frame{
|
.border-frame{
|
||||||
@ -553,12 +610,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.compliace-nodata{
|
|
||||||
margin-top: 24px;
|
|
||||||
padding: 30px 0;
|
|
||||||
@include defaultFont($font-s-13, $font-w-400, $font-c);
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
.compliace-nosearch{
|
.compliace-nosearch{
|
||||||
padding: 30px 0;
|
padding: 30px 0;
|
||||||
span{
|
span{
|
||||||
@ -567,44 +619,14 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.check-form-box{
|
|
||||||
&.com-tit{
|
|
||||||
label{
|
|
||||||
&:before{
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
input[type="checkbox"]:checked + label{
|
|
||||||
font-weight: 500;
|
|
||||||
&::after{
|
|
||||||
left: -1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
&.com-txt{
|
|
||||||
label{
|
|
||||||
@include defaultFont($font-s-13, $font-w-400, #8595A7);
|
|
||||||
&:before{
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
input[type="checkbox"]:checked + label{
|
|
||||||
&::after{
|
|
||||||
left: -1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.check-item-wrap{
|
.check-item-wrap{
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
.compliance-icon-wrap{
|
.compliance-icon-wrap{
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
min-width: 44px;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -161,6 +161,9 @@ header{
|
|||||||
&.icon02{
|
&.icon02{
|
||||||
background-image: url(/assets/images/layout/side_swiper_icon02.svg)
|
background-image: url(/assets/images/layout/side_swiper_icon02.svg)
|
||||||
}
|
}
|
||||||
|
&.icon03{
|
||||||
|
background-image: url(/assets/images/layout/side_swiper_icon03.svg)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.side-swiper-infor{
|
.side-swiper-infor{
|
||||||
@include defaultFont($font-s-12, $font-w-500, #7896BA);
|
@include defaultFont($font-s-12, $font-w-500, #7896BA);
|
||||||
|
|||||||
@ -22,7 +22,6 @@
|
|||||||
.modal-content{
|
.modal-content{
|
||||||
flex:1;
|
flex:1;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0 16px;
|
|
||||||
background-clip: padding-box;
|
background-clip: padding-box;
|
||||||
background-color: $white-fff;
|
background-color: $white-fff;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
|
|||||||
@ -7,7 +7,7 @@ export interface SessionData {
|
|||||||
compCd: null
|
compCd: null
|
||||||
agencyStoreId: null
|
agencyStoreId: null
|
||||||
storeId: null
|
storeId: null
|
||||||
// storeNm: null
|
storeNm: null
|
||||||
userId: null
|
userId: null
|
||||||
category: null
|
category: null
|
||||||
userNm: null
|
userNm: null
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user