Commit 64df0c8d authored by lshan's avatar lshan

等级修改

parent 36172511
...@@ -159,8 +159,25 @@ export default Vue.extend({ ...@@ -159,8 +159,25 @@ export default Vue.extend({
this.newRole= getUserMsg()?.newRole+'' this.newRole= getUserMsg()?.newRole+''
this.rolePhone=getUserMsg()?.phone+'' this.rolePhone=getUserMsg()?.phone+''
if(this.newRole==='客户经理岗'||this.newRole==='管理岗' ){ if(this.newRole==='客户经理岗'||this.newRole==='管理岗' ){
this.roleLevel=getUserMsg()?.level+'' this.roleLevel=getUserMsg()?.level+''
this.roleLocation=getUserMsg()?.location+'' this.roleLocation=getUserMsg()?.location+''
switch(getUserMsg()?.level) {
case 1:
this.roleLevel='一级分行'
break;
case 2:
this.roleLevel='一级支行'
break;
case 3:
this.roleLevel='二级分行'
break;
case 4:
this.roleLevel='二级支行'
break;
default:
false
}
} }
this.visible = true; this.visible = true;
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment