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
e476c783
Commit
e476c783
authored
Oct 24, 2024
by
李少勇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改mt报文组件
parent
295731c7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
4 deletions
+25
-4
MessageView.vue
src/components/business/docpan/views/MessageView.vue
+11
-1
Ovwp.vue
src/page/Frontend/Qrtmgd/views/Ovwp.vue
+13
-2
index.vue
src/page/Frontend/Qrtmgd/views/index.vue
+1
-1
No files found.
src/components/business/docpan/views/MessageView.vue
View file @
e476c783
<
template
>
<div>
<pre>
{{
mtDocs
}}
</pre>
<el-dialog
:fullscreen=
"isShowFull"
:modal-append-to-body=
"false"
:show-close=
"false"
:visible
.
sync=
"previewVisible"
@
close=
"handleClosePreview"
center
class=
"preview"
destroy-on-close
ref=
"dialog"
title=
"预览"
v-dialogDrag
v-if=
"previewVisible"
width=
"70%"
>
<div
class=
"preview-title-wrap"
slot=
"title"
>
<div
class=
"preview-title"
>
预览
</div>
...
...
@@ -102,6 +103,7 @@ export default {
viewPdfUrl
:
""
,
isShowFull
:
false
,
smhOwnref
:
""
,
mtDocs
:
''
};
},
computed
:
{
...
...
@@ -615,7 +617,15 @@ export default {
}
}
},
async
getMtDcos
()
{
let
params
=
{
msginr
:
this
.
$route
.
query
.
msginr
}
let
res
=
await
Api
.
post
(
`/public/quesel/showDocs`
,
params
);
if
(
res
.
respCode
===
SUCCESS
)
{
this
.
mtDocs
=
res
.
data
.
data
;
}
}
}
};
</
script
>
...
...
src/page/Frontend/Qrtmgd/views/Ovwp.vue
View file @
e476c783
...
...
@@ -3,7 +3,8 @@
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 0"
type=
"primary"
@
click=
"showCaseInfo"
>
CASE信息
</c-button>
<p
style=
"margin-top: 20px;border: 1px solid #333333;width: 100%;height: calc(100% - 60px);overflow: auto;"
v-html=
"model.qrtp.mdtmod.msgdtl"
></p>
<message-view
ref=
"messageView"
></message-view>
<!--
<p
style=
"margin-top: 20px;border: 1px solid #333333;width: 100%;height: calc(100% - 60px);overflow: auto;"
v-html=
"model.qrtp.mdtmod.msgdtl"
></p>
-->
<el-dialog
v-if=
"visible"
v-dialogDrag
:visible=
"visible"
:modal-append-to-body=
"false"
:close-on-click-modal=
"true"
title=
"CASE详细信息展示"
destroy-on-close
width=
"50%"
@
close=
"visible = false"
>
...
...
@@ -213,10 +214,14 @@
<
script
>
import
Api
from
"~/service/Api"
import
Event
from
"../event"
import
MessageView
from
"~/components/business/docpan/views/MessageView"
;
export
default
{
inject
:
[
'root'
],
props
:
[
"model"
,
"codes"
],
mixins
:
[
Event
],
components
:
{
MessageView
},
data
()
{
return
{
visible
:
false
,
...
...
@@ -238,9 +243,15 @@ export default {
this
.
visible
=
true
this
.
model
.
qrtp
.
roflst
=
rtnmsg
.
data
}
},
getMsgDlt
()
{
this
.
$nextTick
(()
=>
{
this
.
$refs
.
messageView
.
getMtDcos
();
})
}
},
created
:
function
()
{
mounted
()
{
this
.
getMsgDlt
()
}
}
</
script
>
...
...
src/page/Frontend/Qrtmgd/views/index.vue
View file @
e476c783
...
...
@@ -67,7 +67,7 @@ export default {
},
},
};
this
.
init
(
params
);
//
this.init(params);
}
}
</
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