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
3994f386
authored
2022-10-27 16:08:04 +0800
by
jiaozeping@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
1
1 parent
ce7d08dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
41 deletions
src/views/zhcx/zslqcx/zslqcx.vue
src/views/zhcx/zxgcdycx/zxgcdycx.vue
src/views/zhcx/zslqcx/zslqcx.vue
View file @
3994f38
...
...
@@ -2,17 +2,23 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
label-width=
"100px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"不动产权证号"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
>
<el-input
placeholder=
"请输入不动产权证号"
v-model=
"queryForm.bdcqzh"
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"印刷序列号"
>
<el-input
placeholder=
"请输入印刷序列号"
v-model=
"queryForm.ysxlh"
>
<el-input
placeholder=
"请输入印刷序列号"
v-model=
"queryForm.ysxlh"
>
</el-input>
</el-form-item>
</el-col>
...
...
@@ -31,7 +37,11 @@
<el-col
:span=
"4"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"fetchData"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"queryClick()"
>
查询
</el-button
>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -40,9 +50,15 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
</div>
...
...
@@ -53,32 +69,34 @@ import { datas, sendThis } from "./zslqcx";
export
default
{
components
:
{},
mixins
:
[
table
],
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
data
()
{
return
{
queryForm
:
{
bdcqzh
:
''
,
ysxlh
:
''
,
ywh
:
''
,
lqr
:
''
bdcqzh
:
""
,
ysxlh
:
""
,
ywh
:
""
,
lqr
:
""
,
},
tableData
:
{
columns
:
datas
.
columns
(),
data
:
[
{
qllx
:
'A01'
}
]
}
}
data
:
[],
},
};
},
methods
:
{
// 查询
queryClick
()
{
this
.
fetchData
();
},
// 初始化数据
fetchData
()
{
},
}
}
fetchData
()
{
},
},
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
...
...
src/views/zhcx/zxgcdycx/zxgcdycx.vue
View file @
3994f38
...
...
@@ -2,7 +2,7 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
>
<el-form
:model=
"queryForm"
ref=
"queryForm"
label-width=
"80px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"项目名称"
>
...
...
@@ -31,7 +31,11 @@
<el-col
:span=
"4"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"fetchData"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"queryClick()"
>
查询
</el-button
>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -40,9 +44,15 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
</div>
...
...
@@ -53,29 +63,33 @@ import { datas, sendThis } from "./zxgcdycx";
export
default
{
components
:
{},
mixins
:
[
table
],
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
data
()
{
return
{
queryForm
:
{
xmmc
:
''
,
xmbh
:
''
,
zrzh
:
''
,
zddm
:
''
xmmc
:
""
,
xmbh
:
""
,
zrzh
:
""
,
zddm
:
""
,
},
tableData
:
{
columns
:
datas
.
columns
(),
data
:
[
]
}
}
data
:
[],
},
};
},
methods
:
{
// 查询
queryClick
()
{
this
.
fetchData
();
},
// 初始化数据
fetchData
()
{
},
}
}
fetchData
()
{
},
}
,
}
;
</
script
>
<
style
scoped
lang=
"scss"
>
@import
"~@/styles/public.scss"
;
...
...
Please
register
or
sign in
to post a comment