Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
fea2d3a0
authored
2020-11-25 09:47:44 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
权利人数据双击进行编辑
1 parent
5d989fe5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
src/components/formMenu/qlr.vue
src/components/formMenu/qlr.vue
View file @
fea2d3a
...
...
@@ -31,6 +31,7 @@
:data=
"tableData"
style=
"width: 100%"
@
selection-change=
"handleSelectionChange"
@
row-dblclick=
"rowDbclick"
border
>
<el-table-column
type=
"selection"
width=
"40"
align=
"center"
>
...
...
@@ -453,6 +454,15 @@
});
}
},
//行双击事件
rowDbclick
(
row
){
this
.
dialogVisible
=
true
;
this
.
update
=
true
;
this
.
formData
=
row
;
if
(
row
.
frList
.
length
>
0
){
this
.
formData
.
fr
=
row
.
frList
[
0
];
}
},
//删除行数据
delRow
()
{
if
(
this
.
multipleSelection
.
length
>
0
)
{
...
...
Please
register
or
sign in
to post a comment