|
@ -78,8 +78,8 @@ |
|
|
:currentPageProps="oldSkipCount" |
|
|
:currentPageProps="oldSkipCount" |
|
|
@overallSearchFormClick="overallSearchClickForDetail" |
|
|
@overallSearchFormClick="overallSearchClickForDetail" |
|
|
:httpOverallSearchData="httpOverallSearchData" |
|
|
:httpOverallSearchData="httpOverallSearchData" |
|
|
@buttonOperationClick="buttonOperationClick" |
|
|
@buttonOperationClick_left="buttonOperationClick_left" |
|
|
:buttonOperationList="buttonOperationList" |
|
|
:buttonOperationList_left="buttonOperationList_left" |
|
|
:tableLoading="Loading.tableLoading" |
|
|
:tableLoading="Loading.tableLoading" |
|
|
></tablePagination> |
|
|
></tablePagination> |
|
|
<!-- 新增汇总 表头 区分明细表头使用 summaryTableColumns --> |
|
|
<!-- 新增汇总 表头 区分明细表头使用 summaryTableColumns --> |
|
@ -205,7 +205,7 @@ export default { |
|
|
], |
|
|
], |
|
|
props: { |
|
|
props: { |
|
|
// 操作列按钮 |
|
|
// 操作列按钮 |
|
|
buttonOperationList:{ |
|
|
buttonOperationList_left:{ |
|
|
type: Array, |
|
|
type: Array, |
|
|
default: null, |
|
|
default: null, |
|
|
}, |
|
|
}, |
|
@ -531,7 +531,7 @@ export default { |
|
|
this.displayDialog.detailInfoDialog = val || false |
|
|
this.displayDialog.detailInfoDialog = val || false |
|
|
}, |
|
|
}, |
|
|
// 明细-操作列事件 |
|
|
// 明细-操作列事件 |
|
|
buttonOperationClick(row, item, index){ |
|
|
buttonOperationClick_left(row, item, index){ |
|
|
// 查看详情 |
|
|
// 查看详情 |
|
|
if(item.name == "info"){ |
|
|
if(item.name == "info"){ |
|
|
this.displayDialog.detailInfoDialog = true |
|
|
this.displayDialog.detailInfoDialog = true |
|
@ -539,7 +539,7 @@ export default { |
|
|
let _name = allUrlOption[this.$route.name].detailInfoName |
|
|
let _name = allUrlOption[this.$route.name].detailInfoName |
|
|
this.detailInfoTitle = _name ? row[_name] + ' 详情' : '详情' |
|
|
this.detailInfoTitle = _name ? row[_name] + ' 详情' : '详情' |
|
|
} |
|
|
} |
|
|
this.$emit('buttonOperationClick',row, item, index) |
|
|
this.$emit('buttonOperationClick_left',row, item, index) |
|
|
}, |
|
|
}, |
|
|
rowDrop(data,type) { |
|
|
rowDrop(data,type) { |
|
|
this.$emit('rowDrop',data,type) |
|
|
this.$emit('rowDrop',data,type) |
|
|