|
|
@@ -36,16 +36,6 @@ |
|
|
|
end-placeholder="结束日期" |
|
|
|
></el-date-picker> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="状态"> |
|
|
|
<el-select |
|
|
|
clearable |
|
|
|
v-model="searchParam.status" |
|
|
|
size="small" |
|
|
|
placeholder="-请选择-" |
|
|
|
> |
|
|
|
<el-option v-for="(item,index) in statusList" :key="index" :label="item.name" :value="item.id"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item> |
|
|
|
<el-button |
|
|
|
:loading="tableLoading" |
|
|
@@ -124,10 +114,6 @@ |
|
|
|
name: "water-data", |
|
|
|
data() { |
|
|
|
return { |
|
|
|
statusList: [ |
|
|
|
{id: 1, name: '有效'}, |
|
|
|
{id: 2, name: '无效'} |
|
|
|
], |
|
|
|
editVisible: false, |
|
|
|
exportVisible: false, |
|
|
|
dataChild: {}, |
|
|
@@ -135,15 +121,14 @@ |
|
|
|
dataList: [], |
|
|
|
currentPage: 1, |
|
|
|
count: 0, |
|
|
|
pageSize: parseInt((document.body.clientHeight - 300 - 43) / 43), |
|
|
|
tableHeight: document.body.clientHeight - 300, |
|
|
|
pageSize: parseInt((document.body.clientHeight - 250 - 43) / 43), |
|
|
|
tableHeight: document.body.clientHeight - 250, |
|
|
|
tableLoading: false, |
|
|
|
searchParam: { |
|
|
|
inspectNo: "", |
|
|
|
driverName: "", |
|
|
|
driverArea: "", |
|
|
|
inspectTime: "", |
|
|
|
status:'' |
|
|
|
inspectTime: "" |
|
|
|
} |
|
|
|
}; |
|
|
|
}, |
|
|
@@ -203,8 +188,7 @@ |
|
|
|
inspectNo: "", |
|
|
|
driverName: "", |
|
|
|
driverArea: "", |
|
|
|
inspectTime: "", |
|
|
|
status:'' |
|
|
|
inspectTime: "" |
|
|
|
}; |
|
|
|
}, |
|
|
|
search() { |