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
1eaee4c8
Commit
1eaee4c8
authored
Jan 19, 2022
by
liushikai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
待经办详情
parent
3b2562f8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
9 deletions
+31
-9
index.js
src/config/CodeTable/index.js
+20
-1
Sptpopup.vue
src/views/Business/Sptsel/Sptpopup.vue
+11
-8
No files found.
src/config/CodeTable/index.js
View file @
1eaee4c8
...
@@ -5923,6 +5923,24 @@ const CodeTable = {
...
@@ -5923,6 +5923,24 @@ const CodeTable = {
{
label
:
'automatic'
,
value
:
''
},
{
label
:
'automatic'
,
value
:
''
},
{
label
:
'Selling Rate'
,
value
:
'S'
},
{
label
:
'Selling Rate'
,
value
:
'S'
},
{
label
:
'Buying Rate'
,
value
:
'B'
},
{
label
:
'Buying Rate'
,
value
:
'B'
},
]
],
sptDetSta
:[
{
label
:
'Ord Waiting'
,
value
:
'CRE'
},
{
label
:
'Waiting'
,
value
:
'TRN'
},
{
label
:
'Correction'
,
value
:
'COR'
},
{
label
:
'Delete'
,
value
:
'DEL'
},
{
label
:
'Confirm'
,
value
:
'FIN'
},
{
label
:
'订单取消'
,
value
:
'CAN'
},
{
label
:
'Confirm'
,
value
:
'REL'
},
{
label
:
'ORD Delete'
,
value
:
'DES'
},
{
label
:
'Break'
,
value
:
'BRK'
},
{
label
:
'报文接收'
,
value
:
'INC'
},
{
label
:
'ORD Confirm'
,
value
:
'SPT'
},
{
label
:
'复核'
,
value
:
'SIG'
},
{
label
:
'ORD Break'
,
value
:
'CMB'
},
{
label
:
'总行退回'
,
value
:
'CTR'
},
{
label
:
'ORD Correction'
,
value
:
'CMR'
},
{
label
:
'ReRouting'
,
value
:
'ROU'
},
],
}
}
export
default
CodeTable
;
export
default
CodeTable
;
\ No newline at end of file
src/views/Business/Sptsel/Sptpopup.vue
View file @
1eaee4c8
...
@@ -390,18 +390,19 @@ export default {
...
@@ -390,18 +390,19 @@ export default {
data
()
{
data
()
{
return
{
return
{
model
:
new
Sptsel
().
data
,
model
:
new
Sptsel
().
data
,
codes
:
{
hldflg
:
CodeTable
.
hldflg
,...
CodeTable
},
codes
:{
hldflg
:
CodeTable
.
hldflg
,...
CodeTable
},
trnName
:
"sptsel"
,
trnName
:
"sptsel"
,
stmData2
:{
stmData2
:{
columns
:[
columns
:[
// "7 1 \"Start\" 0",
// "7 1 \"Start\" 0",
{
index
:
7
,
position
:
1
,
width
:
140
,
pattern
:
'timeFormat'
,
label
:
'Start'
},
{
index
:
1
,
position
:
1
,
width
:
140
,
pattern
:
'time'
,
label
:
'Start'
},
"1 2
\"
Type
\"
0"
,
// "2 2 \"Type\" 0",
"8 3
\"
User
\"
0"
,
{
index
:
2
,
position
:
2
,
width
:
'auto'
,
pattern
:
'code'
,
label
:
'Type'
,
code
:
CodeTable
.
sptDetSta
},
"4 4
\"
TRN
\"
0"
,
"3 3
\"
User
\"
auto"
,
"4 4
\"
TRN
\"
auto"
,
// "7 5 \"End\" 0",
// "7 5 \"End\" 0",
{
index
:
7
,
position
:
5
,
width
:
140
,
pattern
:
'timeFormat
'
,
label
:
'End'
},
{
index
:
5
,
position
:
5
,
width
:
140
,
pattern
:
'time
'
,
label
:
'End'
},
"
6 6
\"
Text
\"
0
"
,
"
8 6
\"
Text
\"
auto
"
,
],
],
data
:[],
data
:[],
}
}
...
@@ -414,8 +415,10 @@ export default {
...
@@ -414,8 +415,10 @@ export default {
...
Event
,
...
Event
,
loadData
()
{
loadData
()
{
this
.
model
=
JSON
.
parse
(
sessionStorage
.
getItem
(
"Sptpopup"
));
this
.
model
=
JSON
.
parse
(
sessionStorage
.
getItem
(
"Sptpopup"
));
let
rtnmsg1
=
this
.
executeRule
(
"inc"
)
let
rtnmsg2
=
this
.
executeRule
(
"sptp.butord"
)
this
.
executeRule
(
"sptp.ordp0.butore"
).
then
((
res
)
=>
{
this
.
executeRule
(
"sptp.ordp0.butore"
).
then
((
res
)
=>
{
this
.
stmData2
.
data
=
res
.
data
.
sptstm
.
rows
;
this
.
stmData2
.
data
=
res
.
data
.
vals
.
rows
;
});
});
},
},
...
...
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