|
|
@ -61,6 +61,7 @@ |
|
|
|
</curren-descriptions> |
|
|
|
<!-- 明细 包含分页 头部按钮等 --> |
|
|
|
<tablePagination |
|
|
|
ref="tablePaginationForMX_Ref" |
|
|
|
v-if="scope.value == 'mx'" |
|
|
|
:currenButtonData="detailHeaderButton" |
|
|
|
:tableData="propsData.details" |
|
|
@ -562,6 +563,14 @@ export default { |
|
|
|
buttonClick(row) { |
|
|
|
this.$emit("buttonClick", row); |
|
|
|
}, |
|
|
|
// 重新渲染表格 |
|
|
|
doFreshTableLayout(){ |
|
|
|
this.$nextTick(() => { |
|
|
|
if(this.$refs.tablePaginationForMX_Ref && this.$refs.tablePaginationForMX_Ref.doFreshTableLayout){ |
|
|
|
this.$refs.tablePaginationForMX_Ref.doFreshTableLayout() |
|
|
|
} |
|
|
|
}) |
|
|
|
}, |
|
|
|
// tabs 切换页 |
|
|
|
handleClick (val) { |
|
|
|
this.$emit("currenTabsChange", val);//父级获取当前的tab内容 |
|
|
@ -605,6 +614,7 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
this.doFreshTableLayout() |
|
|
|
}, |
|
|
|
// 递归 子级层级 |
|
|
|
recursion(val){ |
|
|
|