103 lines
4.4 KiB
HTML
103 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="../../js/layui-v2.9.2/layui/css/layui.css">
|
|
<link rel="stylesheet" href="../../css/font.css">
|
|
<link rel="stylesheet" href="../../js/public/webuploader/webuploader.min.css">
|
|
<link rel="stylesheet" href="../../js/public/webuploader/bootstrap.min.css">
|
|
<link rel="stylesheet" href="../../css/studyExam/studyTaskForm.css">
|
|
<script src="../../js/public/jquery-3.6.0.js" type="text/javascript"></script>
|
|
<!--拦截及公共ip-->
|
|
<script src="../../js/public/sm3.js" type="text/javascript"></script>
|
|
<script src="../../js/system/IPUtils.js"></script>
|
|
<script src="../../js/system/ajax_intercept.js"></script>
|
|
<script src="../../js/system/public_utils.js"></script>
|
|
<script src="../../js/public/aes.js" type="text/javascript"></script>
|
|
<script src="../../js/public/public.js"></script>
|
|
<!--拦截及公共ip-->
|
|
<script src="../../js/layui-v2.9.2/layui/layui.js"></script>
|
|
<script src="../../js/layui/xm-select.js"></script>
|
|
<script src="../../js/public/commonUtils.js"></script>
|
|
<script src="../../js/public/spark-md5.min.js"></script>
|
|
<script src="../../js/public/webuploader/bootstrap.bundle.min.js"></script>
|
|
<script src="../../js/public/webuploader/webuploader.min.js"></script>
|
|
<title>修改学习任务</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="main-box">
|
|
<form class="layui-form" onclick="return false;" onsubmit="return false;" lay-filter="formInfo">
|
|
<div class="layui-form-item" style="margin-top: 1%;">
|
|
<label class="layui-form-label"><span>学习任务名称</span></label>
|
|
<div class="layui-input-inline">
|
|
<input class="layui-input" data-required name="studyTaskName" autocomplete="off" maxlength="100"
|
|
lay-verify="required">
|
|
</div>
|
|
</div>
|
|
<div class="layui-form-item">
|
|
<label class="layui-form-label"><span>学习对象</span></label>
|
|
<div class="layui-input-inline" id="demo1" data-required>
|
|
</div>
|
|
</div>
|
|
|
|
<button type="submit" id="formSubmit" class="layui-btn" lay-submit="" lay-filter="formData"
|
|
style="display: none;"></button>
|
|
</form>
|
|
<div class="container">
|
|
<table class="upload-table">
|
|
<thead>
|
|
<tr>
|
|
<th width="65%">文件名</th>
|
|
<th width="15%">大小</th>
|
|
<th width="20%">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="fileList2">
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="container">
|
|
<div class="upload-panel">
|
|
<div class="upload-actions">
|
|
<div id="picker" class="btn btn-primary">
|
|
<i class="iconfont icon-add"></i> 选择文件
|
|
</div>
|
|
<button id="startUpload" class="btn btn-success" disabled>
|
|
<i class="iconfont icon-upload"></i> 开始上传
|
|
</button>
|
|
<div id="fileCounter" class="file-counter"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<table class="upload-table">
|
|
<thead>
|
|
<tr>
|
|
<th width="30%">文件名</th>
|
|
<th width="10%">大小</th>
|
|
<th width="30%">上传进度</th>
|
|
<th width="20%">状态</th>
|
|
<th width="10%">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="fileList">
|
|
<tr id="noFiles">
|
|
<td colspan="5" class="no-files">暂无文件,请点击上方按钮添加文件</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="toast" class="toast"></div>
|
|
</div>
|
|
<div class="btn-box layout">
|
|
<button class="layui-btn layui-btn-normal save" onclick="saveData2(0)">暂存</button>
|
|
<button class="layui-btn layui-btn-normal save" onclick="saveData2(1)">直接发布</button>
|
|
<button class="layui-btn layui-btn-primary cancel" onclick="closePage()">取消</button>
|
|
</div>
|
|
</body>
|
|
<script src="../../js/studyExam/studyTaskEditForm.js"></script>
|
|
|
|
</html> |