Compare commits
3 Commits
508c06e1cd
...
367a7409ac
| Author | SHA1 | Date | |
|---|---|---|---|
| 367a7409ac | |||
| ac3953bfb0 | |||
| 7163b41e9d |
@ -176,11 +176,11 @@ export default function SurveySaleSubmitPopup() {
|
||||
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 3px;">
|
||||
-販売店名:
|
||||
<span style="color: #417DDC;">
|
||||
${surveyDetail?.store} (${surveyDetail?.storeId ?? ' - '})
|
||||
${surveyDetail?.store ? `${surveyDetail?.store} (${surveyDetail?.storeId ?? ' - '})` : ' - '}
|
||||
</span>
|
||||
</p>
|
||||
<p style="font-size: 13px; font-weight: 400; color: #2e3a59; margin-bottom: 15px;">
|
||||
-施工店名:
|
||||
-施工店名:
|
||||
<span style="color: #417DDC;">${surveyDetail?.constructionPoint ?? ' - '}</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
@ -74,7 +74,7 @@ export default function RoofForm(props: {
|
||||
<div className="data-input-form-tit">電気契約容量</div>
|
||||
{mode === 'READ' && <input type="text" className="input-frame" value={roofInfo?.contractCapacity ?? ''} readOnly={mode === 'READ'} />}
|
||||
{mode !== 'READ' && (
|
||||
<div className="data-input mb5">
|
||||
<div className="data-input mb10">
|
||||
<input
|
||||
type="number"
|
||||
inputMode="numeric"
|
||||
@ -83,7 +83,7 @@ export default function RoofForm(props: {
|
||||
value={roofInfo?.contractCapacity?.split(' ')[0] ?? ''}
|
||||
onChange={(e) => handleNumberInput('contractCapacity', e.target.value)}
|
||||
/>
|
||||
<div className="data-input">
|
||||
<div className="data-input mt10">
|
||||
<select
|
||||
className="select-form"
|
||||
name="contractCapacityUnit"
|
||||
|
||||
@ -146,7 +146,7 @@ export default function Header() {
|
||||
</button>
|
||||
</li>
|
||||
<li className="side-footer-item">
|
||||
<button onClick={() => popupController.setMemberInfomationPopup(true)}>MY ADMIN</button>
|
||||
<button onClick={() => popupController.setMemberInfomationPopup(true)}>MY PAGE</button>
|
||||
</li>
|
||||
<li className="side-footer-item">
|
||||
<button onClick={() => router.push('/')}>HOME</button>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user