chore: change inquiry api url
This commit is contained in:
parent
a23c4cdfd9
commit
de42153955
@ -9,7 +9,8 @@ NEXT_PUBLIC_QSP_API_URL=http://121.168.9.37:8080
|
||||
# NEXT_PUBLIC_QSP_API_URL=https://jp-dev.qsalesplatform.com
|
||||
|
||||
#1:1문의 api
|
||||
NEXT_PUBLIC_INQUIRY_API_URL=https://jp-dev.qsalesplatform.com
|
||||
# NEXT_PUBLIC_INQUIRY_API_URL=https://jp-dev.qsalesplatform.com
|
||||
NEXT_PUBLIC_INQUIRY_API_URL=http://1.248.227.176:8120
|
||||
|
||||
EMAIL_TITLE_PREFIX=(System Test)
|
||||
|
||||
|
||||
@ -9,7 +9,8 @@ NEXT_PUBLIC_QSP_API_URL=http://1.248.227.176:8120
|
||||
# NEXT_PUBLIC_QSP_API_URL=https://jp-dev.qsalesplatform.com
|
||||
|
||||
#1:1문의 api
|
||||
NEXT_PUBLIC_INQUIRY_API_URL=https://jp-dev.qsalesplatform.com
|
||||
# NEXT_PUBLIC_INQUIRY_API_URL=https://jp-dev.qsalesplatform.com
|
||||
NEXT_PUBLIC_INQUIRY_API_URL=http://1.248.227.176:8120
|
||||
|
||||
EMAIL_TITLE_PREFIX=
|
||||
|
||||
|
||||
@ -15,6 +15,8 @@ export default function Detail() {
|
||||
|
||||
const { session } = useSessionStore()
|
||||
|
||||
const isBuilderOrPartner = session?.role === 'Builder' || session?.role === 'Partner'
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="inquiry-frame">
|
||||
@ -43,11 +45,11 @@ export default function Detail() {
|
||||
</tr>
|
||||
<tr>
|
||||
<th>販売店</th>
|
||||
<td>{inquiryDetail?.storeNm}</td>
|
||||
<td>{isBuilderOrPartner ? '-' : inquiryDetail?.storeNm}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>E-mail</th>
|
||||
<td>{inquiryDetail?.regEmail}</td>
|
||||
<td>{inquiryDetail?.regEmail ? inquiryDetail?.regEmail : '-'}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>名前</th>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user