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
e91d7161
authored
2021-02-01 10:56:15 +0800
by
zhaoqian
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
e15a9724
420dedb0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
27 deletions
src/api/lpb.js
src/views/zrz/index.vue
src/views/zrz/lpb/bjlp/index.vue
src/api/lpb.js
View file @
e91d716
...
...
@@ -109,13 +109,13 @@ export function getLpbFwytAndQlxz (data) {
})
}
/**
* 楼盘表 获取
楼盘表缺失项统计
* 楼盘表 获取
缺失项数据
* zrzbsm 自然幢标识码 ,
* scyclx 实测预测类型 0预测,1实测
*/
export
function
getLpbQsxtj
(
data
)
{
return
request
({
url
:
'fw/lpb/getLpbQsxtj?zrzbsm='
+
data
.
zrzbsm
+
'&scyclx='
+
data
.
scyclx
,
url
:
'
/
fw/lpb/getLpbQsxtj?zrzbsm='
+
data
.
zrzbsm
+
'&scyclx='
+
data
.
scyclx
,
method
:
'get'
,
data
:
data
})
...
...
src/views/zrz/index.vue
View file @
e91d716
...
...
@@ -65,7 +65,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 @
e91d716
...
...
@@ -255,6 +255,7 @@
<tr>
<th>
数据缺失项
</th>
<th>
套数
</th>
<th>
面积
</th>
</tr>
<tr
v-for=
"(item, index) in qsxList"
...
...
@@ -267,8 +268,11 @@
>
{{
item
.
name
}}
</td>
<td>
{{
item
.
ts
}}
</td>
<td>
0
</td>
</tr>
<tr
v-show=
"qsxList.length
< 1
"
>
<td
colspan=
"3"
class=
"tac"
>
暂无数据
</td>
</tr>
</table>
</div>
</div>
...
...
@@ -351,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
,
getLpbQsxtj
,
batchCommit
,
batchDelete
}
from
"@api/lpb"
;
import
{
getLpbMenuTree
,
batchScYcChange
,
getLpbTj
,
batchGeneratorBdcdyh
,
getLpbFwytAndQlxz
,
batchCommit
,
batchDelete
,
getLpbQsxtj
}
from
"@api/lpb"
;
import
xxxx
from
'../xxxx/index'
export
default
{
...
...
@@ -912,7 +916,7 @@ export default {
}
});
},
// 获取房屋用途和房屋性质统计数据
// 获取房屋用途和房屋性质
及缺失项
统计数据
getLpbFwytAndQlxz
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
...
...
@@ -937,29 +941,28 @@ export default {
}
}
});
},
//获取楼盘表缺失项统计
getLpbQsxtj
(){
let
data
=
{
zrzbsm
:
this
.
$store
.
state
.
zrzbsm
,
scyclx
:
this
.
scyclx
,
};
getLpbQsxtj
(
data
).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
this
.
qsxList
=
res
.
result
;
// this.fwxzList = res.result.qlxz;
if
(
this
.
qsxList
.
length
>
0
){
this
.
qsxList
.
forEach
(
item
=>
{
item
.
color
=
"#2591FD"
;
item
.
ts
=
item
.
hcount
;
})
}
// if(this.fwxzList.length>0){
// this.fwxzList.forEach(item=>{
// item.color = "#2591FD";
// item.ts = item.bsms.length
// })
// }
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
}
]
}
});
}
...
...
Please
register
or
sign in
to post a comment