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
7aa7a422
Commit
7aa7a422
authored
3 years ago
by
吴佳
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2022.04.12 wujia sptrou虚拟机构下拉选修改
parent
009d7b02
master
…
bochk-poc
bochk-poc-1113
development-202206
origin/development-202206
revert-594e4a5c
revert-8c42ad65
revert-d0d76887
settle-test-20230110
No related merge requests found
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
8 deletions
+16
-8
Sptnegp.vue
src/views/Business/Sptrou/Sptnegp.vue
+2
-4
index.vue
src/views/Business/Sptrou/index.vue
+14
-4
No files found.
src/views/Business/Sptrou/Sptnegp.vue
View file @
7aa7a422
...
...
@@ -187,9 +187,8 @@
v-model=
"model.spt.wrkgrp"
style=
"width: 100%"
placeholder=
"请选择WORK GROUP"
:code=
"
codes.ownextkey
"
:code=
"
sptWrkgrp
"
>
</c-select>
</el-form-item>
</c-col>
...
...
@@ -576,8 +575,7 @@ export default {
mixins
:
[
commonProcess
],
data
()
{
return
{
sptWrkgrp
:
[]
};
},
methods
:
{
...
Event
,
...
...
This diff is collapsed.
Click to expand it.
src/views/Business/Sptrou/index.vue
View file @
7aa7a422
...
...
@@ -15,7 +15,7 @@
<!--PD000035 -->
<el-tab-pane
label=
"Pending Item"
name=
"sptnegp"
>
<m-sptnegp
:model=
"model"
:codes=
"codes"
/>
<m-sptnegp
ref=
"sptnegp"
:model=
"model"
:codes=
"codes"
/>
</el-tab-pane>
<!--PD000090 -->
...
...
@@ -109,9 +109,19 @@ export default {
let
rtnmsg
=
await
this
.
init
({})
if
(
rtnmsg
.
respCode
==
SUCCESS
)
{
//TODO 处理数据逻辑
this
.
updateModel
(
rtnmsg
.
data
)
//TODO 处理数据逻辑
this
.
updateModel
(
rtnmsg
.
data
)
const
wrkgrp
=
this
.
codes
.
codeSet
[
'spt.wrkgrp'
]
const
wrkgrpArr
=
[];
for
(
let
i
=
0
;
i
<
wrkgrp
.
length
;
i
++
)
{
const
wrk
=
wrkgrp
[
i
];
const
ss
=
wrk
.
split
(
'
\
t'
)
wrkgrpArr
.
push
({
label
:
ss
[
1
],
value
:
ss
[
0
]
})
}
this
.
$refs
.
sptnegp
.
sptWrkgrp
=
wrkgrpArr
;
}
else
{
...
...
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