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
5374e1e6
authored
2021-01-12 11:11:43 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
9cac7d22
81a99aa9
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
26 deletions
src/api/lpb.js
src/components/dzQueryData/dzQueryData.vue
src/views/panel/change/fg/index.vue
src/views/zrz/lpb/bjlp/hbj/index.vue
src/views/zrz/lpb/bjlp/index.vue
src/api/lpb.js
View file @
5374e1e
...
...
@@ -195,3 +195,14 @@ export function getDetailInfo(zrzbsm,lx) {
},
})
}
/**
* 批量删除户基本信息表,data为一个数组List<String>
*/
export
function
batchDeleteHByHbsms
(
data
)
{
return
request
({
url
:
'/system/qjH/batchDeleteHByBsms'
,
method
:
'post'
,
data
:
data
})
}
...
...
src/components/dzQueryData/dzQueryData.vue
View file @
5374e1e
...
...
@@ -6,7 +6,7 @@
width=
"70%"
@
close=
"close"
:modal-append-to-body=
"false"
center
>
>
<div
class=
"search"
>
<el-row>
<el-col
:span=
"24"
>
...
...
src/views/panel/change/fg/index.vue
View file @
5374e1e
...
...
@@ -4,7 +4,7 @@
<el-tab-pane
label=
"宗地分割"
name=
"zd"
>
<div
class=
"fg-tabs top20"
>
<span
class=
"tips"
>
分割前宗地信息
</span>
<el-button
type=
"primary"
class=
"addBtn"
@
click=
"newAdd"
icon=
"el-icon-plus"
>
新增
</el-button>
<el-button
type=
"primary"
class=
"addBtn"
@
click=
"newAdd
('zd')
"
icon=
"el-icon-plus"
>
新增
</el-button>
<div
class=
"fgq"
>
<el-card
class=
"data"
>
<div
slot=
"header"
class=
"clearfix"
>
...
...
@@ -171,7 +171,7 @@
</
template
>
</table>
</div>
<zd-query-data
@
getData=
"getData"
:centerDialogVisible
.
sync=
"centerDialogVisible"
:isZdClose=
"true"
<zd-query-data
@
getData=
"getData"
:centerDialogVisible
.
sync=
"centerDialog
Zd
Visible"
:isZdClose=
"true"
@
close=
"close"
></zd-query-data>
<div
class=
"header-button"
:style=
"{width:fgBoxWidth+'px'}"
>
<el-button
type=
"primary"
class=
"saveBtn"
@
click=
"save"
>
保存
</el-button>
...
...
@@ -181,7 +181,7 @@
<el-tab-pane
label=
"多幢分割"
name=
"dz"
>
<div
class=
"fg-tabs top20"
>
<span
class=
"tips"
>
分割前多幢信息
</span>
<el-button
type=
"primary"
class=
"addBtn"
@
click=
"newAdd"
icon=
"el-icon-plus"
>
新增
</el-button>
<el-button
type=
"primary"
class=
"addBtn"
@
click=
"newAdd
('dz')
"
icon=
"el-icon-plus"
>
新增
</el-button>
<div
class=
"fgq"
>
<el-card
class=
"data"
>
<div
slot=
"header"
class=
"clearfix"
>
...
...
@@ -277,7 +277,7 @@
</tr>
</table>
</div>
<dz-query-data
@
getData=
"getData"
:centerDialogVisible
.
sync=
"centerDialogVisible"
<dz-query-data
@
getData=
"getData"
:centerDialogVisible
.
sync=
"centerDialog
Dz
Visible"
:isClose=
"false"
@
close=
"close"
>
</dz-query-data>
...
...
@@ -321,7 +321,8 @@
data
()
{
return
{
tabName
:
'zd'
,
centerDialogVisible
:
false
,
centerDialogZdVisible
:
false
,
centerDialogDzVisible
:
false
,
zdFgqData
:
{},
// 宗地分割前数据
mapDefault
:
require
(
'@assets/images/map_default.png'
),
dzFgqData
:
{},
//多幢分割前数据
...
...
@@ -812,16 +813,27 @@
}
},
close
:
function
()
{
this
.
centerDialogVisible
=
false
;
this
.
centerDialogDzVisible
=
false
;
this
.
centerDialogZdVisible
=
false
;
},
newAdd
:
function
()
{
newAdd
:
function
(
type
)
{
this
.
result
();
this
.
centerDialogVisible
=
true
;
switch
(
type
)
{
case
'dz'
:
this
.
centerDialogDzVisible
=
true
;
break
;
case
'zd'
:
this
.
centerDialogZdVisible
=
true
;
break
;
default
:
break
;
}
},
getData
:
function
(
data
)
{
switch
(
this
.
tabName
)
{
case
"zd"
:
this
.
centerDialogVisible
=
false
;
this
.
centerDialog
Zd
Visible
=
false
;
this
.
zdFgqData
=
data
;
break
;
case
"dz"
:
...
...
@@ -830,7 +842,7 @@
break
}
this
.
dzFgqData
=
data
;
this
.
centerDialogVisible
=
false
;
this
.
centerDialog
Dz
Visible
=
false
;
break
;
case
"h"
:
this
.
hFgqData
=
data
;
...
...
src/views/zrz/lpb/bjlp/hbj/index.vue
View file @
5374e1e
...
...
@@ -24,9 +24,15 @@
<el-input
v-model=
"form.bdcdyh"
class=
"percent80"
:disabled=
"disableFlag"
ref=
"bdcdyh"
></el-input>
<el-button
@
click
.
prevent=
"generatorCode"
size=
"mini"
class=
"createBtn"
type=
"warning"
>
生成
</el-button>
</td>
<td
colspan=
"2"
align=
"center"
>
原不动产单元
</td>
<td
colspan=
"4"
>
<el-input
v-model=
"form.ydybsm"
disabled
></el-input>
<!--
<td
colspan=
"2"
align=
"center"
>
原不动产单元
</td>
-->
<!--
<td
colspan=
"4"
>
-->
<!--
<el-input
v-model=
"form.ydybsm"
disabled
></el-input>
-->
<!--
</td>
-->
<td
colspan=
"2"
align=
"center"
>
<span>
坐落
<i
class=
"requisite"
>
*
</i></span>
</td>
<td
colspan=
"4"
>
<input
class=
"formInput"
v-model=
"form.zl"
ref=
"zl"
@
blur=
"inputBlur($event)"
:disabled=
"disableFlag"
/>
</td>
</tr>
...
...
@@ -320,17 +326,6 @@
<tr></tr>
<tr></tr>
<tr
height=
"30"
>
<td
colspan=
"2"
align=
"center"
>
<span>
坐落
<i
class=
"requisite"
>
*
</i></span>
</td>
<td
colspan=
"10"
>
<input
class=
"formInput"
v-model=
"form.zl"
ref=
"zl"
@
blur=
"inputBlur($event)"
:disabled=
"disableFlag"
/>
</td>
</tr>
<tr
height=
"30"
>
<td
colspan=
"2"
align=
"center"
>
东墙体归属
</td>
<td
colspan=
"4"
>
...
...
src/views/zrz/lpb/bjlp/index.vue
View file @
5374e1e
...
...
@@ -629,7 +629,7 @@ export default {
this
.
getDyztBsmList
();
this
.
getLpbFwytAndQlxz
();
//改变楼盘表子组件的key值,重新渲染
this
.
time
=
new
Date
().
getTime
();
//
this.time = new Date().getTime();
},
//实预测装换
plScYcChange
()
{
...
...
Please
register
or
sign in
to post a comment