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
zhouqian
vue-gjjs
Commits
a274fe29
Commit
a274fe29
authored
Jan 11, 2022
by
liushikai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待经办详情
parent
b5c0d7fa
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
9 deletions
+22
-9
index.js
src/config/CodeTable/index.js
+3
-0
Event.js
src/model/Sptsel/Event.js
+16
-6
BusRouter.js
src/views/Business/BusRouter.js
+2
-2
Menu.vue
src/views/Business/Sptsel/Menu.vue
+1
-1
Sptpopup.vue
src/views/Business/Sptsel/Sptpopup.vue
+0
-0
No files found.
src/config/CodeTable/index.js
View file @
a274fe29
...
...
@@ -3246,6 +3246,9 @@ const CodeTable = {
{
label
:
"Waiting for SRVCOM"
,
value
:
"R"
},
{
label
:
"Waiting for ReDo in SPTREL"
,
value
:
"S"
},
],
frm
:
[
{
label
:
"Advising / Confirming"
,
value
:
"LETOPN"
},
],
hndtyp
:
[
{
label
:
"Receive to issue"
,
value
:
"FR"
},
{
label
:
"Transfer"
,
value
:
"OT"
},
...
...
src/model/Sptsel/Event.js
View file @
a274fe29
...
...
@@ -53,17 +53,27 @@ export default {
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onDetails
()
{
this
.
$router
.
push
({
path
:
"business/sptpopup"
,
query
:
{
inr
:
'111'
}});
this
.
detailDialog
=
true
;
let
rtnmsg
=
await
this
.
executeRule
(
"details"
)
async
onDetails
(
idx
,
row
)
{
let
viewurl
=
"business/sptpopup"
;
const
selIds
=
[
idx
+
1
];
const
selDst
=
"sptstm"
;
let
params
=
{
selIds
,
selDst
};
this
.
executeRule
(
"sptstm,butspt"
,
params
).
then
((
res
)
=>
{
if
(
res
.
respCode
==
SUCCESS
)
{
Utils
.
copyValueFromVO
(
this
.
model
,
res
.
data
);
sessionStorage
.
setItem
(
'Sptpopup'
,
JSON
.
stringify
(
this
.
model
));
this
.
$router
.
push
({
path
:
viewurl
,
query
:
{}});
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
})
/* let rtnmsg = await this.executeRule("details")
if (rtnmsg.respCode == SUCCESS) {
//TODO 处理数据逻辑
}
else {
this.$notify.error({ title: '错误', message: '服务请求失败!' });
}
}
*/
},
async
continueEdit
(
row
)
{
//let rtnmsg = await Api.post("getPendingData",{params:{'selsptinr':row[0]}})
...
...
src/views/Business/BusRouter.js
View file @
a274fe29
...
...
@@ -103,8 +103,8 @@ import Sptpopup from "./Sptsel/Sptpopup"
* 带有name的才会被添加进顶部的标签页里
*/
const
BusRouter
=
[
{
path
:
'inftrnpsDetail'
,
component
:
InftrnpsDetail
,
name
:
'InftrnpsDetail'
,
meta
:
{
title
:
'详情'
}
},
{
path
:
'sptpopup'
,
component
:
Sptpopup
,
name
:
'Sptpopup'
,
meta
:
{
title
:
'详情'
}
},
//
{ path: 'inftrnpsDetail', component: InftrnpsDetail, name: 'InftrnpsDetail', meta: { title: '详情' } },
{
path
:
'sptpopup'
,
component
:
Sptpopup
,
name
:
'Sptpopup'
,
meta
:
{
title
:
'
待经办
详情'
}
},
{
path
:
'trnfndsDetail'
,
component
:
TrnfndsDetail
,
name
:
'TrnfndsDetail'
,
meta
:
{
title
:
'已完成详情'
}
},
{
path
:
'inftrnpsDetail'
,
component
:
InftrnpsDetail
,
name
:
'InftrnpsDetail'
,
meta
:
{
title
:
'待复核详情'
}
},
{
path
:
'cltdav'
,
component
:
Cltdav
,
name
:
'Cltdav'
,
meta
:
{
title
:
'打包托收开立'
}
},
...
...
src/views/Business/Sptsel/Menu.vue
View file @
a274fe29
...
...
@@ -311,7 +311,7 @@
></c-col>
-->
</
template
>
<
template
slot-scope=
"scope"
>
<c-button
style=
"margin-left: 0"
size=
"small"
@
click=
"onDetails"
<c-button
style=
"margin-left: 0"
size=
"small"
@
click=
"onDetails
(scope.$index,scope.row)
"
>
详情
</c-button>
<c-button
...
...
src/views/Business/Sptsel/Sptpopup.vue
View file @
a274fe29
This diff is collapsed.
Click to expand it.
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