| | |
| | | <!-- |
| | | * @Date: 2024-04-17 22:17:37 |
| | | * @LastEditors: Sneed |
| | | * @LastEditTime: 2024-04-22 19:07:49 |
| | | * @LastEditors: lzhe lzhe@example.com |
| | | * @LastEditTime: 2024-11-04 11:56:34 |
| | | * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/mdc/configComp/Efficiency.vue |
| | | --> |
| | | <template> |
| | | <el-main> |
| | | <el-row> |
| | | <el-col> |
| | | <el-card style="max-width: 480px"> |
| | | <el-card style="max-width: 480px" v-show="showModalList.includes(1)"> |
| | | <template #header> |
| | | <div class="card-header"> |
| | | 用时分析(用时分布) |
| | |
| | | </el-col> |
| | | </el-row> |
| | | </el-card> |
| | | <el-card style="max-width: 480px"> |
| | | <el-card style="max-width: 480px" v-show="showModalList.includes(2)"> |
| | | <template #header> |
| | | <div class="card-header"> |
| | | 效率分析 |
| | |
| | | </el-col> |
| | | </el-row> |
| | | </el-card> |
| | | <el-card style="max-width: 480px"> |
| | | <el-card style="max-width: 480px" v-show="showModalList.includes(3)"> |
| | | <template #header> |
| | | <div class="card-header"> |
| | | 产量统计 |
| | |
| | | </el-col> |
| | | </el-row> |
| | | </el-card> |
| | | <el-card style="max-width: 480px"> |
| | | <el-card style="max-width: 480px" v-show="showModalList.includes(4)"> |
| | | <template #header> |
| | | <div class="card-header"> |
| | | 报警统计 |
| | |
| | | |
| | | <script> |
| | | export default { |
| | | props: { |
| | | showModalList: { |
| | | type: Array, |
| | | required: false, |
| | | defalut: [1,2,3,4] //1用时分析,2效率分析,3产量统计,4报警统计 |
| | | } |
| | | }, |
| | | data() { |
| | | return { |
| | | mdc_open_typeId: '', |