|
|
@@ -212,8 +212,8 @@
|
|
|
</main>
|
|
|
<script th:inline="javascript">
|
|
|
/*<![CDATA[*/
|
|
|
- const sEncData = [[${sEncData}]]; //인증 후 해당 페이지로 리다이렉트함
|
|
|
- const authMethod = [[${authMethod}]]; //인증 후 해당 페이지로 리다이렉트함
|
|
|
+ let sEncData = [[${sEncData}]]; //인증 후 해당 페이지로 리다이렉트함
|
|
|
+ let authMethod = [[${authMethod}]]; //인증 후 해당 페이지로 리다이렉트함
|
|
|
|
|
|
let orgCustInfo;
|
|
|
let orgAccountInfo;
|
|
|
@@ -314,7 +314,7 @@
|
|
|
};
|
|
|
|
|
|
var fnUpdateAuthInfoCallback = function (result) {
|
|
|
- if (result.iSsuccess) {
|
|
|
+ if (result.isSuccess) {
|
|
|
fnGetCustInfo();
|
|
|
mcxDialog.alert("본인인증을 통해 정보가 변경 되었습니다.");
|
|
|
return;
|
|
|
@@ -356,7 +356,7 @@
|
|
|
|
|
|
// 수정 버튼
|
|
|
$('#btnConfirm').on('click', function () {
|
|
|
- let custModiFy = $('#custModiFyForm').serializeObject();
|
|
|
+ let custModiFy = $('#custModiFyForm').serializeObject();
|
|
|
let $bankCd = $('#custModiFyForm input[name=bankCd]');
|
|
|
let $accountNo = $('#custModiFyForm input[name=accountNo]');
|
|
|
|
|
|
@@ -496,6 +496,14 @@
|
|
|
cfnOpenCellphoneCertify(_PAGE_MYPAGE_CUSTOMER_MODIFY+'?confirmYn=Y');
|
|
|
});
|
|
|
|
|
|
+ $('#btnCellCertify').on('click', function () {
|
|
|
+ cfnOpenCellphoneCertify(_PAGE_MYPAGE_CUSTOMER_MODIFY+'?confirmYn=Y');
|
|
|
+ });
|
|
|
+
|
|
|
+ $(".btn_back").on("click", function () {
|
|
|
+ console.log("here");
|
|
|
+ cfnGoToPage(_PAGE_MYPAGE_CUSTOMER);
|
|
|
+ });
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
if (!gagajf.isNull(sEncData)) {
|