Commit 43a8b8e6 by sunxi

修改显示等问题

parent 273d9cb0
...@@ -12420,28 +12420,7 @@ const CodeTable = { ...@@ -12420,28 +12420,7 @@ const CodeTable = {
{ label: "金融机构代码", value: "14" }, { label: "金融机构代码", value: "14" },
{ label: "其他", value: "99" }, { label: "其他", value: "99" },
], ],
stacod: [
{ label: "等待自动清分", value: "A" },
{ label: "等待手工清分", value: "X" },
{ label: "等待发送", value: "W" },
{ label: "等待交换", value: "M" },
{ label: "疑似黑名单", value: "B" },
{ label: "黑名单忽略", value: "F" },
{ label: "退回报文编辑", value: "C" },
{ label: "报文编辑丢弃", value: "G" },
{ label: "待报文复核", value: "V" },
{ label: "报文等待放行", value: "L" },
{ label: "挂账状态", value: "H" },
{ label: "已处理", value: "D" },
{ label: "废弃", value: "Q" },
{ label: "已拒绝", value: "1" },
{ label: "已排队", value: "2" },
{ label: "已清算", value: "3" },
{ label: "已退回", value: "4" },
{ label: "发送异常", value: "E" },
{ label: "无需复核", value: "O" },
{ label: "待退报复核", value: "T" },
],
cpsfiltyp: [ cpsfiltyp: [
{ label: "公共参数数据文件", value: "9" }, { label: "公共参数数据文件", value: "9" },
{ label: "公共参数数据变更信息文件", value: "10" }, { label: "公共参数数据变更信息文件", value: "10" },
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<c-button class="medium_bcs" size="medium" style="margin-left: 0" type="primary" @click="handleList"> <c-button class="medium_bcs" size="medium" style="margin-left: 0" type="primary" @click="handleList">
历史记录 历史记录
</c-button> </c-button>
<p style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;" v-html="model.msgdtll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;">{{model.msgdtll}}</pre>
<el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true" <el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true"
title="历史记录" destroy-on-close width="50%" @close="visible = false"> title="历史记录" destroy-on-close width="50%" @close="visible = false">
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<c-button class="medium_bcs" size="medium" style="margin-left: 40px" type="primary" @click="handleReSkip"> <c-button class="medium_bcs" size="medium" style="margin-left: 40px" type="primary" @click="handleReSkip">
取消忽略 取消忽略
</c-button> </c-button>
<p style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;" v-html="model.msgdtll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;">{{model.msgdtll}}</pre>
<el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true" <el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true"
title="历史记录" destroy-on-close width="50%" @close="visible = false"> title="历史记录" destroy-on-close width="50%" @close="visible = false">
...@@ -37,12 +37,12 @@ ...@@ -37,12 +37,12 @@
</el-table-column> </el-table-column>
<el-table-column prop="prvsta" label="处理前状态" width="150"> <el-table-column prop="prvsta" label="处理前状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.prvsta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.prvsta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sta" label="处理状态" width="150"> <el-table-column prop="sta" label="处理状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.sta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="txt" label="备注"> <el-table-column prop="txt" label="备注">
...@@ -121,7 +121,7 @@ export default { ...@@ -121,7 +121,7 @@ export default {
let params = { let params = {
mpsinr: this.$route.query.mpsinr || "", mpsinr: this.$route.query.mpsinr || "",
} }
const rtnmsg = await Api.post(`/${this.moduleRouter()}/${this.trnName}/msghis`, params); const rtnmsg = await Api.post(`/${this.moduleRouter()}/msgdtl/msghis`, params);
if (rtnmsg.respCode === SUCCESS) { if (rtnmsg.respCode === SUCCESS) {
this.visible = true this.visible = true
this.model.mdtp.mdtmod.mpelst = rtnmsg.data this.model.mdtp.mdtmod.mpelst = rtnmsg.data
......
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
rules: Check, rules: Check,
codes: { codes: {
chncod: CodeTable.chncod, chncod: CodeTable.chncod,
stacod: CodeTable.stacod,
clrsys: CodeTable.clrsys, clrsys: CodeTable.clrsys,
gpicod: CodeTable.gpicod, gpicod: CodeTable.gpicod,
msgsta: CodeTable.msgsta, msgsta: CodeTable.msgsta,
......
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
丢弃 丢弃
</c-button> </c-button>
<div style="width: 100%;height: calc(100% - 50px); display: flex;align-item: center;justify-content: space-between;"> <div style="width: 100%;height: calc(100% - 50px); display: flex;align-item: center;justify-content: space-between;">
<p style="margin-top: 20px;border: 1px solid #333333;width: 49%;height: 100%;overflow: auto;" v-html="model.msgdtll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;width: 49%;height: 100%;overflow: auto;" >{{model.msgdtll}}</pre>
<p style="margin-top: 20px;border: 1px solid #333333;width: 49%;height: 100%;overflow: auto;" v-html="model.msgdtlll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;width: 49%;height: 100%;overflow: auto;" >{{model.msgdtlll}}</pre>
</div> </div>
<el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true" <el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true"
...@@ -34,12 +34,12 @@ ...@@ -34,12 +34,12 @@
</el-table-column> </el-table-column>
<el-table-column prop="prvsta" label="处理前状态" width="150"> <el-table-column prop="prvsta" label="处理前状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.prvsta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.prvsta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sta" label="处理状态" width="150"> <el-table-column prop="sta" label="处理状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.sta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="txt" label="备注"> <el-table-column prop="txt" label="备注">
...@@ -102,7 +102,7 @@ export default { ...@@ -102,7 +102,7 @@ export default {
let params = { let params = {
mpsinr: this.$route.query.mpsinr || "", mpsinr: this.$route.query.mpsinr || "",
} }
const rtnmsg = await Api.post(`/${this.moduleRouter()}/${this.trnName}/msghis`, params); const rtnmsg = await Api.post(`/${this.moduleRouter()}/msgdtl/msghis`, params);
if (rtnmsg.respCode === SUCCESS) { if (rtnmsg.respCode === SUCCESS) {
this.visible = true this.visible = true
this.model.mdtp.mdtmod.mpelst = rtnmsg.data this.model.mdtp.mdtmod.mpelst = rtnmsg.data
......
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
rules: Check, rules: Check,
codes: { codes: {
chncod: CodeTable.chncod, chncod: CodeTable.chncod,
stacod: CodeTable.stacod,
clrsys: CodeTable.clrsys, clrsys: CodeTable.clrsys,
gpicod: CodeTable.gpicod, gpicod: CodeTable.gpicod,
msgsta: CodeTable.msgsta, msgsta: CodeTable.msgsta,
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
丢弃 丢弃
</c-button> --> </c-button> -->
<p style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;" v-html="model.msgdtll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;">{{model.msgdtll}}</pre>
<el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true" <el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true"
title="历史记录" destroy-on-close width="50%" @close="visible = false"> title="历史记录" destroy-on-close width="50%" @close="visible = false">
...@@ -32,12 +32,12 @@ ...@@ -32,12 +32,12 @@
</el-table-column> </el-table-column>
<el-table-column prop="prvsta" label="处理前状态" width="150"> <el-table-column prop="prvsta" label="处理前状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.prvsta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.prvsta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sta" label="处理状态" width="150"> <el-table-column prop="sta" label="处理状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.sta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="txt" label="备注"> <el-table-column prop="txt" label="备注">
...@@ -100,7 +100,7 @@ export default { ...@@ -100,7 +100,7 @@ export default {
let params = { let params = {
mpsinr: this.$route.query.mpsinr || "", mpsinr: this.$route.query.mpsinr || "",
} }
const rtnmsg = await Api.post(`/${this.moduleRouter()}/${this.trnName}/msghis`, params); const rtnmsg = await Api.post(`/${this.moduleRouter()}/msgdtl/msghis`, params);
if (rtnmsg.respCode === SUCCESS) { if (rtnmsg.respCode === SUCCESS) {
this.visible = true this.visible = true
this.model.mdtp.mdtmod.mpelst = rtnmsg.data this.model.mdtp.mdtmod.mpelst = rtnmsg.data
......
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
rules: Check, rules: Check,
codes: { codes: {
chncod: CodeTable.chncod, chncod: CodeTable.chncod,
stacod: CodeTable.stacod,
clrsys: CodeTable.clrsys, clrsys: CodeTable.clrsys,
gpicod: CodeTable.gpicod, gpicod: CodeTable.gpicod,
msgsta: CodeTable.msgsta, msgsta: CodeTable.msgsta,
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<c-button class="medium_bcs" size="medium" style="margin-left: 40px" type="primary" @click="handleReject"> <c-button class="medium_bcs" size="medium" style="margin-left: 40px" type="primary" @click="handleReject">
丢弃 丢弃
</c-button> </c-button>
<p style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;" v-html="model.msgdtll"></p> <pre style="margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;">{{model.msgdtll}}</pre>
<el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true" <el-dialog v-if="visible" v-dialogDrag :visible="visible" :modal-append-to-body="false" :close-on-click-modal="true"
title="历史记录" destroy-on-close width="50%" @close="visible = false"> title="历史记录" destroy-on-close width="50%" @close="visible = false">
...@@ -31,12 +31,12 @@ ...@@ -31,12 +31,12 @@
</el-table-column> </el-table-column>
<el-table-column prop="prvsta" label="处理前状态" width="150"> <el-table-column prop="prvsta" label="处理前状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.prvsta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.prvsta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="sta" label="处理状态" width="150"> <el-table-column prop="sta" label="处理状态" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<c-select-value-to-label v-model="scope.row.sta" :code="codes.msgsta"></c-select-value-to-label> <c-select-value-to-label v-model="scope.row.sta" :code="codes.stacod"></c-select-value-to-label>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="txt" label="备注"> <el-table-column prop="txt" label="备注">
...@@ -99,7 +99,7 @@ export default { ...@@ -99,7 +99,7 @@ export default {
let params = { let params = {
mpsinr: this.$route.query.mpsinr || "", mpsinr: this.$route.query.mpsinr || "",
} }
const rtnmsg = await Api.post(`/${this.moduleRouter()}/${this.trnName}/msghis`, params); const rtnmsg = await Api.post(`/${this.moduleRouter()}/msgdtl/msghis`, params);
if (rtnmsg.respCode === SUCCESS) { if (rtnmsg.respCode === SUCCESS) {
this.visible = true this.visible = true
this.model.mdtp.mdtmod.mpelst = rtnmsg.data this.model.mdtp.mdtmod.mpelst = rtnmsg.data
......
...@@ -44,6 +44,7 @@ export default { ...@@ -44,6 +44,7 @@ export default {
rules: Check, rules: Check,
codes: { codes: {
chncod: CodeTable.chncod, chncod: CodeTable.chncod,
stacod: CodeTable.stacod,
clrsys: CodeTable.clrsys, clrsys: CodeTable.clrsys,
gpicod: CodeTable.gpicod, gpicod: CodeTable.gpicod,
msgsta: CodeTable.msgsta, msgsta: CodeTable.msgsta,
...@@ -67,7 +68,7 @@ export default { ...@@ -67,7 +68,7 @@ export default {
if (rtnmsg.respCode === SUCCESS) { if (rtnmsg.respCode === SUCCESS) {
this.model.msgdtll = rtnmsg.data this.model.msgdtll = rtnmsg.data
} }
} }
} }
</script> </script>
<style></style> <style></style>
...@@ -27,7 +27,7 @@ export default { ...@@ -27,7 +27,7 @@ export default {
this.load = true; this.load = true;
let rtnmsg = await Api.post("/frontend/msgsel/query", { let rtnmsg = await Api.post("/frontend/msgsel/query", {
...this.model.rcvp, ...this.model.rcvp,
dir: "<", dir: ">",
querytyp: "rcvblk", querytyp: "rcvblk",
pageNum: this.pagination.pageNum, pageNum: this.pagination.pageNum,
pageSize: this.pagination.pageSize, pageSize: this.pagination.pageSize,
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<c-col :span="24"> <c-col :span="24">
<c-col :span="8"> <c-col :span="8">
<el-form-item label="报文标准" prop="msgtyp" style="width: 100%"> <el-form-item label="报文标准" prop="msgtyp" style="width: 100%">
<c-select v-model="model.rcvp.msgtyp" style="width: 100%" placeholder="请选择货押标识" :code="codes.msgtyp3" @change="getSubtyp(model.rcvp.msgtyp, 'rcvp.subtyp')"> <c-select v-model="model.rcvp.msgtyp" style="width: 100%" placeholder="请选择报文标准" :code="codes.msgtyp3" @change="getSubtyp(model.rcvp.msgtyp, 'rcvp.subtyp')">
</c-select> </c-select>
</el-form-item> </el-form-item>
</c-col> </c-col>
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
<div> <div>
<c-col :span="24"> <c-col :span="24">
<el-tabs v-model="activeTab" class="y-tabs"> <el-tabs v-model="activeTab" class="y-tabs">
<el-tab-pane label="报查询" name="sb"> <el-tab-pane label="报查询" name="sb">
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" <el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
@row-dblclick="dbClickRow" @row-dblclick="dbClickRow"
......
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