Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pda-ui
Project
Project
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
pda
pda-ui
Commits
c684061b
Commit
c684061b
authored
Jun 26, 2024
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
排班计划->选择工作单元 添加双击某一行关闭弹窗并回显的功能
parent
21230653
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
multi.vue
src/views/mes/cal/team/calTeamSelect/multi.vue
+6
-1
No files found.
src/views/mes/cal/team/calTeamSelect/multi.vue
View file @
c684061b
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
</el-form>
</el-form>
<el-table
v-loading=
"loading"
:data=
"workunitList"
@
selection-change=
"handleSelectionChange"
height=
"600px"
>
<el-table
v-loading=
"loading"
:data=
"workunitList"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"rowClick"
height=
"600px"
>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
type=
"selection"
width=
"55"
align=
"center"
/>
<el-table-column
label=
"工作单元编码"
align=
"center"
prop=
"workunitCode"
/>
<el-table-column
label=
"工作单元编码"
align=
"center"
prop=
"workunitCode"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
/>
<el-table-column
label=
"工作单元名称"
align=
"center"
prop=
"workunitName"
/>
...
@@ -124,6 +124,11 @@ export default {
...
@@ -124,6 +124,11 @@ export default {
},
},
methods
:
{
methods
:
{
rowClick
(
row
)
{
this
.
selectedRows
=
[
row
];
this
.
$emit
(
'onSelected'
,
this
.
selectedRows
);
this
.
showFlag
=
false
;
},
/** 查询工作单元列表 */
/** 查询工作单元列表 */
getList
()
{
getList
()
{
this
.
loading
=
true
;
this
.
loading
=
true
;
...
...
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