Files
annnj-company 130c1026c4 first commit
2026-04-17 18:29:53 +08:00

47 lines
1.9 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>查档导出</title>
<script type="text/javascript" src='/public/static/js/xlsx.full.min.js'></script>
</head>
<body>
<p style="font-size: 18px;font-weight: bold;color: #FF0000;">{if !$data.flag}错误提示:开始时间不能大于结束时间{/if}</p>
<p style="font-size: 18px;font-weight: bold;">需要导出的记录数:{$data.count}<span style="color: #FF0000;">特别说明导出的数据记录数不能大于200</span></p>
<form action="{:url('admin/bill/index')}">
银行:<select name="bank">
<option value="">请选择银行</option>
{volist name='data.bank_data' id='val'}
<option value="{$val.id}" {if $val.id == $data.bank}selected{/if}>{$val.name}</option>
{/volist}
</select><br/>
<br/>
<div class="layui-form-item">
<label for="location_min" class="layui-form-label"><span class="x-red">*</span>开始时间</label>
<div class="layui-input-inline">
<input type="datetime-local" name="report_start_time" value="{$data.report_start_time}"/>
</div>
</div>
<div class="layui-form-item">
<label for="location_min" class="layui-form-label"><span class="x-red">*</span>结束时间</label>
<div class="layui-input-inline">
<input type="datetime-local" name="report_file_produce_time" value="{$data.report_file_produce_time}"/>
</div>
</div>
<br/>
<input type="submit" value="查询" /> <br/>
<br/>
{if $data.count elt 200}
<a href="{:url('admin/bill/chaDangExport')}?bank={$data.bank}&report_start_time={$data.report_start_time}&report_file_produce_time={$data.report_file_produce_time}">导出</a>
{/if}
</form>
</body>
</html>