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
0504d536
authored
2022-11-24 14:42:22 +0800
by
田浩浩
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
11111
1 parent
385c6f83
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
191 deletions
src/views/ywbl/ywsq/components/jsydsyq100.vue
src/views/ywbl/ywsq/components/selecBdcql.vue
src/views/ywbl/ywsq/components/jsydsyq200.vue → src/views/ywbl/ywsq/components/selectJsydsyq.vue
src/views/ywbl/ywsq/slectBdcdata.js
src/views/ywbl/ywsq/components/jsydsyq100.vue
deleted
100644 → 0
View file @
385c6f8
<
template
>
<div
class=
"from-clues"
>
<!-- 表单部分 国有建设用地使用权 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
label-width=
"120px"
>
<el-row>
<el-col
:span=
"10"
>
<el-form-item
label=
"不动产单元号"
>
<el-input
placeholder=
"请输入不动产单元号"
v-model=
"queryForm.bdcdyh"
clearable
class=
"width300px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"10"
>
<el-form-item
label=
"坐落"
>
<el-input
placeholder=
"请输入坐落"
v-model=
"queryForm.zl"
clearable
class=
"width300px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"fetchData"
>
查询
</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
ref=
"table"
@
row-click=
"handleRowClick"
:page-size=
"pageData.pageSize"
:heightNum=
"400"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
@
selection-change=
"handleSelectionChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
<div
class=
"submit_button"
>
<el-button
@
click=
"closeDialog"
>
取消
</el-button>
<el-button
type=
"primary"
plain
@
click=
"submitForm"
>
发起申请
</el-button>
</div>
</div>
</
template
>
<
script
>
//首次登记
import
{
datas
,
sendThis
}
from
"../javascript/jsydsyq100.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
import
table
from
"@/utils/mixin/table"
;
import
jump
from
"../components/mixin/jump"
;
import
{
startBusinessFlow
,
selectZdjbxx
}
from
"@/api/ywbl.js"
;
export
default
{
mixins
:
[
table
,
jump
],
props
:
{
isJump
:
{
type
:
Boolean
,
default
:
false
},
djywbm
:
{
type
:
String
,
default
:
''
},
djqxObj
:
{
type
:
Object
,
default
:
{}
},
bsmSqyw
:
{
type
:
String
,
default
:
''
},
},
data
()
{
return
{
queryForm
:
defaultParameters
.
defaultParameters
(),
qllxs
:
[],
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[],
},
bdcdysz
:
[]
};
},
mounted
()
{
sendThis
(
this
);
},
methods
:
{
//点击行选中或取消复选框
handleRowClick
(
row
,
column
,
event
)
{
//通过ref绑定后这里使用$refs.table来操作bom元素
this
.
$refs
.
table
.
toggleRowSelection
(
row
);
},
closeDialog
()
{
this
.
$emit
(
"closeDialog"
);
},
queryClick
()
{
this
.
fetchData
()
},
fetchData
()
{
this
.
queryForm
.
sqywbm
=
this
.
djywbm
;
selectZdjbxx
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
;
}
});
},
submitForm
()
{
if
(
this
.
bdcdysz
.
length
==
0
)
{
this
.
$message
.
error
(
"请至少选择一条数据"
);
return
;
}
startBusinessFlow
({
bsmSqyw
:
this
.
bsmSqyw
,
bdcdysz
:
this
.
bdcdysz
,
djqxbm
:
this
.
djqxObj
?.
djqxbm
,
djqxmc
:
this
.
djqxObj
?.
djqxmc
}).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
$message
({
showClose
:
true
,
message
:
'发起申请成功'
,
type
:
'success'
})
if
(
!
this
.
isJump
)
{
this
.
jump
(
res
.
result
,
this
.
djywbm
)
}
else
{
this
.
$emit
(
'updateDialog'
,
true
)
}
}
else
{
this
.
$message
.
error
(
res
.
message
);
}
})
},
handleSelectionChange
(
val
)
{
this
.
bdcdysz
=
val
;
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
@import
"~@/styles/public.scss"
;
</
style
>
src/views/ywbl/ywsq/components/selecBdcql.vue
View file @
0504d53
...
...
@@ -128,8 +128,13 @@ export default {
closeDialog
()
{
this
.
$emit
(
"closeDialog"
);
},
fetchData
()
{
this
.
queryForm
.
bsmSqyw
=
this
.
djqxObj
.
parentid
;
fetchData
()
{
if
(
this
.
djqxObj
.
nodetype
===
"djlx"
){
this
.
queryForm
.
bsmSqyw
=
this
.
djqxObj
.
bsmSqyw
;
}
else
{
this
.
queryForm
.
bsmSqyw
=
this
.
djqxObj
.
parentid
;
}
console
.
log
(
this
.
queryForm
);
selectQlxx
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
...
...
src/views/ywbl/ywsq/components/
jsydsyq200
.vue
→
src/views/ywbl/ywsq/components/
selectJsydsyq
.vue
View file @
0504d53
...
...
@@ -57,7 +57,7 @@
import
{
datas
,
sendThis
}
from
"../javascript/jsydsyq200.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
import
table
from
"@/utils/mixin/table"
;
import
jump
from
".
./components
/mixin/jump"
;
import
jump
from
"./mixin/jump"
;
import
{
startBusinessFlow
,
selectJsydQlxx
}
from
"@/api/ywbl.js"
;
export
default
{
mixins
:
[
table
,
jump
],
...
...
src/views/ywbl/ywsq/slectBdcdata.js
View file @
0504d53
...
...
@@ -4,58 +4,6 @@ export function queueDjywmc(djywbm) {
case
"A03100"
:
//建设用地使用权(首次登记)
case
"A05100"
:
//宅基地使用权(首次登记)
case
"A07100"
:
//集体建设用地使用权(首次登记)
vm
=
"jsydsyq100"
;
break
;
case
"A03200"
:
case
"A03300"
:
case
"A03400"
:
vm
=
"jsydsyq200"
;
break
;
case
"A04100"
:
//国有建设用地使用权/房屋所有权(首次登记)
vm
=
"fwsyq"
;
break
;
case
"A23100"
:
//农用地使用权(首次登记)
case
"A09100"
:
//土地经营权(首次登记)
vm
=
"nydsyq100"
;
break
;
case
"A23200"
:
case
"A23300"
:
case
"A23400"
:
case
"A09200"
:
case
"A09300"
:
case
"A09400"
:
vm
=
"nydsyq200"
;
break
;
case
"A05200"
:
case
"A05300"
:
case
"A05400"
:
case
"A07200"
:
case
"A07300"
:
case
"A07400"
:
vm
=
"jsydsyq200"
;
break
;
case
"A37200"
:
//抵押权转移
case
"A37300"
:
//抵押权变更
case
"A37400"
:
//抵押权注销
vm
=
"diyaq"
;
break
;
case
"B39300"
:
//续封
case
"B39400"
:
//解封
vm
=
"cfdj"
;
break
;
default
:
vm
=
"selecBdcql"
;
}
return
vm
;
}
//获取查询业务子组件
export
function
getComponent
(
djywbm
)
{
let
vm
=
null
;
switch
(
djywbm
)
{
case
"A03100"
:
//建设用地使用权(首次登记)
case
"A05100"
:
//宅基地使用权(首次登记)
case
"A07100"
:
//集体建设用地使用权(首次登记)
vm
=
"selectQjzdjbxx"
;
break
;
case
"A03200"
:
...
...
@@ -70,6 +18,8 @@ export function getComponent(djywbm) {
vm
=
"selectJsydsyq"
;
break
;
case
"A04100"
:
//国有建设用地使用权/房屋所有权(首次登记)
case
"A06100"
:
case
"A08100"
:
vm
=
"fwsyq"
;
break
;
case
"A23100"
:
//农用地使用权(首次登记)
...
...
@@ -105,5 +55,4 @@ export function getComponent(djywbm) {
vm
=
"selecBdcql"
;
}
return
vm
;
}
}
\ No newline at end of file
...
...
Please
register
or
sign in
to post a comment