Commit 7e38208a by s_guodong

异常对账单查询页面

parent 60e3de3c
...@@ -7,7 +7,29 @@ export default { ...@@ -7,7 +7,29 @@ export default {
mixins: [exportExcel], mixins: [exportExcel],
methods: { methods: {
async handleSearch() { async handleSearch() {
this.load = true;
// TODO rewrite url
let rtnmsg = await Api.post("/frontend/smtent/sel", {
...this.model,
pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize,
});
if (rtnmsg.respCode == SUCCESS) {
this.load = false;
let list = rtnmsg.data.smtp.smtsup.smtsub.msmlst;
this.stmData.data = list;
this.pagination = {
pageNum: rtnmsg.data.pageNum || 1,
pageSize: rtnmsg.data.pageSize || 10,
total: parseInt(rtnmsg.data.total),
};
} else {
this.$notify.error({
title: this.$t("financing.错误"),
message: this.$t("financing.服务请求失败!"),
});
}
this.load = false;
}, },
async handleReset() { async handleReset() {
let resetModel = new Smtame().data let resetModel = new Smtame().data
......
...@@ -149,93 +149,113 @@ export default { ...@@ -149,93 +149,113 @@ export default {
stmData: { stmData: {
columns: [ columns: [
{ {
label: "起息日", label: "错误类型",
prop: "valdat", prop: "errmsg",
width: "120px" width: "120px"
}, },
{ {
label: "20域编号", label: "收报日期",
prop: "ownref", prop: "recdat",
width: "120px" width: "120px"
}, },
{ {
label: "21域名编号", label: "起息日期",
prop: "othref", prop: "valdat",
width: "120px" width: "120px"
}, },
{ {
label: "币种", label: "账户行",
prop: "cur", prop: "chnnam",
width: "80px" width: "80px"
}, },
{ {
label: "金额", label: "账户行BIC",
prop: "amt", prop: "bic",
width: "120px" width: "120px"
}, },
{ {
label: "账号", label: "账号",
prop: "act", prop: "acc",
width: "120px" width: "120px"
}, },
{ {
label: "费用明细", label: "币种",
prop: "dtlchg", prop: "cur",
width: "120px" width: "120px"
}, },
{ {
label: "报文类型", label: "对账单参考号",
prop: "subtyp", prop: "ref",
width: "120px" width: "120px"
}, },
{ {
label: "行内系统", label: "对账单编号",
prop: "chnipt", prop: "smtno",
width: "120px" width: "120px"
}, },
{ {
label: "处理状态", label: "期初金额",
prop: "sta", prop: "begamt",
width: "120px" width: "120px"
}, },
{ {
label: "账户行BIC(53域)", label: "期末金额",
prop: "t53bic", prop: "endamt",
width: "150px" width: "150px"
}, },
{ {
label: "账户行BIC(54域)", label: "期末可用金额",
prop: "t54bic", prop: "endvalamt",
width: "150px" width: "150px"
}, },
{ {
label: "发报行BIC", label: "对账单类型",
prop: "sndbic", prop: "typ",
width: "150px" width: "150px"
}, },
{ {
label: "收报行BIC", label: "页数",
prop: "rcvbic", prop: "pag",
width: "150px" width: "150px"
}, },
{ {
label: "报文标准", label: "明细条数",
prop: "msgtyp", prop: "dtl",
width: "150px" width: "150px"
}, },
{ {
label: "GPI标识", label: "发报行BIC",
prop: "gpi", prop: "sndbic",
width: "120px" width: "120px"
}, },
{ {
label: "子系统", label: "异常信息",
prop: "", prop: "excmsg",
width: "120px" width: "120px"
}, },
{ {
label: "处理时间", label: "收报行BIC",
prop: "sttdattim", prop: "rcvbic",
width: "170px"
},
{
label: "异常对账单参考号",
prop: "othref",
width: "170px"
},
{
label: "异常接收日期",
prop: "gendat",
width: "170px"
},
{
label: "异常对账单账号",
prop: "act",
width: "170px"
},
{
label: "异常对账单类型",
prop: "subtyp",
width: "170px" width: "170px"
}, },
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment