liuxiangqi 1 년 전
부모
커밋
3480e5f0ac
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/views/enterprise/employee/index.vue

+ 2 - 2
src/views/enterprise/employee/index.vue

@@ -326,7 +326,7 @@ export default {
       this.$refs["form"].validate(valid => {
       this.$refs["form"].validate(valid => {
         if (valid) {
         if (valid) {
           if (this.form.userId != undefined) {
           if (this.form.userId != undefined) {
-            updateUserApi(this.form).then(response => {
+            updateUserApi(this.form).then(res => {
               if(res.code == 200) {
               if(res.code == 200) {
                 this.$modal.msgSuccess("修改成功");
                 this.$modal.msgSuccess("修改成功");
                 this.open = false;
                 this.open = false;
@@ -335,7 +335,7 @@ export default {
               
               
             });
             });
           } else {
           } else {
-            addRoleApi(this.form).then(response => {
+            addRoleApi(this.form).then(res => {
               if(res.code == 200) {
               if(res.code == 200) {
                 this.$modal.msgSuccess("新增成功");
                 this.$modal.msgSuccess("新增成功");
                 this.open = false;
                 this.open = false;