Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
isc-web-vue
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
isc-v3.1-tmp
isc-web-vue
Commits
a2ee07c9
Commit
a2ee07c9
authored
Oct 18, 2024
by
sunxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1018晚实现疑似重复原报文展示
parent
b005996f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
index.js
src/page/Frontend/Msgdtlrsm/model/index.js
+1
-0
Msgdtlp.vue
src/page/Frontend/Msgdtlrsm/views/Msgdtlp.vue
+1
-1
index.vue
src/page/Frontend/Msgdtlrsm/views/index.vue
+7
-3
No files found.
src/page/Frontend/Msgdtlrsm/model/index.js
View file @
a2ee07c9
...
...
@@ -4,6 +4,7 @@ export default class Msgdtlrsm {
constructor
()
{
this
.
data
=
{
msgdtll
:
''
,
msgdtlll
:
''
,
mdtp
:
{
mdtmod
:
{
mpelst
:
[],
// .mdtp.mdtmod.mpelst
...
...
src/page/Frontend/Msgdtlrsm/views/Msgdtlp.vue
View file @
a2ee07c9
...
...
@@ -13,7 +13,7 @@
返回
</c-button>
<p
style=
"margin-top: 20px;margin-left: 0;border: 1px solid #333333;padding-10px;width: 40%;min-height: 500px;"
v-html=
"model.msgdtll"
></p>
<p
style=
"margin-top: 20px;margin-left:
0
;border: 1px solid #333333;padding-10px;width: 40%;min-height: 500px;"
v-html=
"model.msgdtlll"
></p>
<p
style=
"margin-top: 20px;margin-left:
60%
;border: 1px solid #333333;padding-10px;width: 40%;min-height: 500px;"
v-html=
"model.msgdtlll"
></p>
<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%"
>
...
...
src/page/Frontend/Msgdtlrsm/views/index.vue
View file @
a2ee07c9
...
...
@@ -39,7 +39,7 @@ export default {
data
()
{
return
{
tabVal
:
"msgdtlp"
,
trnName
:
"msgdtl"
,
trnName
:
"msgdtl
rsm
"
,
model
:
new
Msgdtlrsm
().
data
,
rules
:
Check
,
codes
:
{
...
...
@@ -59,14 +59,18 @@ export default {
}
},
created
:
async
function
()
{
console
.
log
(
"进入msgdtl交易"
);
console
.
log
(
"进入msgdtl
rsm
交易"
);
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/
${
this
.
trnName
}
/init`
,
params
);
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/
msgdtl
/init`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
model
.
msgdtll
=
rtnmsg
.
data
}
const
rtnmsgrsm
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgdtl/rsm`
,
params
);
if
(
rtnmsgrsm
.
respCode
===
SUCCESS
)
{
this
.
model
.
msgdtlll
=
rtnmsgrsm
.
data
}
}
}
</
script
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment