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
99629e02
authored
2021-02-01 10:49:18 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
楼盘表缺失项
1 parent
61212483
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
44 additions
and
5 deletions
src/api/lpb.js
src/views/zrz/index.vue
src/views/zrz/lpb/bjlp/index.vue
src/api/lpb.js
View file @
99629e0
...
...
@@ -109,6 +109,18 @@ export function getLpbFwytAndQlxz (data) {
})
}
/**
* 楼盘表 获取缺失项数据
* zrzbsm 自然幢标识码 ,
* scyclx 实测预测类型 0预测,1实测
*/
export
function
getLpbQsxtj
(
data
)
{
return
request
({
url
:
'/fw/lpb/getLpbQsxtj?zrzbsm='
+
data
.
zrzbsm
+
'&scyclx='
+
data
.
scyclx
,
method
:
'get'
,
data
:
data
})
}
/**
* 楼盘表 添加层
// "cbsm": "63147d2d9766db01ead0cd53f23de908",//层标识码
// "hcount": 3,//添加户数
...
...
src/views/zrz/index.vue
View file @
99629e0
...
...
@@ -61,7 +61,7 @@ export default {
},
created
()
{},
mounted
()
{
this
.
$store
.
state
.
contentWidth
=
this
.
$refs
.
lpb
.
offsetWidth
-
44
;
//
this.$store.state.contentWidth = this.$refs.lpb.offsetWidth - 44;
},
computed
:
{},
watch
:
{},
...
...
src/views/zrz/lpb/bjlp/index.vue
View file @
99629e0
...
...
@@ -255,9 +255,10 @@
<tr>
<th>
数据缺失项
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in
fwyt
List"
v-for=
"(item, index) in
qsx
List"
:key=
"index"
class=
"cp"
@
click=
"handleChoosedH(item.bsms,item.color)"
...
...
@@ -267,8 +268,9 @@
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
0
</td>
</tr>
<tr
v-show=
"
fwyt
List.length
< 1
"
>
<tr
v-show=
"
qsx
List.length
< 1
"
>
<td
colspan=
"3"
class=
"tac"
>
暂无数据
</td>
</tr>
</table>
...
...
@@ -353,7 +355,7 @@ import addZdy from "./zdy/index";
import
addCh
from
"./ch/index"
;
import
editCinfo
from
"./c/index"
;
import
lpbContent
from
"./lpbContent/index"
;
import
{
getLpbMenuTree
,
batchScYcChange
,
getLpbTj
,
batchGeneratorBdcdyh
,
getLpbFwytAndQlxz
,
batchCommit
,
batchDelete
}
from
"@api/lpb"
;
import
{
getLpbMenuTree
,
batchScYcChange
,
getLpbTj
,
batchGeneratorBdcdyh
,
getLpbFwytAndQlxz
,
batchCommit
,
batchDelete
,
getLpbQsxtj
}
from
"@api/lpb"
;
import
xxxx
from
'../xxxx/index'
export
default
{
...
...
@@ -449,6 +451,7 @@ export default {
],
fwxzList
:
[],
fwytList
:
[],
qsxList
:[],
legendToggleFlag
:
false
,
lpbContentHight
:
""
,
lpbContentwidth
:
""
,
...
...
@@ -910,7 +913,7 @@ export default {
}
});
},
// 获取房屋用途和房屋性质统计数据
// 获取房屋用途和房屋性质
及缺失项
统计数据
getLpbFwytAndQlxz
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
...
...
@@ -935,6 +938,30 @@ export default {
}
}
});
getLpbQsxtj
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
qsxList
=
[
{
name
:
'坐落'
,
bsms
:
res
.
result
.
zl
.
bsms
,
color
:
'#2591FD'
,
ts
:
res
.
result
.
zl
.
bsms
.
length
},
{
name
:
'分层分户图'
,
bsms
:
res
.
result
.
fcfht
.
bsms
,
color
:
'#2591FD'
,
ts
:
res
.
result
.
fcfht
.
bsms
.
length
},
{
name
:
'室号'
,
bsms
:
res
.
result
.
shbw
.
bsms
,
color
:
'#2591FD'
,
ts
:
res
.
result
.
shbw
.
bsms
.
length
}
]
}
});
}
},
computed
:
{},
...
...
Please
register
or
sign in
to post a comment