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
d5e04be9
authored
2020-11-27 10:07:37 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(lpb):批量之后加载数据
1 parent
e8d5b821
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
27 additions
and
6 deletions
src/components/plc/plC.vue
src/components/plh/plH.vue
src/components/plsh/plSh.vue
src/components/plzl/plZl.vue
src/views/zrz/lpb/bjlp/index.vue
src/views/zrz/zrzxx/index.vue
src/components/plc/plC.vue
View file @
d5e04be
...
...
@@ -101,12 +101,16 @@
}
},
methods
:
{
lodding
:
function
(){
this
.
$emit
(
'lodding'
)
},
save
:
function
()
{
this
.
qlcData
[
'bsms'
]
=
this
.
bsms
updatePlc
(
this
.
qlcData
).
then
(
res
=>
{
console
.
log
(
res
)
if
(
res
.
success
)
{
Message
.
success
(
"保存成功"
)
this
.
lodding
()
this
.
close
()
}
else
{
Message
.
error
(
res
.
message
)
...
...
src/components/plh/plH.vue
View file @
d5e04be
...
...
@@ -313,6 +313,9 @@
}
},
methods
:
{
lodding
:
function
(){
this
.
$emit
(
'lodding'
)
},
addYtInfo
(){
this
.
form
.
fwytList
.
push
({
glbsm
:
''
,
...
...
@@ -367,6 +370,7 @@
console
.
log
(
this
.
form
)
batchUpdateQjH
(
this
.
form
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
){
this
.
lodding
()
this
.
$message
.
success
(
"保存成功!"
)
}
})
...
...
src/components/plsh/plSh.vue
View file @
d5e04be
...
...
@@ -133,6 +133,9 @@
}
},
methods
:
{
lodding
:
function
(){
this
.
$emit
(
'lodding'
)
},
xl
:
function
()
{
this
.
xlVisible
=
true
;
},
...
...
@@ -157,7 +160,9 @@
console
.
log
(
this
.
plshData
)
updateSh
(
this
.
plshData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
lodding
();
this
.
close
();
}
else
{
Message
.
error
(
res
.
message
)
}
...
...
src/components/plzl/plZl.vue
View file @
d5e04be
...
...
@@ -196,10 +196,14 @@
}
},
methods
:
{
lodding
:
function
(){
this
.
$emit
(
'lodding'
)
},
save
:
function
()
{
this
.
plzlData
[
'bsms'
]
=
this
.
bsms
;
updateZl
(
this
.
plzlData
).
then
(
res
=>
{
if
(
res
.
success
)
{
this
.
lodding
()
this
.
close
();
}
else
{
Message
.
error
(
res
.
message
)
...
...
src/views/zrz/lpb/bjlp/index.vue
View file @
d5e04be
...
...
@@ -236,10 +236,10 @@
</div>
</el-dialog>
<!-- 批量操作弹出框 -->
<pl-h
:plh-visible=
"plhVisible"
:bsms=
"bsms"
@
close=
"plhClose"
></pl-h>
<pl-zl
:pl-zl-visible=
"plzlVisible"
:bsms=
"bsms"
@
close=
"plZlClose"
></pl-zl>
<pl-c
:plc-visible=
"plcVisible"
:bsms=
"bsms"
@
close=
"plcClose"
></pl-c>
<pl-sh
:plShVisible=
"plShVisible"
:bsms=
"bsms"
@
close=
"plshClose"
></pl-sh>
<pl-h
:plh-visible=
"plhVisible"
:bsms=
"bsms"
@
close=
"plhClose"
@
lodding=
"lodding"
></pl-h>
<pl-zl
:pl-zl-visible=
"plzlVisible"
:bsms=
"bsms"
@
close=
"plZlClose"
@
lodding=
"lodding"
></pl-zl>
<pl-c
:plc-visible=
"plcVisible"
:bsms=
"bsms"
@
close=
"plcClose"
@
lodding=
"lodding"
></pl-c>
<pl-sh
:plShVisible=
"plShVisible"
:bsms=
"bsms"
@
close=
"plshClose"
@
lodding=
"lodding"
></pl-sh>
<h-cxlz
:h-cxlz-visble=
"hcxlzVisible"
:bsms=
"bsms"
...
...
@@ -391,6 +391,10 @@ export default {
},
100
);
},
methods
:
{
lodding
(){
let
zrzbsm
=
this
.
$store
.
state
.
zrzbsm
;
this
.
$refs
.
lpbContent
.
getLpb
(
zrzbsm
);
},
hcxlzClose
()
{
this
.
hcxlzVisible
=
false
;
},
...
...
src/views/zrz/zrzxx/index.vue
View file @
d5e04be
...
...
@@ -260,7 +260,7 @@
</el-date-picker>
</td>
</tr>
</table>
<div
style=
"min-height: 40px;text-align: center;margin-top: 10px"
>
<el-button
type=
"success"
@
click=
"onSave"
>
保存
</el-button>
...
...
@@ -631,4 +631,4 @@
}
}
}
</
style
>
\ No newline at end of file
</
style
>
...
...
Please
register
or
sign in
to post a comment