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
6dbd007b
authored
2022-08-23 11:52:10 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:证书使用记录
1 parent
6bee1405
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
105 deletions
src/views/zsgl/zsff/zsff.vue
src/views/zsgl/zsrk/zsrk.vue
src/views/zsgl/zssyjl/zssyjl.vue
src/views/zsgl/zsff/zsff.vue
View file @
6dbd007
...
...
@@ -2,16 +2,23 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"
queryForm"
ref=
"query
Form"
label-width=
"70px"
>
<el-form
:model=
"
rule
Form"
label-width=
"70px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"家庭房产"
>
<el-form-item
label=
"入库编号"
>
<el-input
v-model=
"ruleForm.rkbh"
placeholder=
"入库编号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
class=
"btnCol"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"人库时间"
>
<el-date-picker
v-model=
"ruleForm.rksj"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"11"
class=
"btnCol"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"
queryClick()
"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"
fetchData
"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -20,17 +27,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.current"
:total=
"pageData.total"
@
selection-change=
"handleSelectionChange"
@
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>
...
...
@@ -42,26 +41,17 @@ export default {
name
:
"zsff"
,
components
:
{},
mixins
:
[
table
],
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
data
()
{
return
{
queryForm
:
{
ywly
:
""
,
qllx
:
""
,
djlx
:
""
,
ywh
:
""
,
ruleForm
:
{
rkbh
:
""
,
rksj
:
""
},
pageData
:
{
current
:
1
,
size
:
10
,
total
:
2
,
},
ywlys
:
datas
.
ywlys
(),
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[
{
...
...
@@ -76,11 +66,8 @@ export default {
},
methods
:
{
// 初始化数据
fetchData
()
{},
handleSort
(
name
,
sort
)
{
console
.
log
(
name
,
sort
);
},
openDialog
()
{
fetchData
()
{
},
openDialog
()
{
console
.
log
(
999999999999999
);
},
},
...
...
src/views/zsgl/zsrk/zsrk.vue
View file @
6dbd007
...
...
@@ -2,14 +2,21 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"
queryForm"
ref=
"query
Form"
label-width=
"70px"
>
<el-form
:model=
"
rule
Form"
label-width=
"70px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"家庭房产"
>
<el-form-item
label=
"入库编号"
>
<el-input
v-model=
"ruleForm.rkbh"
placeholder=
"入库编号"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"4"
class=
"btnCol"
>
<el-col
:span=
"8"
>
<el-form-item
label=
"人库时间"
>
<el-date-picker
v-model=
"ruleForm.rksj"
type=
"datetimerange"
range-separator=
"至"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
>
</el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"11"
class=
"btnCol"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"queryClick()"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
...
...
@@ -20,17 +27,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.current"
:total=
"pageData.total"
@
selection-change=
"handleSelectionChange"
@
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>
...
...
@@ -42,26 +41,17 @@ export default {
name
:
"zsrk"
,
components
:
{},
mixins
:
[
table
],
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
data
()
{
return
{
queryForm
:
{
ywly
:
""
,
qllx
:
""
,
djlx
:
""
,
ywh
:
""
,
ruleForm
:
{
rkbh
:
""
,
rksj
:
""
},
pageData
:
{
current
:
1
,
size
:
10
,
total
:
2
,
},
ywlys
:
datas
.
ywlys
(),
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[
{
...
...
@@ -76,11 +66,8 @@ export default {
},
methods
:
{
// 初始化数据
fetchData
()
{},
handleSort
(
name
,
sort
)
{
console
.
log
(
name
,
sort
);
},
openDialog
()
{
fetchData
()
{
},
openDialog
()
{
console
.
log
(
999999999999999
);
},
},
...
...
src/views/zsgl/zssyjl/zssyjl.vue
View file @
6dbd007
...
...
@@ -2,16 +2,32 @@
<div
class=
"from-clues"
>
<!-- 表单部分 -->
<div
class=
"from-clues-header"
>
<el-form
:model=
"
queryForm"
ref=
"queryForm"
label-width=
"7
0px"
>
<el-form
:model=
"
ruleForm"
label-width=
"12
0px"
>
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"家庭房产"
>
<el-form-item
label=
"印刷序列号"
prop=
"ysxlh"
>
<el-input
v-model=
"ruleForm.ysxlh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"证书类型"
prop=
"zslx"
>
<el-input
v-model=
"ruleForm.zslx"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"业务号"
prop=
"ywh"
>
<el-input
v-model=
"ruleForm.ywh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"不动产权证号"
prop=
"bdcqzh"
>
<el-input
v-model=
"ruleForm.bdcqzh"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"
4
"
class=
"btnCol"
>
<el-col
:span=
"
3
"
class=
"btnCol"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"
queryClick()
"
>
查询
</el-button>
<el-button
type=
"primary"
@
click=
"
fetchData
"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -20,17 +36,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.current"
:total=
"pageData.total"
@
selection-change=
"handleSelectionChange"
@
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>
...
...
@@ -42,26 +50,19 @@ export default {
name
:
"zssyjl"
,
components
:
{},
mixins
:
[
table
],
mounted
()
{
mounted
()
{
sendThis
(
this
);
},
data
()
{
data
()
{
return
{
queryForm
:
{
ywly
:
""
,
qllx
:
""
,
djlx
:
""
,
ruleForm
:
{
ysxlh
:
""
,
zslx
:
""
,
ywh
:
""
,
bdcqzh
:
""
,
},
pageData
:
{
current
:
1
,
size
:
10
,
total
:
2
,
},
ywlys
:
datas
.
ywlys
(),
tableData
:
{
total
:
0
,
columns
:
datas
.
columns
(),
data
:
[
{
...
...
@@ -76,11 +77,8 @@ export default {
},
methods
:
{
// 初始化数据
fetchData
()
{},
handleSort
(
name
,
sort
)
{
console
.
log
(
name
,
sort
);
},
openDialog
()
{
fetchData
()
{
},
openDialog
()
{
console
.
log
(
999999999999999
);
},
},
...
...
Please
register
or
sign in
to post a comment