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
e2a403c2
authored
2021-01-29 15:02:33 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
户编辑修改
1 parent
940fe3f2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
86 additions
and
6 deletions
src/assets/less/element.less
src/views/zrz/lpb/bjlp/hbj/index.vue
src/views/zrz/lpb/bjlp/hbj/lpb-hbj/index.vue
src/views/zrz/lpb/bjlp/lpbContent/index.vue
src/assets/less/element.less
View file @
e2a403c
...
...
@@ -53,9 +53,9 @@
.el-icon-full-screen{
cursor: pointer;
}
//
.el-dialog__wrapper{
//
overflow: hidden!important;
//
}
.el-dialog__wrapper{
overflow: hidden!important;
}
//table样式
.el-table .even-row {
...
...
src/views/zrz/lpb/bjlp/hbj/index.vue
View file @
e2a403c
This diff is collapsed.
Click to expand it.
src/views/zrz/lpb/bjlp/hbj/lpb-hbj/index.vue
0 → 100644
View file @
e2a403c
<
template
>
<el-tabs
v-model=
"activeName"
@
tab-click=
"handleClick"
>
<el-tab-pane
label=
"户基本信息表"
name=
"hjbxx"
>
<hbj
ref=
"hbj"
:bsm=
"hbsm"
></hbj>
</el-tab-pane>
<el-tab-pane
label=
"登记簿"
name=
"djb"
>
<djb
v-if=
"djbVisible"
:style=
"
{'height' : formHeight+'px'}">
</djb>
</el-tab-pane>
<el-tab-pane
label=
"附件材料"
name=
"fjcl"
>
<fjcl
v-if=
"fjclVisible"
ref=
"fjcl"
:style=
"
{'height' : formHeight+'px'}" :is-disabled="isDisabled">
</fjcl>
</el-tab-pane>
</el-tabs>
</
template
>
<
script
>
import
hbj
from
"../index"
import
djb
from
"../../../../../zd/djb/index"
;
import
fjcl
from
"../../../../../zd/fjcl/fjcl"
import
{
queryStatus
}
from
"@api/search"
export
default
{
name
:
"index"
,
components
:
{
hbj
,
djb
,
fjcl
},
data
()
{
return
{
isDisabled
:
false
,
hbsm
:
this
.
$store
.
state
.
hbsm
,
activeName
:
"hjbxx"
,
djbVisible
:
false
,
fjclVisible
:
false
,
formHeight
:
0
,
}
},
mounted
()
{
this
.
formHeight
=
(
document
.
documentElement
.
clientHeight
||
document
.
body
.
clientHeight
)
-
260
},
methods
:
{
loadingStatus
()
{
debugger
let
bsm
=
this
.
$store
.
state
.
hbsm
;
queryStatus
(
bsm
).
then
(
res
=>
{
if
(
res
.
success
)
{
let
qszt
=
res
.
result
.
qszt
;
this
.
isDisabled
=
+
qszt
!==
0
;
}
})
},
handleClick
(
tab
,
event
)
{
this
.
loadingStatus
()
// console.log(tab, event);
switch
(
tab
.
name
)
{
case
'djb'
:
this
.
djbVisible
=
true
;
break
;
case
'fjcl'
:
this
.
fjclVisible
=
true
;
break
;
default
:
break
;
}
},
},
watch
:
{}
}
</
script
>
<
style
scoped
lang=
"less"
>
.el-tabs
{
/deep/.el-tabs__nav-scroll{
margin-left
:
-35px
;
}
}
</
style
>
src/views/zrz/lpb/bjlp/lpbContent/index.vue
View file @
e2a403c
...
...
@@ -394,7 +394,7 @@ import { getLpb, insertUpDownC, deleteCByBsm } from "@api/lpb";
import
{
hhb
,
hfg
}
from
"@api/h"
;
import
{
Message
}
from
'element-ui'
;
import
{
fwsxbgbl
}
from
"@api/common"
;
import
hbj
from
"../hbj/index"
;
import
hbj
from
"../hbj/
lpb-hbj/
index"
;
export
default
{
name
:
""
,
components
:
{
moveH
,
hbj
,
HCxlz
,
},
...
...
@@ -479,6 +479,7 @@ export default {
this
.
$refs
.
lpbContent
.
clientHeight
-
6
;
},
200
);
window
.
lpbContent
=
this
;
},
methods
:
{
loadingData
(
zrzbsm
,
scyclx
)
{
...
...
@@ -688,10 +689,10 @@ export default {
dbclick
(
bsm
)
{
clearTimeout
(
this
.
time
);
this
.
hbsm
=
bsm
;
this
.
$store
.
state
.
hbsm
=
this
.
data
;
this
.
$store
.
state
.
hbsm
=
bsm
;
this
.
hbjVisible
=
true
;
this
.
$nextTick
(
function
()
{
this
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
this
.
$refs
.
hbj
.
$refs
.
hbj
.
getHInfo
(
this
.
hbsm
);
});
// if (this.isHbfg) {
...
...
@@ -1383,5 +1384,10 @@ export default {
top
:
1px
;
}
}
.hbjDialog
{
/deep/.el-dialog{
margin-top
:
10vh
!important
;
}
}
}
</
style
>
...
...
Please
register
or
sign in
to post a comment