home.jsp 619 Bytes
<%@ page language="java" contentType="text/html; charset=utf-8"
		 pageEncoding="utf-8"%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page isELIgnored ="false" %>
<div class="pl-home-page">
	<div class="center" data-options="region:'center',border:false">
		
	</div>
	<div class="east" data-options="title:'其它用户平台',region:'east',border:false,collapsible:false">
		<c:forEach items="${plats}" var="platform">
			<a options="${platform.id}" class="item">${platform.code}_${platform.name}</a>
		</c:forEach>
	</div>
</div>
<script type="text/javascript">require(["home/index"]);</script>