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
e2679cda
authored
2022-08-24 14:50:36 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
12
1 parent
12bdf135
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
169 deletions
src/views/ywbl/ywsq/components/selectql.vue
src/views/ywbl/ywsq/components/ywsqdata.js → src/views/ywbl/ywsq/ywsqdata.js
src/views/ywbl/ywsq/components/selectql.vue
deleted
100644 → 0
View file @
12bdf13
<
template
>
<div>
<dialogBox
title=
"查询权利信息"
@
submitForm=
"submitForm"
saveButton=
"发起申请"
width=
"85%"
@
closeDialog=
"closeDialog"
v-model=
"value"
>
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
label-width=
"100px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"权利类型"
>
<el-select
v-model=
"queryForm.qllx"
filterable
clearable
placeholder=
"请选择权利类型"
>
<el-option
v-for=
"item in qllxs"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"不动产单元号"
>
<el-input
placeholder=
"请输入不动产单元号"
v-model=
"queryForm.bdcdyh"
clearable
class=
"width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"业务号"
>
<el-input
placeholder=
"请输入业务号"
v-model=
"queryForm.ywh"
clearable
class=
"width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"不动产权证号"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
clearable
class=
"width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"2"
class=
"btnCol"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"queryClick()"
>
查询
</el-button>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.pageSize"
heightNumSetting
: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>
</dialogBox>
</div>
</
template
>
<
script
>
import
{
datas
,
sendThis
}
from
"./ywsqdata.js"
;
import
table
from
"@/utils/mixin/table"
;
import
{
getselectBdcdy
,
startBusinessFlow
}
from
"@/api/ywbl.js"
export
default
{
mixins
:
[
table
],
props
:
{
value
:
{
type
:
Boolean
,
default
:
false
},
bsmSqyw
:
{
type
:
String
,
default
:
''
},
},
data
()
{
return
{
appliDialog
:
false
,
queryForm
:
{
qllx
:
""
,
bdcdyh
:
""
,
ywh
:
""
,
bdcqzh
:
""
,
sqywbm
:
'A03100'
},
qllxs
:
[],
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[]
},
bdcdyid
:
''
,
bdcdyh
:
''
}
},
watch
:
{
value
(
val
)
{
if
(
val
)
this
.
fetchData
()
}
},
mounted
()
{
sendThis
(
this
);
},
methods
:
{
fetchData
()
{
if
(
this
.
value
)
{
getselectBdcdy
({
...
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
.
bdcdyid
==
''
)
{
this
.
$message
.
error
(
'请至少选择一条数据'
);
return
}
startBusinessFlow
({
bsmSqyw
:
this
.
bsmSqyw
,
bdcdyid
:
this
.
bdcdyid
,
bdcdyh
:
this
.
bdcdyh
}).
then
(
res
=>
{
this
.
$emit
(
'input'
,
false
)
const
{
href
}
=
this
.
$router
.
resolve
(
'/fqsq?bsmSqyw='
+
this
.
bsmSqyw
)
window
.
open
(
href
,
'_blank'
);
})
},
closeDialog
()
{
this
.
$emit
(
'input'
,
false
)
},
handleSelectionChange
(
val
)
{
this
.
bdcdyid
=
val
.
map
(
item
=>
item
.
dyhbsm
?
item
.
dyhbsm
:
''
).
join
(
','
)
this
.
bdcdyh
=
val
.
map
(
item
=>
item
.
bdcdyh
?
item
.
bdcdyh
:
''
).
join
(
','
)
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/mixin.scss"
;
.qtjfjmb-edit-title
{
padding-bottom
:
10px
;
border-bottom
:
1px
solid
$
borderColor
;
margin-bottom
:
10px
;
}
/
deep
/
.el-input
{
width
:
187px
;
}
ul
{
@include
flex;
border-radius
:
5px
;
overflow
:
hidden
;
margin-bottom
:
20px
;
.active
{
background
:
$
light-blue
;
color
:
#fff
;
}
li
{
flex
:
1
;
line-height
:
36px
;
@include
flex-center;
border
:
1px
solid
$
borderColor
;
margin-left
:
-1px
;
cursor
:
pointer
;
transition
:
all
0.3s
;
&:hover
{
@extend
.active;
}
}
}
</
style
>
src/views/ywbl/ywsq/
components/
ywsqdata.js
→
src/views/ywbl/ywsq/ywsqdata.js
View file @
e2679cd
File moved
Please
register
or
sign in
to post a comment