2024-07-21 03:44:32 +00:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-tabs v-model="activeTab" class="center-tabs" @tab-click="handleTabsClick">
|
|
|
|
|
<el-tab-pane label="月结账单列表" name="billList" >
|
2024-07-22 00:43:22 +00:00
|
|
|
<MonthPanel @onSelect="onSelectBill"> </MonthPanel>
|
2024-07-21 03:44:32 +00:00
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="明细数据" name="dtlList" >
|
2024-07-22 00:43:22 +00:00
|
|
|
<BillDetailListPanel :queryObj="queryObj"> </BillDetailListPanel>
|
2024-07-21 03:44:32 +00:00
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import MonthPanel from '@/views/emis/emisSettleBill/panel/MonthPanel.vue';
|
|
|
|
|
import BillDetailListPanel from '@/views/emis/emisSettleBill/panel/BillDetailListPanel.vue';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "SettleMainBillMonthList",
|
|
|
|
|
components: {
|
|
|
|
|
MonthPanel,
|
|
|
|
|
BillDetailListPanel
|
|
|
|
|
},
|
|
|
|
|
dicts: [
|
|
|
|
|
],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
activeTab:'billList',
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-07-22 00:43:22 +00:00
|
|
|
onSelectBill(item) {
|
|
|
|
|
this.queryObj=item;
|
|
|
|
|
this.activeTab="dtlList";
|
2024-07-21 03:44:32 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|