Commit 3144e30c by niewei

oftopn及oftsel查询界面调整

parent 967913b4
No related merge requests found
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -30,15 +30,15 @@ export default {
...this.model.oftp.rel,
pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize,
rsptims: moment(rsptims).format("YYYY-MM-DD"),
rsptime: moment(rsptime).format("YYYY-MM-DD"),
rsptims: rsptims ? moment(rsptims).format("YYYY-MM-DD") + ' 00:00:00' : "",
rsptime: moment(rsptime).format("YYYY-MM-DD") + ' 23:59:59',
});
if (rtnmsg.respCode == SUCCESS) {
this.load = false;
this.stmData.data = [];
const { list } = rtnmsg.data;
const { codes: { kpasta, sta, stacod, offsta } } = this;
const { codes: { kpasta, zfqzsta, stacod, offsta } } = this;
list.forEach(v => {
for (let i in kpasta) {
if (kpasta[i].value == v.typ) {
......@@ -46,9 +46,9 @@ export default {
}
}
for (let i in sta) {
if (sta[i].value == v.sta) {
v.sta = sta[i].label;
for (let i in zfqzsta) {
if (zfqzsta[i].value == v.sta) {
v.sta = zfqzsta[i].label;
}
}
for (let i in stacod) {
......
......@@ -165,12 +165,12 @@ export default {
{
label: "报文种类",
prop: "mty",
width: "120px"
width: "100px"
},
{
label: "收发时间",
prop: "rsptim",
width: "120px"
width: "180px"
},
{
label: "G渠道",
......@@ -215,12 +215,12 @@ export default {
{
label: "20域编号",
prop: "ownref",
width: "120px"
width: "200px"
},
{
label: "21域编号",
prop: "othref",
width: "120px"
width: "200px"
},
{
label: "目标渠道",
......@@ -240,17 +240,17 @@ export default {
{
label: "发报行BIC",
prop: "sedbak",
width: "120px"
width: "150px"
},
{
label: "收报行BIC",
prop: "revbak",
width: "120px"
width: "150px"
},
{
label: "账户行BIC",
prop: "actbic",
width: "120px"
width: "150px"
},
{
label: "勾销标识",
......
......@@ -29,15 +29,15 @@ export default {
...this.model.oftp.rel,
pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize,
rsptims: moment(rsptims).format("YYYY-MM-DD"),
rsptime: moment(rsptime).format("YYYY-MM-DD"),
rsptims: rsptims ? moment(rsptims).format("YYYY-MM-DD") + ' 00:00:00' : "",
rsptime: moment(rsptime).format("YYYY-MM-DD") + ' 23:59:59',
});
if (rtnmsg.respCode == SUCCESS) {
this.load = false;
this.stmData.data = [];
const { list } = rtnmsg.data;
const { codes: { kpasta, sta, stacod, offsta } } = this;
const { codes: { kpasta, zfqzsta, stacod, offsta } } = this;
list.forEach(v => {
for (let i in kpasta) {
if (kpasta[i].value == v.typ) {
......@@ -45,9 +45,9 @@ export default {
}
}
for (let i in sta) {
if (sta[i].value == v.sta) {
v.sta = sta[i].label;
for (let i in zfqzsta) {
if (zfqzsta[i].value == v.sta) {
v.sta = zfqzsta[i].label;
}
}
for (let i in stacod) {
......
......@@ -168,7 +168,7 @@ export default {
{
label: "收发时间",
prop: "rsptim",
width: "120px"
width: "180px"
},
{
label: "G渠道",
......@@ -213,12 +213,12 @@ export default {
{
label: "20域编号",
prop: "ownref",
width: "120px"
width: "200px"
},
{
label: "21域编号",
prop: "othref",
width: "120px"
width: "200px"
},
{
label: "目标渠道",
......@@ -238,17 +238,17 @@ export default {
{
label: "发报行BIC",
prop: "sedbak",
width: "120px"
width: "150px"
},
{
label: "收报行BIC",
prop: "rcvbak",
width: "120px"
width: "150px"
},
{
label: "账户行BIC",
prop: "actbic",
width: "120px"
width: "150px"
},
{
label: "勾销标识",
......
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