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
100777c4
authored
2022-08-22 14:49:24 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:table
1 parent
faf6575c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
9 deletions
src/components/lb-table/lb-table.vue
src/views/ywbl/ywsq/components/choiceDialog.vue
src/components/lb-table/lb-table.vue
View file @
100777c
...
...
@@ -12,8 +12,7 @@
<div
:class=
"['lb-table', customClass]"
>
<el-table
v-if=
"!heightNumSetting"
ref=
"elTable"
:border=
'border'
:row-class-name=
"tableRowClassName"
:show-header=
'showHeader'
:header-cell-style=
"
{ background: '#f5f7fa' }" v-bind="$attrs" :height="tableHeight"
:max-height="maxHeight" v-on="$listeners" :data="data" style="width: 100%"
:span-method="this.merge ? this.mergeMethod : this.spanMethod">
v-on="$listeners" :data="data" style="width: 100%" :span-method="this.merge ? this.mergeMethod : this.spanMethod">
<lb-column
v-bind=
"$attrs"
v-for=
"(item, index) in column"
:key=
"index"
:column=
"item"
>
</lb-column>
</el-table>
...
...
src/views/ywbl/ywsq/components/choiceDialog.vue
View file @
100777c
<
template
>
<div>
<dialogBox
title=
"查询权利信息"
@
submitForm=
"submitForm"
saveButton=
"发起申请"
width=
"8
0
%"
@
closeDialog=
"closeDialog"
<dialogBox
title=
"查询权利信息"
@
submitForm=
"submitForm"
saveButton=
"发起申请"
width=
"8
5
%"
@
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=
"
6
"
>
<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"
>
...
...
@@ -21,21 +21,19 @@
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
6
"
>
<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-row>
<el-row>
<el-col
:span=
"6"
>
<el-form-item
label=
"不动产权证号"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.cqzh"
clearable
class=
"width200px"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
16
"
class=
"btnCol"
>
<el-col
:span=
"
2
"
class=
"btnCol"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"queryClick()"
>
查询
</el-button>
</el-form-item>
...
...
@@ -55,7 +53,6 @@
</div>
</
template
>
<
script
>
import
{
datas
}
from
"../ywsqdata.js"
;
export
default
{
...
...
Please
register
or
sign in
to post a comment