Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
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
8e496c57
authored
2023-05-16 10:34:36 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:登记薄详情
1 parent
af53e3d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
14 deletions
src/views/registerBook/zdjbxx.vue
src/views/registerBook/zdjbxx.vue
View file @
8e496c5
...
...
@@ -6,7 +6,7 @@
</tr>
<tr>
<td>
单位
</td>
<td
colspan=
"4"
>
{{
zdjbxx
.
mjdw
}}
</td>
<td
colspan=
"4"
>
{{
zdjbxx
.
mjdw
|
dictionary
(
'A7'
)
}}
</td>
</tr>
<tr>
<td>
不动产类型
</td>
...
...
@@ -39,7 +39,7 @@
</tr>
<tr>
<td>
权利设定方式
</td>
<td>
{{
zdjbxx
.
qlsdfs
|
qlsdfs
}}
</td>
<td>
{{
zdjbxx
.
qlsdfs
|
dictionary
(
'A10'
)
}}
</td>
<td>
容积率
</td>
<td>
{{
zdjbxx
.
rjl
}}
</td>
</tr>
...
...
@@ -172,20 +172,19 @@
zdbhqks
:
[],
propsParam
:
this
.
$attrs
,
showGroup
:
false
,
bdclxList
:
[
""
,
"宗地"
,
"宗海"
,
"自然幢"
,
"多幢"
,
"构筑物"
,
"林权"
,
"户"
]
,
}
;
bdclxList
:
[
""
,
"宗地"
,
"宗海"
,
"自然幢"
,
"多幢"
,
"构筑物"
,
"林权"
,
"户"
]
}
},
filters
:
{
qlsdfs
:
function
(
value
)
{
const
foundItem
=
store
.
getters
.
dictData
[
'A10'
].
find
(
item
=>
item
.
dcode
===
String
(
value
));
dictionary
:
function
(
value
,
param
)
{
const
foundItem
=
store
.
getters
.
dictData
[
param
].
find
(
item
=>
item
.
dcode
===
String
(
value
))
if
(
foundItem
)
{
console
.
log
(
foundItem
.
dname
,
'foundItem.dname'
);
return
foundItem
.
dname
;
return
foundItem
.
dname
}
}
},
created
()
{
this
.
loadData
()
;
this
.
loadData
()
},
methods
:
{
loadData
()
{
...
...
@@ -197,12 +196,11 @@
this
.
showGroup
=
true
;
}
}
})
;
}
,
}
,
}
;
})
}
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
"~@/styles/tablecss.scss"
;
</
style
>
...
...
Please
register
or
sign in
to post a comment