|
|
@ -1,5 +1,5 @@ |
|
|
|
<template> |
|
|
|
<div class="filterForDetailPage" v-if="dialogShow"> |
|
|
|
<div class="filterForDetailPage" v-if="dialogShow"> |
|
|
|
<el-dialog |
|
|
|
title="明细查询" |
|
|
|
:visible.sync="dialogShow" |
|
|
@ -30,6 +30,7 @@ |
|
|
|
:multipleSelection="multipleSelection" |
|
|
|
:MaxResultCount="PageListParams.MaxResultCount" |
|
|
|
:setUTableHeight="setUTableHeight" |
|
|
|
:selectMaxHeight="'116px'" |
|
|
|
@topbutton="topbutton" |
|
|
|
@inlineDialog="inlineDialog" |
|
|
|
@sortChange="sortChange" |
|
|
@ -118,17 +119,17 @@ |
|
|
|
<el-table-column property="address" label="地址"></el-table-column> |
|
|
|
</el-table> --> |
|
|
|
</el-dialog> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
import currenDescriptions from "@/components/currenDescriptions" |
|
|
|
import { tableMixins } from "@/mixins/TableMixins"; |
|
|
|
import { TableHeaderMixins } from "@/mixins/TableHeaderMixins"; |
|
|
|
import { LoadingMixins } from "@/mixins/LoadingMixins"; |
|
|
|
import { mixins } from "@/mixins/mixins"; |
|
|
|
import { filterSelectMixins } from '@/mixins/filter-Select' |
|
|
|
import {getListDesById,getPageListForDetail} from "@/api/wms-api" |
|
|
|
export default { |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
<script> |
|
|
|
import currenDescriptions from "@/components/currenDescriptions" |
|
|
|
import { tableMixins } from "@/mixins/TableMixins"; |
|
|
|
import { TableHeaderMixins } from "@/mixins/TableHeaderMixins"; |
|
|
|
import { LoadingMixins } from "@/mixins/LoadingMixins"; |
|
|
|
import { mixins } from "@/mixins/mixins"; |
|
|
|
import { filterSelectMixins } from '@/mixins/filter-Select' |
|
|
|
import {getListDesById,getPageListForDetail} from "@/api/wms-api" |
|
|
|
export default { |
|
|
|
name: 'filterForDetailPage', |
|
|
|
mixins: [ |
|
|
|
tableMixins, |
|
|
@ -203,6 +204,10 @@ export default { |
|
|
|
data () { |
|
|
|
return { |
|
|
|
dialogShow:true, |
|
|
|
// URLOption_detailList:allUrlOption[this.$route.name].detailListURL,//明细-列表 |
|
|
|
// URLOption_masterId:allUrlOption[this.$route.name].masterId || 'masterId',//明细-查看主表的连接id |
|
|
|
// URLOption_masterName:allUrlOption[this.$route.name].masterName,//明细-列表//明细-查看主表的连接title名称 |
|
|
|
// URLOption_parent:allUrlOption[this.$route.name].parentURL ? allUrlOption[this.$route.name].parentURL : allUrlOption[this.$route.name].detailURL,//明细-查看主表 |
|
|
|
currenButtonData: [],//头部按钮 |
|
|
|
operaButtons:[],//操作列按钮 |
|
|
|
showParentDialog:false,//显示父级数据弹窗 |
|
|
@ -311,10 +316,11 @@ export default { |
|
|
|
// }) |
|
|
|
}, |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
.filterForDetailPage { |
|
|
|
} |
|
|
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
.filterForDetailPage { |
|
|
|
|
|
|
|
.mainTable-dialog{ |
|
|
|
.el-dialog{ |
|
|
|
height: calc(100% - 100px); |
|
|
@ -324,9 +330,9 @@ export default { |
|
|
|
min-height: 200px; |
|
|
|
padding-bottom: 20px !important; |
|
|
|
} |
|
|
|
} |
|
|
|
.filterForDetailPage-list{ |
|
|
|
} |
|
|
|
.filterForDetailPage-list{ |
|
|
|
height: calc(100%); |
|
|
|
overflow: auto; |
|
|
|
} |
|
|
|
</style> |
|
|
|
} |
|
|
|
</style> |