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
f77c41c7
authored
2020-11-27 10:29:48 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat(lpb):批量前增加选择户提示
1 parent
d5e04be9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
5 deletions
src/views/zrz/lpb/bjlp/index.vue
src/views/zrz/lpb/bjlp/index.vue
View file @
f77c41c
...
...
@@ -34,28 +34,28 @@
class=
"radioBtn"
label=
"3"
border
@
click=
"
plhVisible = true
"
@
click=
"
openPl('h')
"
>
批量户
</el-button
>
<el-button
class=
"radioBtn"
label=
"4"
border
@
click=
"plcVisible
= true
"
@
click=
"plcVisible"
>
批量层
</el-button
>
<el-button
class=
"radioBtn"
label=
"5"
border
@
click=
"
plShVisible = true
"
@
click=
"
openPl('sh')
"
>
批量室号
</el-button
>
<el-button
class=
"radioBtn"
label=
"6"
border
@
click=
"
plzlVisible = true
"
@
click=
"
openPl('zl')
"
>
批量坐落
</el-button
>
<el-button
class=
"radioBtn"
label=
"7"
border
@
click=
"addBdcdyh"
...
...
@@ -258,6 +258,7 @@
</
template
>
<
script
>
import
{
Message
}
from
"element-ui"
import
HCxlz
from
"./../../../../components/hCxlz/hCxlz"
;
import
PlC
from
"./../../../../components/plc/plC"
;
import
PlSh
from
"./../../../../components/plsh/plSh"
;
...
...
@@ -289,7 +290,7 @@ export default {
props
:
{},
data
()
{
return
{
bsms
:
[
"123"
,
"321"
,
"231"
],
bsms
:
[],
hbsm
:
""
,
dialogVisible
:
false
,
plcVisible
:
false
,
...
...
@@ -391,6 +392,25 @@ export default {
},
100
);
},
methods
:
{
openPl
(
val
){
if
(
this
.
bsms
.
length
<=
0
)
{
Message
.
warning
(
"请选择操作户"
)
return
}
switch
(
val
)
{
case
'h'
:
this
.
plhVisible
=
true
;
break
;
case
'zl'
:
this
.
plzlVisible
=
true
;
break
;
case
'sh'
:
this
.
plShVisible
=
true
;
break
;
default
:
break
;
}
},
lodding
(){
let
zrzbsm
=
this
.
$store
.
state
.
zrzbsm
;
this
.
$refs
.
lpbContent
.
getLpb
(
zrzbsm
);
...
...
Please
register
or
sign in
to post a comment