Commit e23c0ef6 by 苏咏卓

更新

parent 990ca345
...@@ -203,6 +203,8 @@ ...@@ -203,6 +203,8 @@
v-model="value" v-model="value"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="childSearchFun"
/> />
<el-table <el-table
:data="tableData" :data="tableData"
...@@ -267,7 +269,7 @@ export default { ...@@ -267,7 +269,7 @@ export default {
tableData: [], tableData: [],
pageInfo: { pageInfo: {
page: 1, page: 1,
size: 10, size: 15,
total: 0, total: 0,
}, },
loading: true, loading: true,
...@@ -354,6 +356,7 @@ export default { ...@@ -354,6 +356,7 @@ export default {
methods: { methods: {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.childSearchFun(); this.childSearchFun();
}, },
......
...@@ -248,6 +248,8 @@ ...@@ -248,6 +248,8 @@
v-model="value" v-model="value"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="marriageSearchFun"
/> />
<!-- <i class="el-icon-search" @click="marriageSearchFun"></i> --> <!-- <i class="el-icon-search" @click="marriageSearchFun"></i> -->
<el-table <el-table
...@@ -270,23 +272,27 @@ ...@@ -270,23 +272,27 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="manName" prop="manName"
label="男方姓名" label="男方"
align="center" align="center"
width="80px" width="75px"
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="girlName" prop="girlName"
label="女方姓名" label="女方"
align="center" align="center"
width="80px" width="75px"
> >
</el-table-column> </el-table-column>
<el-table-column prop="manDomicile" label="所在地" align="center"> <el-table-column prop="manDomicile" label="所在地" align="center">
</el-table-column> </el-table-column>
<el-table-column prop="orgName" label="登记处" align="center"> <el-table-column prop="orgName" label="登记处" align="center">
</el-table-column> </el-table-column>
<el-table-column prop="businessType" label="婚姻状况" align="center"> <el-table-column
prop="businessType"
label="婚姻状况"
align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
{{ {{
scope.row.businessType == "IA" scope.row.businessType == "IA"
...@@ -301,7 +307,7 @@ ...@@ -301,7 +307,7 @@
}} }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="registerDate" label="时间" align="center"> <el-table-column prop="registerDate" label="时间" align="center" width="120px">
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="paginationInfo"> <div class="paginationInfo">
...@@ -353,7 +359,7 @@ export default { ...@@ -353,7 +359,7 @@ export default {
address: "", address: "",
pageInfo: { pageInfo: {
page: 1, page: 1,
size: 6, size: 10,
total: 0, total: 0,
}, },
loading: true, loading: true,
...@@ -397,6 +403,7 @@ export default { ...@@ -397,6 +403,7 @@ export default {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.marriageSearchFun(); this.marriageSearchFun();
}, },
...@@ -963,6 +970,30 @@ export default { ...@@ -963,6 +970,30 @@ export default {
input::-webkit-input-placeholder { input::-webkit-input-placeholder {
color: #fff; color: #fff;
} }
// .el-table--scrollable-x ::-webkit-scrollbar {
// display: none;
// }
::-webkit-scrollbar {
width: 7px;
height: 8px;
background-color: transparent;
} /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar-track {
background-color: #f0f6ff;
} /*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-thumb {
background-color: #4c6888;
border-radius: 6px;
} /*定义滑块 内阴影+圆角*/
.scrollbarHide::-webkit-scrollbar {
display: none;
}
.scrollbarShow::-webkit-scrollbar {
display: block;
}
} }
.marriageImg { .marriageImg {
......
...@@ -182,6 +182,8 @@ ...@@ -182,6 +182,8 @@
v-model="value" v-model="value"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="cremationSearchFun"
/> />
<el-table <el-table
:data="tableData" :data="tableData"
...@@ -294,6 +296,7 @@ export default { ...@@ -294,6 +296,7 @@ export default {
methods: { methods: {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.cremationSearchFun(); this.cremationSearchFun();
}, },
......
...@@ -213,6 +213,8 @@ ...@@ -213,6 +213,8 @@
v-model="values" v-model="values"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="societyHelpSearchFun"
/> />
<el-table <el-table
:data="tableData" :data="tableData"
...@@ -237,7 +239,7 @@ ...@@ -237,7 +239,7 @@
prop="name" prop="name"
label="姓名" label="姓名"
align="center" align="center"
width="50px" width="80px"
> >
</el-table-column> </el-table-column>
<el-table-column prop="address" label="所在地" align="center"> <el-table-column prop="address" label="所在地" align="center">
...@@ -260,7 +262,7 @@ ...@@ -260,7 +262,7 @@
prop="endProvideDate" prop="endProvideDate"
label="时间" label="时间"
align="center" align="center"
width="70px" width="120px"
> >
</el-table-column> </el-table-column>
</el-table> </el-table>
...@@ -311,7 +313,7 @@ export default { ...@@ -311,7 +313,7 @@ export default {
tableData: [], tableData: [],
pageInfo: { pageInfo: {
page: 1, page: 1,
size: 10, size: 15,
total: 0, total: 0,
}, },
loading: true, loading: true,
...@@ -345,6 +347,7 @@ export default { ...@@ -345,6 +347,7 @@ export default {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.societyHelpSearchFun(); this.societyHelpSearchFun();
}, },
......
...@@ -250,6 +250,8 @@ ...@@ -250,6 +250,8 @@
v-model="value" v-model="value"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="soorganSearchFun"
/> />
<el-table <el-table
:data="tableData" :data="tableData"
...@@ -318,7 +320,7 @@ export default { ...@@ -318,7 +320,7 @@ export default {
tableData: [], tableData: [],
pageInfo: { pageInfo: {
page: 1, page: 1,
size: 15, size: 20,
total: 0, total: 0,
}, },
loading: true, loading: true,
...@@ -339,6 +341,7 @@ export default { ...@@ -339,6 +341,7 @@ export default {
methods: { methods: {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.soorganSearchFun(); this.soorganSearchFun();
}, },
......
...@@ -199,6 +199,8 @@ ...@@ -199,6 +199,8 @@
v-model="value" v-model="value"
@change="inputBtn" @change="inputBtn"
suffix-icon="el-icon-search" suffix-icon="el-icon-search"
clearable
clear="deformedManSearchFun"
/> />
<el-table <el-table
:data="tableData" :data="tableData"
...@@ -293,6 +295,7 @@ export default { ...@@ -293,6 +295,7 @@ export default {
methods: { methods: {
inputBtn() { inputBtn() {
console.log(this.value); console.log(this.value);
this.loading = true;
this.deformedManSearchFun(); this.deformedManSearchFun();
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment