mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-07 04:11:27 +09:00
시스템관리 - 권한관리, 고객관리 - 청약고객관리/회원관리 추가
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user