update:his账单明细查询页面

This commit is contained in:
Yuan
2025-08-21 10:00:57 +08:00
parent f18ec9ff2e
commit b636852ad7
10 changed files with 128 additions and 106 deletions

View File

@@ -133,31 +133,31 @@
//size:'lg', 默认普通尺寸 sm 小 lg 大
cols: [
[
{field: 'I_JYRQ', align: 'center', title: '交易日期', width: 180, sort: false},
{field: 'I_JYSJ', align: 'center', title: '交易时间', width: 180, sort: false},
{field: 'I_JZRQ', align: 'center', title: '记账日期', width: 180, sort: false},
{field: 'I_YHLSH', align: 'center', title: '银行流水号', width: 120, sort: false},
{field: 'I_SHLSH', align: 'center', title: '商户流水号', width: 120, sort: false},
{field: 'I_DDH', align: 'center', title: '订单号', width: 120, sort: false},
{field: 'I_DDZT', align: 'center', title: '订单状态', width: 120, sort: false},
{field: 'I_FKFZH', align: 'center', title: '付款方账号', width: 120, sort: false},
{field: 'I_FKFHM', align: 'center', title: '付款方户名', width: 120, sort: false},
{field: 'I_DDJE', align: 'center', title: '订单金额', width: 150, sort: false},
{field: 'I_JYJE', align: 'center', title: '交易金额', width: 120, sort: false},
{field: 'I_SXF', align: 'center', title: '手续费', width: 120, sort: false},
{field: 'I_JSJE', align: 'center', title: '结算金额', width: 240, sort: false},
{field: 'I_GTDM', align: 'center', title: '柜台代码', width: 180, sort: false},
{field: 'C_JYRQ', align: 'center', title: '交易日期', width: 180, sort: false},
{field: 'C_JYSJ', align: 'center', title: '交易时间', width: 180, sort: false},
{field: 'C_QSRQ', align: 'center', title: '清算日期', width: 180, sort: false},
{field: 'C_LSH', align: 'center', title: '流水号', width: 120, sort: false},
{field: 'C_SHDDH', align: 'center', title: '商户订单号', width: 120, sort: false},
{field: 'C_YSDDH', align: 'center', title: '银商订单号', width: 120, sort: false},
{field: 'C_JYLX', align: 'center', title: '交易类型', width: 120, sort: false},
{field: 'C_CARD', align: 'center', title: '号', width: 120, sort: false},
{field: 'C_FKH', align: 'center', title: '发卡行', width: 120, sort: false},
{field: 'C_JYJE', align: 'center', title: '交易金额', width: 150, sort: false},
{field: 'C_QSJE', align: 'center', title: '清算金额', width: 120, sort: false},
{field: 'C_SXF', align: 'center', title: '手续费', width: 120, sort: false},
{field: 'C_SJZFJE', align: 'center', title: '实际支付金额', width: 240, sort: false},
{field: 'C_ZDH', align: 'center', title: '终端号', width: 180, sort: false},
{
field: 'I_FXK',
field: 'C_ZFFS',
align: 'center',
title: '发卡行/通道',
title: '支付方式',
width: 120,
sort: false,
templet: function (d) {
let result = "";
for (let i = 0; i < payTypeList.length; i++) {
let obj = payTypeList[i];
if (d.I_FXK === obj.dicvalue) {
if (d.C_ZFFS === obj.dicvalue) {
result = obj.dicname;
break;
}
@@ -165,18 +165,18 @@
return result;
}
},
{field: 'I_ZFKZ', align: 'center', title: '卡', width: 120, sort: false},
{field: 'C_KLX', align: 'center', title: '卡类型', width: 120, sort: false},
{
field: 'I_JYLX',
field: 'C_JYLX',
align: 'center',
title: '交易类型',
width: 100,
sort: false,
templet: function (d) {
return d.I_JYLX === '1' ? '消费' : '消费撤销';
return d.C_JYLX === '1' ? '消费' : '消费撤销';
}
},
{field: 'I_QS', align: 'center', title: '分期期数', width: 120, sort: false},
{field: 'C_FQQS', align: 'center', title: '分期期数', width: 120, sort: false},
]
],
data: []
@@ -244,7 +244,7 @@
let url = "/thirdDetail/exportThirdDetail";
let param = {};
param.payType = $("#searchPayType").val();
param.c_zffs = $("#c_zffs").val();
param.likeFiled = $("#likeFiled").val();
let date = $("#searchDate").val();
if (date !== '') {