Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
df1cbcf4
authored
2023-01-12 10:27:48 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'master' of
http://yun.pashanhoo.com:9090/bdc/bdcjg-web
2 parents
242cd2e2
5378796f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
55 additions
and
54 deletions
src/api/business.js
src/router/index.js
src/views/business-info/mortgage-registration/data/index.js
src/views/business-info/mortgage-registration/index.vue
src/views/business-info/land-ownership/data/index.js → src/views/business-info/tdsyq/data/index.js
src/views/business-info/land-ownership/index.vue → src/views/business-info/tdsyq/index.vue
src/api/business.js
View file @
df1cbcf
This diff is collapsed.
Click to expand it.
src/router/index.js
View file @
df1cbcf
...
...
@@ -187,9 +187,9 @@ export const asyncRoutes = [
name
:
'busineInfo'
,
children
:
[
{
path
:
'
landOwnership
'
,
component
:
()
=>
import
(
'@/views/business-info/
land-ownership
/index'
),
name
:
'
landOwnership
'
,
path
:
'
tdsyq
'
,
component
:
()
=>
import
(
'@/views/business-info/
tdsyq
/index'
),
name
:
'
tdsyq
'
,
meta
:
{
title
:
'土地所有权'
}
},
{
...
...
src/views/business-info/mortgage-registration/data/index.js
View file @
df1cbcf
...
...
@@ -10,27 +10,27 @@ class data extends filter {
prop
:
"YWH"
,
width
:
150
},
{
label
:
"抵押不动产类型"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
this
.
dicStatus
(
scope
.
row
.
DYBDCLX
,
'A27'
)}
<
/span
>
<
/div
>
)
},
},
{
label
:
"登记类型"
,
width
:
70
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
this
.
djlxStatus
(
scope
.
row
.
DJLX
)}
<
/span
>
<
/div
>
)
}
},
//
{
//
label: "抵押不动产类型",
//
render: (h, scope) => {
//
return (
//
<div>
//
<span>{ this.dicStatus(scope.row.DYBDCLX, 'A27')}</span>
//
</div>
//
)
//
},
//
},
//
{
//
label: "登记类型",
//
width: 70,
//
render: (h, scope) => {
//
return (
//
<div>
//
<span>{this.djlxStatus(scope.row.DJLX)}</span>
//
</div>
//
)
//
}
//
},
{
label
:
"不动产单元号"
,
prop
:
"BDCDYH"
...
...
src/views/business-info/mortgage-registration/index.vue
View file @
df1cbcf
...
...
@@ -123,7 +123,7 @@ export default {
this
.
loading
=
true
let
{
result
:
{
list
,
total
,
pages
:
pageSize
,
pageNum
:
current
}
}
=
await
business
.
getQlfQlDyaqByCondition
(
this
.
form
)
this
.
tableData
.
data
=
list
this
.
tableData
.
data
=
list
;
this
.
pageData
=
{
pageSize
,
current
,
...
...
src/views/business-info/
land-ownership
/data/index.js
→
src/views/business-info/
tdsyq
/data/index.js
View file @
df1cbcf
...
...
@@ -7,37 +7,37 @@ class data extends filter {
return
[
{
label
:
"业务号"
,
prop
:
"
YWH
"
,
prop
:
"
ywh
"
,
width
:
150
},
{
label
:
"权利类型"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
this
.
qllxStatus
(
scope
.
row
.
QLLX
)}
<
/span
>
<
/div
>
)
},
},
{
label
:
"登记类型"
,
width
:
70
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
span
>
{
this
.
djlxStatus
(
scope
.
row
.
DJLX
)}
<
/span
>
<
/div
>
)
}
},
//
{
//
label: "权利类型",
//
render: (h, scope) => {
//
return (
//
<div>
//
<span>{ this.qllxStatus(scope.row.QLLX)}</span>
//
</div>
//
)
//
},
//
},
//
{
//
label: "登记类型",
//
width: 70,
//
render: (h, scope) => {
//
return (
//
<div>
//
<span>{this.djlxStatus(scope.row.DJLX)}</span>
//
</div>
//
)
//
}
//
},
{
label
:
"不动产单元号"
,
prop
:
"
BDCDYH
"
prop
:
"
bdcdyh
"
},
{
label
:
"不动产权证号"
,
prop
:
"
BDCQZH
"
prop
:
"
bdcqzh
"
},
{
label
:
"登记时间"
,
...
...
@@ -46,7 +46,7 @@ class data extends filter {
},
{
label
:
"登记机构"
,
prop
:
"
DJJG
"
prop
:
"
djjg
"
}
]
}
...
...
src/views/business-info/
land-ownership
/index.vue
→
src/views/business-info/
tdsyq
/index.vue
View file @
df1cbcf
<
template
>
<div
class=
"
landOwnership
from-clues"
>
<div
class=
"
tdsyq
from-clues"
>
<div
class=
"from-clues-header"
>
<el-form
ref=
"form"
:model=
"form"
label-width=
"80px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"业务号"
>
<el-form-item
label=
"业务号
1
"
>
<el-input
v-model=
"form.YWH"
placeholder=
"业务号"
></el-input>
</el-form-item>
</el-col>
...
...
@@ -63,7 +63,7 @@ export default {
treeSelect
,
editDialog
},
name
:
"
landOwnership
"
,
name
:
"
tdsyq
"
,
mixins
:
[
tableMixin
],
data
()
{
return
{
...
...
@@ -159,7 +159,8 @@ export default {
try
{
this
.
form
=
Object
.
assign
(
this
.
form
,
this
.
formData
)
let
{
result
:
{
list
,
total
,
pages
:
pageSize
,
pageNum
:
current
}
}
=
await
business
.
getQlfQlHysyqByConditon
(
this
.
form
)
}
=
await
business
.
getQlfQlTdsyqListByCondition
(
this
.
form
)
debugger
;
this
.
tableData
.
data
=
list
this
.
pageData
=
{
pageSize
,
...
...
Please
register
or
sign in
to post a comment