|
|
@ -66,7 +66,7 @@ |
|
|
</el-form> |
|
|
</el-form> |
|
|
<div v-loading="delNotifyHeaderTableLoading"> |
|
|
<div v-loading="delNotifyHeaderTableLoading"> |
|
|
<el-table |
|
|
<el-table |
|
|
:height="300" |
|
|
|
|
|
|
|
|
:height="height" |
|
|
:data="delNotifyHeaderList" |
|
|
:data="delNotifyHeaderList" |
|
|
border stripe |
|
|
border stripe |
|
|
@row-click="rowClickDelNotifyHeaderTable" |
|
|
@row-click="rowClickDelNotifyHeaderTable" |
|
|
@ -177,7 +177,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<el-table :data="delNotifyDetailList" |
|
|
<el-table :data="delNotifyDetailList" |
|
|
height="300" |
|
|
|
|
|
|
|
|
height="250" |
|
|
border stripe |
|
|
border stripe |
|
|
style="margin-top: 10px;"> |
|
|
style="margin-top: 10px;"> |
|
|
<el-table-column label="操作" width="150px" header-align="center" fixed align="center"> |
|
|
<el-table-column label="操作" width="150px" header-align="center" fixed align="center"> |
|
|
@ -554,6 +554,7 @@ import {Decimal} from "decimal.js"; |
|
|
export default { |
|
|
export default { |
|
|
data() { |
|
|
data() { |
|
|
return { |
|
|
return { |
|
|
|
|
|
height:200, |
|
|
// 搜索表单对象 |
|
|
// 搜索表单对象 |
|
|
searchData:{ |
|
|
searchData:{ |
|
|
site:"", |
|
|
site:"", |
|
|
@ -599,6 +600,11 @@ export default { |
|
|
subCodeDesc:"",//描述 |
|
|
subCodeDesc:"",//描述 |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
|
|
|
mounted () { |
|
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
|
this.height = window.innerHeight - 475 |
|
|
|
|
|
}) |
|
|
|
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
searchDelHeaderList(){ |
|
|
searchDelHeaderList(){ |
|
|
let params = JSON.parse(JSON.stringify(this.searchData)) |
|
|
let params = JSON.parse(JSON.stringify(this.searchData)) |
|
|
|