1
lzhe
2024-11-22 9626da258c0fa38ae891fe4627d5843cfe5078c3
1
已添加1个文件
79 ■■■■■ 文件已修改
src/views/mdc/first-workpiece.vue 79 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mdc/first-workpiece.vue
对比新文件
@@ -0,0 +1,79 @@
<!--
 * @Author: lzhe lzhe@example.com
 * @Date: 2024-04-26 09:36:18
 * @LastEditors: lzhe lzhe@example.com
 * @LastEditTime: 2024-11-22 18:45:06
 * @FilePath: /smart-web/src/views/mdc/status-record.vue
 * @Description: 杩欐槸榛樿璁剧疆,璇疯缃甡customMade`, 鎵撳紑koroFileHeader鏌ョ湅閰嶇疆 杩涜璁剧疆: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
    <el-main style="height: 100%;" class="timeAnalysis">
        <el-card shadow="never" style="height: 100%;" body-style="height: 100%;padding: 0;">
            <el-container style="height: 100%;">
                <el-aside width="300px" style="height: 100%;">
                    <el-container>
                        <el-main style="padding: 20px;">
                            <el-row>
                                <el-col style="margin-bottom: 12px;">鏃ユ湡</el-col>
                            </el-row>
                            <el-row style="margin-top: 14px;">
                                <MYTree getAll v-model="treeChecked" show-checkbox class="MYTree-content"></MYTree>
                            </el-row>
                        </el-main>
                        <el-footer>
                            <el-button @click="query" type="primary">鏌ヨ</el-button>
                            <exportDialog @export="exportExcel"></exportDialog>
                        </el-footer>
                    </el-container>
                </el-aside>
                <el-container>
                    <el-main style="position: relative;">
                    </el-main>
                </el-container>
            </el-container>
        </el-card>
        <!-- <el-dialog title="璁剧疆" v-model="dialogVisible" v-if="dialogVisible" width="30%" class="setModelStyle">
            <Efficiency :showModalList="showModalList" />
        </el-dialog> -->
    </el-main>
</template>
<script>
//import exportDialog from '@/layout/components/exportDialog.vue'
import * as ElementPlusIconsVue from '@element-plus/icons-vue'
//import Efficiency from './configComp/Efficiency.vue'
let icons = []
for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
    icons.push(key)
}
import * as echarts from 'echarts';
import MYTree from './MYTree.vue';
export default {
    components: {
        ...ElementPlusIconsVue,MYTree
    },
    data() {
        return {
            treeChecked: []
        }
    },
    created() {
    },
    mounted() {
    },
    methods: {
        query() {
        }
    }
}
</script>
<style scoped>
    /* .timeAnalysis >>> .el-dialog__body {
        padding-bottom: 0px;
        padding-top: 0px;
    } */
</style>