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
b37f67ac
Commit
b37f67ac
authored
Oct 28, 2024
by
sunxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加页面
parent
b6f2488c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
8 deletions
+27
-8
FTRouter.js
src/page/Frontend/FTRouter.js
+3
-0
Msgdtlp.vue
src/page/Frontend/Msgdtlblk/views/Msgdtlp.vue
+24
-8
No files found.
src/page/Frontend/FTRouter.js
View file @
b37f67ac
...
...
@@ -52,6 +52,9 @@ const BusRouter = [
{
path
:
'sndsel'
,
component
:
()
=>
import
(
"./Sndsel/views"
),
name
:
'Sndsel'
,
meta
:
{
keepAlive
:
true
,
title
:
'发报查询'
,
module
:
'frontend'
}
},
{
path
:
'msgdtl'
,
component
:
()
=>
import
(
"./Msgdtl/views"
),
name
:
'Msgdtl'
,
meta
:
{
keepAlive
:
true
,
title
:
'报文原文展示'
,
module
:
'frontend'
}
},
{
path
:
'msgdtlrsm'
,
component
:
()
=>
import
(
"./Msgdtlrsm/views"
),
name
:
'Msgdtlrsm'
,
meta
:
{
keepAlive
:
true
,
title
:
'报文疑似重复详情页面'
,
module
:
'frontend'
}
},
{
path
:
'Msgdtlsep'
,
component
:
()
=>
import
(
"./Msgdtlsep/views"
),
name
:
'Msgdtlsep'
,
meta
:
{
keepAlive
:
true
,
title
:
'报文失败处理详情页面'
,
module
:
'frontend'
}
},
{
path
:
'Msgdtlrtm'
,
component
:
()
=>
import
(
"./Msgdtlrtm/views"
),
name
:
'Msgdtlrtm'
,
meta
:
{
keepAlive
:
true
,
title
:
'报文人工清分详情页面'
,
module
:
'frontend'
}
},
{
path
:
'Msgdtlblk'
,
component
:
()
=>
import
(
"./Msgdtlblk/views"
),
name
:
'Msgdtlblk'
,
meta
:
{
keepAlive
:
true
,
title
:
'收报灰名单详情页面'
,
module
:
'frontend'
}
},
{
path
:
'sndselcop'
,
component
:
()
=>
import
(
"./Sndselcop/views"
),
name
:
'Sndselcop'
,
meta
:
{
keepAlive
:
true
,
title
:
'发报疑似重复处理'
,
module
:
'frontend'
}
},
{
path
:
'rcvselcop'
,
component
:
()
=>
import
(
"./Rcvselcop/views"
),
name
:
'Rcvselcop'
,
meta
:
{
keepAlive
:
true
,
title
:
'收报疑似重复处理'
,
module
:
'frontend'
}
},
{
path
:
'msgrtm'
,
component
:
()
=>
import
(
"./Msgrtm/views"
),
name
:
'Msgrtm'
,
meta
:
{
keepAlive
:
true
,
title
:
'人工清分'
,
module
:
'frontend'
}
},
...
...
src/page/Frontend/Msgdtlblk/views/Msgdtlp.vue
View file @
b37f67ac
...
...
@@ -6,9 +6,9 @@
<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>
-->
<c-button
class=
"medium_bcs"
size=
"medium"
style=
"margin-left: 40px"
type=
"primary"
@
click=
"handleSkip"
>
忽略
</c-button>
...
...
@@ -78,15 +78,31 @@ 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
:
'放行成功'
})
}
});
},
async
handleSkip
()
{
this
.
$confirm
(
"确定忽略该报文?"
,
"提示"
,
{
confirmButtonText
:
"确认"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
,
}).
then
(
async
()
=>
{
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/rtmp/skip`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
丢弃
成功'
})
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
忽略
成功'
})
}
});
},
async
handleRe
ject
()
{
this
.
$confirm
(
"确定
丢弃
该报文?"
,
"提示"
,
{
async
handleRe
Skip
()
{
this
.
$confirm
(
"确定
取消忽略
该报文?"
,
"提示"
,
{
confirmButtonText
:
"确认"
,
cancelButtonText
:
"取消"
,
type
:
"warning"
,
...
...
@@ -94,9 +110,9 @@ export default {
let
params
=
{
mpsinr
:
this
.
$route
.
query
.
mpsinr
||
""
,
};
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/r
eject
`
,
params
);
const
rtnmsg
=
await
Api
.
post
(
`/
${
this
.
moduleRouter
()}
/msgsel/r
tmp/reskip
`
,
params
);
if
(
rtnmsg
.
respCode
===
SUCCESS
)
{
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
丢弃
成功'
})
this
.
$notify
({
title
:
'成功'
,
type
:
'success'
,
message
:
'
取消忽略
成功'
})
}
});
},
...
...
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