Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
V
vue-gjjs
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
fukai
vue-gjjs
Commits
360936ad
Commit
360936ad
authored
Jan 12, 2022
by
liuxin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待复核详情暂存
parent
1d5b4c68
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
7 deletions
+18
-7
Event.js
src/model/Trnrel/Event.js
+6
-6
InftrnpsDetail.vue
src/views/Business/Trnrel/InftrnpsDetail.vue
+12
-1
No files found.
src/model/Trnrel/Event.js
View file @
360936ad
...
...
@@ -368,12 +368,12 @@ export default {
onSeainf
()
{
},
display
(
index
,
row
)
{
const
d
=
this
.
stmData
.
data
[
index
]
const
ds
=
d
.
split
(
"
\
t"
)
let
viewurl
=
"/#/display/"
+
ds
[
'10'
].
toLowerCase
()
+
"?trn="
+
ds
[
'1'
]
window
.
open
(
viewurl
,
'newwindow'
,
'height=1200,width=900,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
},
//
display(index, row) {
//
const d = this.stmData.data[index]
//
const ds = d.split("\t")
//
let viewurl = "/#/display/" + ds['10'].toLowerCase() + "?trn=" + ds['1']
//
window.open(viewurl, 'newwindow', 'height=1200,width=900,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no');
//
},
async
handleSearch
()
{
const
that
=
this
.
root
;
// if (this.model.searchAllUsers) {
...
...
src/views/Business/Trnrel/InftrnpsDetail.vue
View file @
360936ad
...
...
@@ -32,7 +32,7 @@
</el-form-item>
</c-col>
<c-col
:span=
"10"
style=
"text-align:right"
>
<c-button
size=
"small"
type=
"primary"
style=
"margin-left:0"
>
交易快照
</c-button>
<c-button
size=
"small"
type=
"primary"
style=
"margin-left:0"
@
click=
"display"
>
交易快照
</c-button>
<c-button
size=
"small"
type=
"primary"
style=
"margin-left:0"
>
智能提示
</c-button>
<c-button
size=
"small"
@
click=
"exit"
type=
"primary"
style=
"margin-left:0"
>
返回
</c-button>
</c-col>
...
...
@@ -470,6 +470,17 @@ export default {
this
.
$store
.
dispatch
(
"TagsView/delView"
,
this
.
$route
)
this
.
$router
.
history
.
push
(
"/taskList"
);
},
display
()
{
debugger
const
inr
=
this
.
model
.
trn
.
inr
;
Api
.
post
(
"getTrnNameByInr"
,
{
inr
:
inr
}).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
const
trnName
=
res
.
data
.
toLowerCase
();
let
viewurl
=
"/#/display/"
+
trnName
+
"?trn="
+
inr
window
.
open
(
viewurl
,
'newwindow'
,
'height=1500,width=1200,top=100,left=100,toolbar=no,resizable=no,menubar=no,location=no, status=no'
);
}
});
},
...
Event
}
}
...
...
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