mirror of https://gitee.com/jeecg/jeecg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
999 B
28 lines
999 B
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%@include file="/context/mytags.jsp"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>文件列表</title>
|
|
<t:base type="jquery,easyui,tools"></t:base>
|
|
</head>
|
|
<body style="overflow-y: hidden" scroll="no">
|
|
<t:formvalid formid="formobj" layout="div" dialog="true" beforeSubmit="upload">
|
|
<fieldset class="step">
|
|
<div class="form">
|
|
<label class="Validform_label">
|
|
文件标题:
|
|
</label>
|
|
<input name="documentTitle" id="documentTitle" datatype="s3-50">
|
|
<span class="Validform_checktip">标题名称在3~50位字符,且不为空</span>
|
|
</div>
|
|
<div class="form">
|
|
<t:upload name="fiels" buttonText="上传文件" uploader="systemController.do?saveFiles" extend="office" id="file_upload" formData="documentTitle"></t:upload>
|
|
</div>
|
|
<div class="form" id="filediv" style="height:50px">
|
|
</div>
|
|
</fieldset>
|
|
</t:formvalid>
|
|
</body>
|
|
</html>
|