【用户角色管理】用户多角色分页展示
2019-04-20 08:53:28来源:博客园 阅读 ()
界面如下,前端layui完成分页,有对应查询,编辑,删除接口
用户多角色分页展示的实现:
mapper.xml文件相关代码(直接在sql语句进行分页查询)
mybatis一对多映射
<resultMap id="userdetailResult" type="com.cc.vo.VUser"> <id property="id" column="id" /> <result property="no" column="no"/> <result property="name" column="name"/> <result property="flag" column="flag"/> <collection property="roles" ofType="com.cc.entity.Role" javaType="java.util.ArrayList"> <id property="id" column="rid"/> <result property="info" column="info"/> </collection> </resultMap> <select id="findAll" parameterType="map" resultMap="userdetailResult"> select u.id,u.no,u.name,r.id rid,r.info,u.flag from (SELECT * from t_user <where> <if test="no != null and no != ''"> and no LIKE CONCAT('%',#{no},'%' ) </if> <if test="flag != null"> and flag = #{flag} </if> </where> limit #{page},#{limit}) u inner join t_userrole ur ON ur.uid=u.id inner join t_role r on r.id=ur.rid ORDER BY u.id ASC </select>
layui对后台传来的的roles集合进行遍历展示职位:
userlimit.html部分代码
{field: 'id', title: '序号', sort: true, fixed: 'left'} , {field: 'no', title: '工号'} , {field: 'name', title: '姓名', sort: true} , {field: 'roles', title: '职位', sort: true, templet:function(info){ var rlist = info.roles; var infos = ""; for(var i = 0; i < rlist.length; i++){ infos = infos + " "+rlist[i].info; } return infos; }}
原文链接:https://www.cnblogs.com/kyliechen/p/10720590.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 数据源管理 | Kafka集群环境搭建,消息存储机制详解 2020-06-11
- SpringBoot + Vue + ElementUI 实现后台管理系统模板 -- 后 2020-06-10
- 数据分析 | 基于智能标签,精准管理数据 2020-05-30
- JSP+SSM+Mysql实现的图书馆预约占座管理系统 2020-05-26
- 架构设计 | 缓存管理模式,监控和内存回收策略 2020-05-26
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash