|
|
@@ -98,7 +98,7 @@
|
|
|
<td>
|
|
|
<div class="form_field">
|
|
|
<div class="input_wrap">
|
|
|
- <input type="text" id="email" name="email" class="form_control"/>
|
|
|
+ <input type="text" id="email" name="email" data-valid-type="email" class="form_control"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
@@ -235,6 +235,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+<script th:src="@{'/biz/customer.js?v=' + ${#calendars.format(#calendars.createNow(), 'yyyyMMddHHmmss')}}" src="/biz/customer.js"></script>
|
|
|
<script th:inline="javascript">
|
|
|
/*<![CDATA[*/
|
|
|
let orgCustInfo;
|
|
|
@@ -393,6 +394,17 @@
|
|
|
$('#custModiFyForm input[name=email]').focus();
|
|
|
}
|
|
|
});
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!fnCheckValidationEmail(custModiFy.email)) {
|
|
|
+ mcxDialog.alertC('이메일 형식에 맞게 입력해주세요.',{
|
|
|
+ sureBtnText: "확인",
|
|
|
+ sureBtnClick: function() {
|
|
|
+ $('#custModiFyForm input[name=email]').focus();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ return;
|
|
|
}
|
|
|
|
|
|
if (orgCustInfo.email !== custModiFy.email) {
|