75 lines
3.2 KiB
HTML
75 lines
3.2 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<title>正常巡视照片上传</title>
|
|||
|
|
<script src="../../../js/public/token.js"></script>
|
|||
|
|
<script src="../../../js/public/public.js"></script>
|
|||
|
|
<script src="../../../js/public/public_utils.js"></script>
|
|||
|
|
<script src="../../../js/public/aescbc.js"></script>
|
|||
|
|
<script src="../../../plugs/jquery/jquery-3.6.0.min.js"></script>
|
|||
|
|
<script src="../../../plugs/layui-v2.9.2/layui/layui.js"></script>
|
|||
|
|
<link href="../../../plugs/layui-v2.9.2/layui/css/layui.css" rel="stylesheet">
|
|||
|
|
<script src="../../../util/Interceptor.js"></script>
|
|||
|
|
<script src="../../../js/wireManager/viewResult/normalInspectionUpload.js"></script>
|
|||
|
|
<style>
|
|||
|
|
.layui-form input[type=checkbox], .layui-form input[type=radio], .layui-form select {
|
|||
|
|
display: none !important ;
|
|||
|
|
}
|
|||
|
|
button{
|
|||
|
|
margin-left: 73.5%;
|
|||
|
|
margin-top: 4%;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="layui-upload-drag" style="display: block;" id="ID-upload-demo-drag">
|
|||
|
|
<form class="layui-form" onsubmit="return false">
|
|||
|
|
<div class="form-group" style="margin-bottom: 1%;">
|
|||
|
|
<div class="layui-inline" style="display: flex;">
|
|||
|
|
<div class="layui-input-inline" style="display: flex;justify-content: center;align-items: center;">
|
|||
|
|
<span>上传到工程:</span>
|
|||
|
|
<select id="proId" name="proId" class="layui-select" lay-verify="required">
|
|||
|
|
<option value="" selected>请选择</option>
|
|||
|
|
</select>
|
|||
|
|
</div>
|
|||
|
|
<div class="layui-input-inline" style="display: flex;justify-content: center;align-items: center;">
|
|||
|
|
<span style="width: 190px;">选择日期:</span>
|
|||
|
|
<input type="text" class="layui-input" id="dataTime" placeholder="yyyy-MM-dd">
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</form>
|
|||
|
|
<div id="ID-upload-demo-files" style="border: 1px dashed #E4E4E4;">
|
|||
|
|
<i class="layui-icon layui-icon-upload"></i>
|
|||
|
|
|
|||
|
|
<div style="margin-top: 3%;color: #F56C6C;">照片批量上传注意事项:</div>
|
|||
|
|
<div style="margin-top: 1.5%;color: #F56C6C;">1.照片命名必须与线路工程下杆塔名称一致;</div>
|
|||
|
|
<div style="margin-top: 1.5%;color: #F56C6C;">2.仅支持批量导入人员管辖范围内的杆塔照片。</div>
|
|||
|
|
<div style="margin-top: 1.5%;">将图片拖到此处或点击选择,按住Ctrl可同时多选,单次最多可选50张</div>
|
|||
|
|
<div style="margin-top: 1.5%;margin-bottom: 3%">仅支持上传jpg/png格式文件,单个文件不限大小</div>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
<div class="layui-upload-list">
|
|||
|
|
<table class="layui-table">
|
|||
|
|
<colgroup>
|
|||
|
|
<col style="min-width: 100px;">
|
|||
|
|
<col width="150">
|
|||
|
|
<col width="260">
|
|||
|
|
<col width="150">
|
|||
|
|
</colgroup>
|
|||
|
|
<thead>
|
|||
|
|
<th>文件名</th>
|
|||
|
|
<th>大小</th>
|
|||
|
|
<th>上传进度</th>
|
|||
|
|
<th>操作</th>
|
|||
|
|
</thead>
|
|||
|
|
<tbody id="ID-upload-demo-files-list"></tbody>
|
|||
|
|
</table>
|
|||
|
|
</div>
|
|||
|
|
<div style="color:#F56C6C;text-align: center;">上传过程中请不要删除原始图片</div>
|
|||
|
|
<button type="button" class="layui-btn" onclick="addFile()">开始上传</button>
|
|||
|
|
</div>
|
|||
|
|
</body>
|
|||
|
|
</html>
|