|
@ -122,7 +122,11 @@ |
|
|
align="center" |
|
|
align="center" |
|
|
prop="dikeName" |
|
|
prop="dikeName" |
|
|
min-width="120" |
|
|
min-width="120" |
|
|
/> |
|
|
> |
|
|
|
|
|
<template> |
|
|
|
|
|
{{ this.formData.dikeName}} |
|
|
|
|
|
</template> |
|
|
|
|
|
</el-table-column> |
|
|
<el-table-column |
|
|
<el-table-column |
|
|
label="记录更新时间" |
|
|
label="记录更新时间" |
|
|
align="center" |
|
|
align="center" |
|
@ -210,7 +214,7 @@ import { |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: "Jyjl", |
|
|
name: "Jyjl", |
|
|
props: ["dikeCode"], |
|
|
props: ["dikeCode","formData"], |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
// 遮罩层 |
|
|
// 遮罩层 |
|
@ -281,11 +285,13 @@ export default { |
|
|
}, |
|
|
}, |
|
|
/** 查询决溢记录列表 */ |
|
|
/** 查询决溢记录列表 */ |
|
|
getList() { |
|
|
getList() { |
|
|
|
|
|
this.loading=true |
|
|
this.queryParams.data.dikeCode = this.dikeCode; |
|
|
this.queryParams.data.dikeCode = this.dikeCode; |
|
|
listJyjl(this.queryParams).then((response) => { |
|
|
listJyjl(this.queryParams).then((response) => { |
|
|
if (response.records[0]) { |
|
|
if (response.records[0]) { |
|
|
this.form = response.records[0]; |
|
|
this.form = response.records[0]; |
|
|
this.tableData=response.record; |
|
|
this.tableData=response.records; |
|
|
|
|
|
console.log(this.tableData) |
|
|
this.loading=false |
|
|
this.loading=false |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|