|
|
@ -69,8 +69,11 @@ |
|
|
|
</el-select> |
|
|
|
</el-form-item> --> |
|
|
|
|
|
|
|
<div class="u-search-btn"> |
|
|
|
<el-button class="diy-button--white" size="small" @click="resetForm" |
|
|
|
|
|
|
|
</el-form> |
|
|
|
<el-row> |
|
|
|
<el-col :span="24" align="right"> |
|
|
|
<el-button class="diy-button--white" size="small" @click="resetForm" |
|
|
|
>重置</el-button |
|
|
|
> |
|
|
|
<el-button |
|
|
@ -80,8 +83,8 @@ |
|
|
|
@click="getDataList" |
|
|
|
>查询</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
</el-form> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
</div> |
|
|
|
<div class="m-table"> |
|
|
|
<div class="u-table-btn1"> |
|
|
@ -96,6 +99,7 @@ |
|
|
|
class="m-table-item" |
|
|
|
v-loading="dataListLoading" |
|
|
|
:data="dataList" |
|
|
|
:height="tableHeight" |
|
|
|
border |
|
|
|
> |
|
|
|
<!--<el-table-column type="selection" header-align="center" align="center" width="50"></el-table-column>--> |
|
|
@ -277,7 +281,7 @@ import nextTick from "dai-js/tools/nextTick"; |
|
|
|
import resiChangeRecord from "@/views/components/resiChangeRecord.vue"; |
|
|
|
import { requestPost } from "@/js/dai/request"; |
|
|
|
import resiInfo from "@/views/components/resiInfo.vue"; |
|
|
|
|
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
export default { |
|
|
|
mixins: [mixinViewModule], |
|
|
|
data() { |
|
|
@ -328,6 +332,14 @@ export default { |
|
|
|
resiInfo, |
|
|
|
resiChangeRecord, |
|
|
|
}, |
|
|
|
computed:{ |
|
|
|
...mapGetters(["clientHeight", "iframeHeight"]), |
|
|
|
tableHeight(){ |
|
|
|
const h = this.clientHeight - 410 + this.iframeHeigh; |
|
|
|
const _h = this.clientHeight - 410; |
|
|
|
return this.$store.state.inIframe ? h : _h; |
|
|
|
}, |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
async handleRecovery(rowData) { |
|
|
|
console.log("11111"); |
|
|
|