1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <el-dialog
- :title="'统计'"
- width="80%"
- v-model="visible"
- :destroy-on-close="true"
- :close-on-click-modal="false"
- draggable>
- <div class="statistics-table-wrapper">
- <StatisticsIndex />
- </div>
- </el-dialog>
- </template>
- <script setup lang="ts">
- import { ref } from 'vue';
- import StatisticsIndex from '../statistics/index.vue';
- const visible = ref(false);
- // 打开弹窗
- const openDialog = async (row: any) => {
- visible.value = true;
- };
- // 暴露变量 只有暴漏出来的变量 父组件才能使用
- defineExpose({
- openDialog,
- });
- </script>
- <style>
- .config-container {
- display: flex;
- align-items: center;
- margin-bottom: 10px;
- font-size: 14px;
- font-weight: 400;
- width: 100%;
- justify-content: start;
- }
- .config-actions {
- width: 50px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .apps-loadmore.el-select-dropdown .el-scrollbar__wrap {
- height: 330px !important;
- }
- .statistics-table-wrapper {
- height: 70vh;
- position: relative;
- }
- </style>
|