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
16d2c3f5
authored
2020-11-25 15:53:57 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
综合查询页面的户编辑页面信息
1 parent
60606235
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
23 additions
and
12 deletions
src/libs/fliter.js
src/views/panel/search/index.vue
src/views/zrz/lpb/bjlp/ch/index.vue
src/views/zrz/lpb/bjlp/hbj/index.vue
src/libs/fliter.js
View file @
16d2c3f
...
...
@@ -30,8 +30,12 @@ let bdcLxArray = [
value
:
"zrz"
,
},
{
label
:
"户"
,
value
:
"h"
,
label
:
"户(预测)"
,
value
:
"h0"
,
},
{
label
:
"户(实测)"
,
value
:
"h1"
,
},
{
label
:
"多幢"
,
...
...
src/views/panel/search/index.vue
View file @
16d2c3f
...
...
@@ -47,7 +47,7 @@
</div>
<el-dialog
title=
"户编辑"
:visible
.
sync=
"hbjVisible"
width=
"50%"
center
>
<hbj
ref=
"hbj"
:bsm=
"hbsm"
></hbj>
<hbj
ref=
"hbj"
:bsm=
"hbsm"
:key=
"hbsm"
></hbj>
<div
class=
"btnGroup"
>
<el-button
type=
"primary"
@
click=
"hbjSaveInfo"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"hbjResetInfo"
>
重置
</el-button>
...
...
@@ -77,6 +77,7 @@
queryData
:
{},
hbjVisible
:
false
,
hbsm
:
''
,
tabPosition
:
"1"
,
//1是实测 0是预测
};
},
created
()
{
...
...
@@ -99,7 +100,9 @@
},
//户保存
hbjSaveInfo
()
{
this
.
$refs
.
hbj
.
onSave
(
this
.
bsms
[
this
.
bsms
.
length
-
1
],
this
.
tabPosition
);
this
.
$refs
.
hbj
.
onSave
(
this
.
hbsm
,
this
.
tabPosition
);
this
.
hbjVisible
=
false
;
this
.
getData
({
pageSize
:
15
});
},
//户编辑表单重置
hbjResetInfo
()
{
...
...
@@ -142,15 +145,19 @@
this
.
$store
.
state
.
dzbsm
=
row
.
glbsm
;
path
=
"/dz"
;
break
;
case
"h"
:
case
"h0"
:
case
"h1"
:
this
.
hbsm
=
row
.
glbsm
;
this
.
hbjVisible
=
true
;
console
.
log
(
this
.
hbsm
);
console
.
log
(
this
.
$refs
);
if
(
row
.
dylx
===
"h0"
){
this
.
tabPosition
=
0
;
}
else
{
this
.
tabPosition
=
1
;
}
this
.
$nextTick
(()
=>
{
console
.
log
(
this
.
$refs
.
hbj
);
setTimeout
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
}
,
10
)
}
);
break
;
default
:
break
;
...
...
src/views/zrz/lpb/bjlp/ch/index.vue
View file @
16d2c3f
...
...
@@ -67,7 +67,7 @@ export default {
zdymc
:
""
,
zdybsm
:
""
,
zrzbsm
:
""
,
syclx
:
"0"
,
s
c
yclx
:
"0"
,
qsc
:
""
,
jsc
:
""
,
hs
:
""
,
...
...
@@ -130,7 +130,7 @@ export default {
ljzbsm
:
""
,
zdybsm
:
""
,
zrzbsm
:
""
,
syclx
:
"0"
,
s
c
yclx
:
"0"
,
qsc
:
""
,
jsc
:
""
,
hs
:
""
,
...
...
src/views/zrz/lpb/bjlp/hbj/index.vue
View file @
16d2c3f
...
...
@@ -764,7 +764,7 @@
},
generatorCode
(){
if
(
(
this
.
form
.
zrzh
!=
null
&&
this
.
form
.
zrzh
!==
''
)
||
(
this
.
form
.
bdcdyh
!=
null
&&
this
.
form
.
bdcdyh
!==
''
)
){
if
(
this
.
form
.
bdcdyh
!=
null
&&
this
.
form
.
bdcdyh
!==
''
){
this
.
open
();
return
;
}
...
...
Please
register
or
sign in
to post a comment