소스 검색

优化代码

RuoYi 9 달 전
부모
커밋
8eff83e2b4
2개의 변경된 파일4개의 추가작업 그리고 6개의 파일을 삭제
  1. 1 1
      ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml
  2. 3 5
      ruoyi-ui/src/views/system/role/selectUser.vue

+ 1 - 1
ruoyi-system/src/main/resources/mapper/system/SysDictDataMapper.xml

@@ -41,7 +41,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 		order by dict_sort asc
 	</select>
 	
-	<select id="selectDictDataByType" parameterType="SysDictData" resultMap="SysDictDataResult">
+	<select id="selectDictDataByType" parameterType="String" resultMap="SysDictDataResult">
 		<include refid="selectDictDataVo"/>
 		where status = '0' and dict_type = #{dictType} order by dict_sort asc
 	</select>

+ 3 - 5
ruoyi-ui/src/views/system/role/selectUser.vue

@@ -127,11 +127,9 @@ export default {
       }
       authUserSelectAll({ roleId: roleId, userIds: userIds }).then(res => {
         this.$modal.msgSuccess(res.msg);
-        if (res.code === 200) {
-          this.visible = false;
-          this.$emit("ok");
-        }
-      });
+        this.visible = false;
+        this.$emit("ok");
+      }); 
     }
   }
 };