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
279b8d78
Commit
279b8d78
authored
Oct 25, 2024
by
sunxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新按钮功能
parent
f137d446
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
39 additions
and
18 deletions
+39
-18
Msgdtlp.vue
src/page/Frontend/Msgdtlblk/views/Msgdtlp.vue
+6
-0
Msgdtlp.vue
src/page/Frontend/Msgdtlrtm/views/Msgdtlp.vue
+7
-6
Msgdtlp.vue
src/page/Frontend/Msgdtlsep/views/Msgdtlp.vue
+3
-3
Schpnl.vue
src/page/Frontend/Msgrtm/views/Schpnl.vue
+3
-2
Mainp.vue
src/page/Frontend/Msgsep/views/Mainp.vue
+17
-5
Schpnl.vue
src/page/Frontend/Rcvselblk/views/Schpnl.vue
+3
-2
No files found.
src/page/Frontend/Msgdtlblk/views/Msgdtlp.vue
View file @
279b8d78
...
...
@@ -9,6 +9,12 @@
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 40px"
type=
"primary"
@
click=
"handleReject"
>
丢弃
</c-button>
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 40px"
type=
"primary"
@
click=
"handleSkip"
>
忽略
</c-button>
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 40px"
type=
"primary"
@
click=
"handleReSkip"
>
取消忽略
</c-button>
<p
style=
"margin-top: 20px;border: 1px solid #333333;padding-10px;width: 100%;min-height: 500px;"
v-html=
"model.msgdtll"
></p>
<el-dialog
v-if=
"visible"
v-dialogDrag
:visible=
"visible"
:modal-append-to-body=
"false"
:close-on-click-modal=
"true"
...
...
src/page/Frontend/Msgdtlrtm/views/Msgdtlp.vue
View file @
279b8d78
...
...
@@ -4,11 +4,12 @@
历史记录
</c-button>
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 40px"
type=
"primary"
@
click=
"handleCheck"
>
放行
人工清分
</c-button>
<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>
<el-dialog
v-if=
"visible"
v-dialogDrag
:visible=
"visible"
:modal-append-to-body=
"false"
:close-on-click-modal=
"true"
...
...
@@ -64,7 +65,7 @@ export default {
methods
:
{
async
handleCheck
()
{
this
.
$confirm
(
"确定
放行
该报文?"
,
"提示"
,
{
this
.
$confirm
(
"确定
人工清分
该报文?"
,
"提示"
,
{
confirmButtonText
:
"确认"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
,
...
...
@@ -72,9 +73,9 @@ export default {
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
check
`
,
params
);
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
rtmp/sav
`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
丢弃
成功'
})
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
清分
成功'
})
}
});
},
...
...
src/page/Frontend/Msgdtlsep/views/Msgdtlp.vue
View file @
279b8d78
...
...
@@ -72,9 +72,9 @@ export default {
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
check
`
,
params
);
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
sepp/sndagn
`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
丢弃
成功'
})
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
重新发送
成功'
})
}
});
},
...
...
@@ -88,7 +88,7 @@ export default {
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
reject
`
,
params
);
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/
sepp/drp
`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'丢弃成功'
})
}
...
...
src/page/Frontend/Msgrtm/views/Schpnl.vue
View file @
279b8d78
...
...
@@ -146,7 +146,8 @@
<el-tabs
v-model=
"activeTab"
class=
"y-tabs"
>
<el-tab-pane
label=
"发报查询"
name=
"fb"
>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 480px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
...
...
@@ -273,7 +274,7 @@ export default {
{
label
:
"处理时间"
,
prop
:
"sttdattim"
,
width
:
"1
5
0px"
width
:
"1
7
0px"
},
],
data
:
[],
...
...
src/page/Frontend/Msgsep/views/Mainp.vue
View file @
279b8d78
...
...
@@ -146,12 +146,16 @@
<el-tabs
v-model=
"activeTab"
class=
"y-tabs"
>
<el-tab-pane
label=
"报文失败处理"
name=
"fb"
>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
size=
"small"
:border=
"true"
height=
"calc(100vh - 480px)"
:highlight-current-row=
"true"
>
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 480px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
:min-width=
"item.width"
>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
:min-width=
"item.width"
>
<
template
slot-scope=
"scope"
>
<c-select-value-to-label
v-if=
"item.prop == 'sta'"
v-model=
"scope.row.sta"
:code=
"codes.stacod"
></c-select-value-to-label>
<span
v-else
>
{{
scope
.
row
[
item
.
prop
]
}}
</span>
</
template
>
</el-table-column>
</el-table>
...
...
@@ -269,7 +273,7 @@ export default {
{
label
:
"处理时间"
,
prop
:
"sttdattim"
,
width
:
"1
5
0px"
width
:
"1
7
0px"
},
],
data
:
[],
...
...
@@ -294,6 +298,14 @@ export default {
},
methods
:
{
dbClickRow
(
row
)
{
this
.
routerPush
({
path
:
'/business/msgdtlsep'
,
query
:
{
mpsinr
:
row
.
inr
}
})
}
},
mounted
:
function
()
{
},
...
...
src/page/Frontend/Rcvselblk/views/Schpnl.vue
View file @
279b8d78
...
...
@@ -156,7 +156,8 @@
<el-tab-pane
label=
"发报查询"
name=
"sb"
>
<el-table
:data=
"stmData.data"
:columns=
"stmData.columns"
v-loading=
"load"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
size=
"small"
:border=
"true"
height=
"calc(100vh - 420px)"
:highlight-current-row=
"true"
>
@
row-dblclick=
"dbClickRow"
size=
"small"
:border=
"true"
height=
"calc(100vh - 480px)"
:highlight-current-row=
"true"
>
<el-table-column
type=
"selection"
width=
"55"
>
</el-table-column>
<el-table-column
v-for=
"(item, key) in stmData.columns"
:key=
"key"
:label=
"item.label"
:prop=
"item.prop"
...
...
@@ -283,7 +284,7 @@ export default {
{
label
:
"接收时间"
,
prop
:
"rcvdattim"
,
width
:
"1
5
0px"
width
:
"1
7
0px"
},
],
data
:
[],
...
...
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