first commit
This commit is contained in:
47
pgserver/application/admin/view/bill/index.html
Normal file
47
pgserver/application/admin/view/bill/index.html
Normal file
@@ -0,0 +1,47 @@
|
||||
<!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>
|
||||
144
pgserver/application/admin/view/index/edit.html
Normal file
144
pgserver/application/admin/view/index/edit.html
Normal file
@@ -0,0 +1,144 @@
|
||||
<!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='../../static/js/jquery-3.5.1.min.js'></script>-->
|
||||
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.5.1.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form action="{:url('admin/index/updBranchBank')}" method="post" enctype="multipart/form-data">
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center;color: #000088;font-weight: bold;font-size: 20px;">修改支行</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>询价单号:</td>
|
||||
<td><input type="text" name="order_no" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>银行:</td>
|
||||
<td id="bank"><select></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>分行:</td>
|
||||
<td id="sub_bank"><select></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>支行:</td>
|
||||
<td id="branch_bank"><select></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>客户经理:</td>
|
||||
<td id="customer"><select></select></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: right;"><button type="submit">确认修改</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
<script>
|
||||
$(function(){
|
||||
$('#bank select').click(function(){
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url:'{:url("admin/index/reqBankList")}',
|
||||
success: function(data){
|
||||
showResult(data);
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
function showResult(result) {
|
||||
var target = $("#bank");
|
||||
target.html("");
|
||||
var str ="<select name='bank_id'><option>请选择银行</option>";
|
||||
for (var row of result){
|
||||
str +="<option value='" + row.id + "'>" + row.name + "</option>";
|
||||
}
|
||||
str += "</<select>";
|
||||
target.append(str);
|
||||
}
|
||||
|
||||
$('#sub_bank select').click(function(){
|
||||
var bank_id = $('#bank select option:selected') .val();
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url:'{:url("admin/index/getSubBank")}',
|
||||
dataType: 'json',
|
||||
data:{'bank_id':bank_id},
|
||||
success: function(data){
|
||||
showSubResult(data);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function showSubResult(result) {
|
||||
var target = $("#sub_bank");
|
||||
target.html("");
|
||||
var str ="<select name='bank_branch_id'><option>请选择分行</option>";
|
||||
for (var row of result){
|
||||
str +="<option value='" + row.id + "'>" + row.name + "</option>";
|
||||
}
|
||||
str += "</<select>";
|
||||
target.append(str);
|
||||
}
|
||||
|
||||
$('#branch_bank select').click(function(){
|
||||
var bank_branch_id = $('#sub_bank select option:selected') .val();
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url:'{:url("admin/index/getBranchBank")}',
|
||||
dataType: 'json',
|
||||
data:{'bank_branch_id':bank_branch_id},
|
||||
success: function(data){
|
||||
showBranchResult(data);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function showBranchResult(result) {
|
||||
var target = $("#branch_bank");
|
||||
target.html("");
|
||||
var str ="<select name='bank_sub_id'><option>请选择支行</option>";
|
||||
for (var row of result){
|
||||
str +="<option value='" + row.id + "'>" + row.name + "</option>";
|
||||
}
|
||||
str += "</<select>";
|
||||
target.append(str);
|
||||
}
|
||||
|
||||
|
||||
|
||||
$('#customer select').click(function(){
|
||||
var bank_sub_id = $('#branch_bank select option:selected') .val();
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
url:'{:url("admin/index/getCustomer")}',
|
||||
dataType: 'json',
|
||||
data:{'bank_sub_id':bank_sub_id},
|
||||
success: function(data){
|
||||
showCustomerResult(data);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
function showCustomerResult(result) {
|
||||
var target = $("#customer");
|
||||
target.html("");
|
||||
var str ="<select name='bank_customer_mgr_id'><option>请选择客户经理</option>";
|
||||
for (var row of result){
|
||||
str +="<option value='" + row.id + "'>" + row.name + "</option>";
|
||||
}
|
||||
str += "</<select>";
|
||||
target.append(str);
|
||||
}
|
||||
</script>
|
||||
</html>
|
||||
29
pgserver/application/admin/view/index/return.html
Normal file
29
pgserver/application/admin/view/index/return.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!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="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.5.1.min.js"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form action="{:url('admin/index/returnToThird')}" method="post" enctype="multipart/form-data">
|
||||
<table>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: center;color: #000088;font-weight: bold;font-size: 20px;">已完成报告退回三审</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>提取码:</td>
|
||||
<td><input type="text" name="e_case_code" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" style="text-align: right;"><button type="submit">确认</button></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user