ComplianceServer/oldcode/Core.Web/Views/MonBalance/RefundRealInfo.cshtml

37 lines
1.3 KiB
Plaintext

@{
ViewBag.Title = "RefundInfo";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<table class="layui-hide" id="tabl1" lay-filter="tabl1"></table>
<script>
layui.use(['table'], function () {
var table = layui.table;
table.render({
id: 'tableMonBalance',//列表别名ID
elem: '#tabl1',//表ID
url: '/MonBalance/RefundRealInfo',
method: 'POST',
where: { year: @Request.QueryString["year"], month: @Request.QueryString["month"], companyCode: '@Request.QueryString["companyCode"]', channel: '@Request.QueryString["channel"]' },
toolbar: true,
defaultToolbar: ['filter', 'exports'],
totalRow: true,
cols: [[
{ type: 'numbers', totalRowText: '合计' }
, { field: 'orderid', title: '订单号' }
, { field: 'refundtypename', title: '支付类型' }
, { field: 'account', title: '退款人账号' }
, { field: 'username', title: '退款人姓名' }
, { field: 'refundprice', title: '退款金额', totalRow: true }
, { field: 'refunddate', title: '退款时间' }
, { field: 'remark', title: '退款说明' }
]]
});
});
</script>