diff --git a/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue b/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue index a1d7c1b..9e66c5f 100644 --- a/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue +++ b/PC/InterFace.Dash/src/components/commonTabel-drawer/index.vue @@ -69,6 +69,7 @@ @rowDrop="rowDrop" :searchOverallCoverHeight="'calc(100vh - 345px)'" :rowSource="'detail_api'" + :rowMaxHeight="rowMaxHeight" :totalCount="totalCountForDetail" :MaxResultCount="MaxResultCount" @sortChange="sortChangeForDetail" @@ -179,6 +180,10 @@ export default { LoadingMixins, ], props: { + rowMaxHeight:{ + type:String, + default:'calc(90vh - 450px)' + }, // 操作列按钮 buttonOperationList_left:{ type: Array, diff --git a/PC/InterFace.Dash/src/components/filterForDetailPage/index.vue b/PC/InterFace.Dash/src/components/filterForDetailPage/index.vue index db61bae..dcbfd51 100644 --- a/PC/InterFace.Dash/src/components/filterForDetailPage/index.vue +++ b/PC/InterFace.Dash/src/components/filterForDetailPage/index.vue @@ -229,6 +229,7 @@ mounted(){ }, methods: { rowDropForDetail(data,type){ + this.listColumns = data this.$emit("rowDropForDetail", data,type) }, // 初始化显示按钮 @@ -262,7 +263,7 @@ methods: { // 表头处理 let _parentName = this.URLOption_detailList.substr(0,this.URLOption_detailList.indexOf('/')) let _Columns = this.initApiColumnsForDto(res.items[0],_parentName) - this.listColumns = this.initTableColumns(_Columns) + this.listColumns = this.initTableColumns(_Columns,'detailPage_api') // 页面数据处理 if(res){ this.Loading.tableLoading = false diff --git a/PC/InterFace.Dash/src/mixins/TableMixins.js b/PC/InterFace.Dash/src/mixins/TableMixins.js index 54a3a24..201a177 100644 --- a/PC/InterFace.Dash/src/mixins/TableMixins.js +++ b/PC/InterFace.Dash/src/mixins/TableMixins.js @@ -189,7 +189,7 @@ export const tableMixins = { .then(res=>{ // 表头处理 let _parentName = this.URLOption_detailList.substr(0,this.URLOption_detailList.indexOf('/')) - this.apiColumns_DetailsTable = this.initTableColumns(this.initApiColumnsForDto(res.details[0],_parentName)) + this.apiColumns_DetailsTable = this.initTableColumns(this.initApiColumnsForDto(res.details[0],_parentName),'detail_api') // 打印使用的全部数据存储 this.tableDataDetails = JSON.parse(JSON.stringify(res)) this.propsData = res diff --git a/PC/InterFace.Dash/src/views/menuList/AsnMstr.vue b/PC/InterFace.Dash/src/views/menuList/AsnMstr.vue index 27e4e34..833ccd6 100644 --- a/PC/InterFace.Dash/src/views/menuList/AsnMstr.vue +++ b/PC/InterFace.Dash/src/views/menuList/AsnMstr.vue @@ -48,9 +48,7 @@ :buttonOperationList_left="operationButtonsDetail" > -