시스템관리 - 권한관리, 고객관리 - 청약고객관리/회원관리 추가

This commit is contained in:
kimre
2022-06-09 21:36:05 +09:00
parent b832e1a0be
commit 940707deaa
113 changed files with 9134 additions and 2100 deletions

View File

@@ -49,6 +49,13 @@
//import * as utils from '@/common/utils';
export default {
name: 'Params',
props: {
userId: {
type: String,
default : ''
}
},
data: function() {
return {
errors: [],
@@ -116,6 +123,7 @@
// 2차 인증번호 요청
authNum(){
var vm = this;
let userId = vm.$route.params.userId;
if(!this.isLogin){
vm.$store.commit("login/isLogin", false);
vm.$store.commit("login/isAuthChk", false);
@@ -127,7 +135,7 @@
return false;
}
var params = {
"oprtrId": this.userId,
"oprtrId": userId,
"hpNo": this.mdn,
"isLogin" : this.isLogin
}
@@ -156,6 +164,7 @@
// 2차 인증 확인
ajaxAuth: function(){
var vm = this;
let userId = vm.$route.params.userId;
if (!vm.formCheck()){
alert(vm.errors[0]);
return false;
@@ -168,7 +177,7 @@
var params = {
"oprtrId": this.userId,
"oprtrId": userId,
"hpNo": this.mdn,
"chrVal": this.confirmNum,
"isLogin": this.isLogin,