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
88112fde
Commit
88112fde
authored
Sep 22, 2022
by
zhujiazhan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sptneg交易增加面板及字段
parent
b5b93db8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
85 additions
and
1 deletions
+85
-1
Event.js
src/model/Sptneg/Event.js
+12
-0
index.js
src/model/Sptneg/index.js
+9
-1
Ordpwfm.vue
src/views/Business/Sptneg/Ordpwfm.vue
+58
-0
index.vue
src/views/Business/Sptneg/index.vue
+6
-0
No files found.
src/model/Sptneg/Event.js
View file @
88112fde
...
...
@@ -74,6 +74,17 @@ export default {
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
async
onClmmodDet
(){
let
rtnmsg
=
await
this
.
executeRule
(
"clmmod.det"
)
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
}
else
{
this
.
$notify
.
error
({
title
:
'错误'
,
message
:
'服务请求失败!'
});
}
},
}
\ No newline at end of file
src/model/Sptneg/index.js
View file @
88112fde
...
...
@@ -50,7 +50,7 @@ export default class Sptneg{
selnam
:
""
,
// name of selected contract .sptp.ordp0.conarg.selnam
},
pta
:{
ptyextkey
:
""
,
// Ordering Party .sptp.ordp0.pta.ptyextkey
ptyextkey
:
""
,
// Ordering Party .sptp.ordp0.pta.ptyextkey
nam
:
""
,
// Externally Visible Name of Address .sptp.ordp0.pta.nam
},
prtpanblk
:
""
,
// XMLPanel prtpan的内置block .sptp.ordp0.prtpanblk
...
...
@@ -99,6 +99,14 @@ export default class Sptneg{
selusb
:
""
,
// Select user branch .usfmod.selusb
},
sptstm
:
""
,
// List of SPT records .sptstm
clmmod
:{
wfs
:{
objtyp
:
""
,
// Table Used to Store Associated Object .clmmod.wfs.objtyp
objinr
:
""
,
// Object .clmmod.wfs.objinr
objnam
:
""
,
// External Readable Object Identification .clmmod.wfs.objnam
},
wfestm
:
""
,
// WFEs for transaction for display .clmmod.wfestm
},
pageId
:
""
// ctx的key
}
}
...
...
src/views/Business/Sptneg/Ordpwfm.vue
0 → 100644
View file @
88112fde
<
template
>
<div
class=
"eibs-tab"
>
<c-col
:span=
"12"
>
<el-form-item
label=
"Table Used to Store Associated Object"
prop=
"clmmod.wfs.objtyp"
>
<c-input
v-model=
"model.clmmod.wfs.objtyp"
maxlength=
"6"
placeholder=
"请输入Table Used to Store Associated Object"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"Object"
prop=
"clmmod.wfs.objinr"
>
<c-input
v-model=
"model.clmmod.wfs.objinr"
maxlength=
"8"
placeholder=
"请输入Object"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"External Readable Object Identification"
prop=
"clmmod.wfs.objnam"
>
<c-input
v-model=
"model.clmmod.wfs.objnam"
maxlength=
"40"
placeholder=
"请输入External Readable Object Identification"
></c-input>
</el-form-item>
</c-col>
<c-col
:span=
"12"
>
<c-button
size=
"small"
type=
"primary"
@
click=
"onClmmodDet"
>
&
Details
</c-button>
</c-col>
<c-col
:span=
"12"
>
<el-form-item
label=
"WFEs for transaction for display"
prop=
"clmmod.wfestm"
>
<c-input
v-model=
"model.clmmod.wfestm"
placeholder=
"请输入WFEs for transaction for display"
></c-input>
</el-form-item>
</c-col>
</div>
</
template
>
<
script
>
import
Api
from
"~/service/Api"
import
commonProcess
from
"~/mixin/commonProcess"
;
import
CodeTable
from
"~/config/CodeTable"
import
Event
from
"~/model/Sptneg/Event"
export
default
{
inject
:
[
'root'
],
props
:[
"model"
,
"codes"
],
mixins
:
[
commonProcess
],
data
(){
return
{
}
},
methods
:{...
Event
},
created
:
function
(){
}
}
</
script
>
<
style
>
</
style
>
src/views/Business/Sptneg/index.vue
View file @
88112fde
...
...
@@ -10,6 +10,10 @@
</c-content>
</el-tab-pane>
<el-tab-pane
label=
"PD000001"
name=
"ordpwfm"
>
<m-ordpwfm
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000049
<el-tab-pane
label=
"PD000049"
name=
"prtswtr"
>
<m-prtswtr
:model=
"model"
:codes=
"codes"
/>
...
...
@@ -96,6 +100,7 @@ import Cmt100pyl from "./Cmt100pyl"
import
Fmtpyl
from
"./Fmtpyl"
import
Cipspan
from
"./Cipspan"
import
Menu
from
"./Menu"
import
Ordpwfm
from
"./Ordpwfm"
export
default
{
...
...
@@ -112,6 +117,7 @@ export default {
"m-fmtpyl"
:
Fmtpyl
,
"m-cipspan"
:
Cipspan
,
"m-menu"
:
Menu
,
"m-ordpwfm"
:
Ordpwfm
,
},
provide
()
{
return
{
...
...
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