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
d4bf18ae
authored
2023-05-18 16:30:00 +0800
by
xiaomiao
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
分割不动产查询
1 parent
a3ff2691
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
132 additions
and
17 deletions
src/views/ywbl/ywsq/components/selectJsydsyqSplitMerge.vue
src/views/ywbl/ywsq/javascript/selectJsydsyq.js
src/views/ywbl/ywsq/components/selectJsydsyqSplitMerge.vue
View file @
d4bf18a
...
...
@@ -41,17 +41,17 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content loadingtext"
>
分割合并前权利信息
<lb-table
ref=
"table"
@
row-dblclick=
"handleRowClick"
:page-size=
"pageData.pageSize"
:calcHeight=
"300"
<lb-table
ref=
"table"
@
row-dblclick=
"handleRowClick"
:pagination =
false
:page-size=
"pageData.pageSize"
:calcHeight=
"300"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
@
selection-change=
"handleSelectionChange"
:column=
"tableData.columns"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
<div
class=
"from-clues-content loadingtext"
>
分割合并后宗地信息
<lb-table
ref=
"table"
@
row-dblclick=
"handleRowClick"
:page-size=
"pageData.pageSize"
:calcHeight=
"300"
<lb-table
ref=
"table"
@
row-dblclick=
"handleRowClick"
:pag
ination =
false
:pag
e-size=
"pageData.pageSize"
:calcHeight=
"300"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
@
selection-change=
"handleSelectionChange"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns1
"
:data=
"tableData.data
stwo
"
>
</lb-table>
</div>
<div
class=
"submit_button"
>
...
...
@@ -63,7 +63,7 @@
<
script
>
//首次登记
import
store
from
'@/store/index.js'
import
{
datas
,
sendThis
}
from
"../javascript/selectJsydsyq.js"
;
import
{
datas
,
datastwo
,
sendThis
}
from
"../javascript/selectJsydsyq.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
import
table
from
"@/utils/mixin/table"
;
import
jump
from
"./mixin/jump"
;
...
...
@@ -77,18 +77,56 @@
data
()
{
return
{
queryForm
:
defaultParameters
.
defaultParameters
(),
// 表格数据
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[]
columns
:
[{
label
:
'选择'
,
width
:
'50px'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
class
=
"orgColumn"
>
<
el
-
radio
v
-
model
=
{
this
.
radioVal
}
label
=
{
scope
.
row
.
bhqkbsm
}
>
&
ensp
;
<
/el-radio
>
<
/div
>
)
}
},].
concat
(
datas
.
columns
()),
data
:
[],
columns1
:
datastwo
.
columns1
(),
datastwo
:[]
},
bdcdysz
:
[]
bdcdysz
:
[],
radioVal
:
""
}
},
mounted
()
{
sendThis
(
this
);
},
watch
:
{
radioVal
:
{
deep
:
true
,
handler
(
newVal
,
oldVal
)
{
this
.
close
()
},
},
},
methods
:
{
// 单选事件
close
(){
console
.
log
(
"ddddd"
,
this
.
radioVal
);
console
.
log
(
"...this.queryForm"
,
this
.
queryForm
);
this
.
queryForm
.
bhqkbsm
=
this
.
radioVal
// delete this.queryForm.sqywbm
selectZdjbxxSplitMergeLast
({
...
this
.
queryForm
,}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
datastwo
=
[...
res
.
result
,...
res
.
result
];
}
});
},
queryClick
()
{
this
.
$startLoading
();
this
.
queryForm
.
sqywbm
=
this
.
sqywInfo
.
djywbm
;
...
...
@@ -97,7 +135,7 @@
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
res
.
result
;
this
.
tableData
.
data
=
[...
res
.
result
,...
res
.
result
]
;
}
});
},
...
...
src/views/ywbl/ywsq/javascript/selectJsydsyq.js
View file @
d4bf18a
/*
* @Description:
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-05-17 10:37:24
*/
...
...
@@ -9,6 +9,9 @@ let vm = null
const
sendThis
=
(
_this
)
=>
{
vm
=
_this
}
// const sendThiss= (_this) => {
// vm1 = _this
// }
class
data
extends
filter
{
constructor
()
{
super
()
...
...
@@ -16,11 +19,6 @@ class data extends filter {
columns
()
{
return
[
{
type
:
'selection'
,
label
:
'全选'
,
selectable
:
this
.
selected
},
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
,
...
...
@@ -110,10 +108,89 @@ class data extends filter {
]
}
}
class
datatwo
extends
filter
{
constructor
()
{
super
()
}
columns1
()
{
return
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{(
vm
.
pageData
.
currentPage
-
1
)
*
vm
.
pageData
.
pageSize
+
scope
.
$index
+
1
}
<
/div
>
)
}
},
{
label
:
"状态"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{
/* <a v-on:click="doSomething"></a> */
}
<
a
style
=
'color:#3498db;'
v
-
show
=
{
scope
.
row
.
djblzt
==
1
}
>
正在办理
<
/a
>
<
span
v
-
show
=
{
scope
.
row
.
zjgcdyzt
==
1
}
>
,
在建工程抵押
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
ycfzt
==
1
}
>
,
已预查封
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
ycfzt
==
1
}
>
,
已预查封
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
cfzt
==
1
}
>
,
已查封
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
diyizt
==
1
}
>
,
已地役
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
yyzt
==
1
}
>
,
异议中
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
xzzt
==
1
}
>
,
已限制
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
ygmmzt
==
1
}
>
,
已预告买卖
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
ygdyzt
==
1
}
>
,
已预告抵押
<
/span
>
<
span
v
-
show
=
{
scope
.
row
.
dyzt
==
1
}
>
,
已抵押
<
/span
>
<
/div
>
)
}
},
{
prop
:
"qllxmc"
,
label
:
"权利类型"
,
},
{
prop
:
"zddm"
,
label
:
"宗地代码"
,
},
{
prop
:
"bdcdyh"
,
label
:
"不动产单元号"
,
minWidth
:
'110'
},
{
prop
:
"qlxzmc"
,
label
:
"权利性质"
,
},
{
prop
:
"mj"
,
label
:
"宗地面积(㎡)"
,
},
{
prop
:
"qlsdfsmc"
,
label
:
"权利设定方式"
,
},
{
prop
:
"ytmc"
,
label
:
"土地用途"
,
},
{
prop
:
"zl"
,
label
:
"坐落"
,
minWidth
:
'110'
},
]
}
}
let
datas
=
new
data
()
let
datastwo
=
new
datatwo
()
export
{
datas
,
datastwo
,
sendThis
}
...
...
Please
register
or
sign in
to post a comment