forked from drone/command-center-dashboard

张含笑
2025-04-10 fee18d19a1d961847cd09469a20fc8231c1df46c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!--当前任务详情-->
<template>
  <el-dialog
        modal-class="current-task-details"
        v-model="isShowCurrentTaskDetails"
        title="当前任务详情"
        :width="pxToRem(1500)"
        :close-on-click-modal="false"
        :destroy-on-close="true">
        <div class=""></div>
  </el-dialog>
</template>
 
<script setup>
const isShowCurrentTaskDetails = defineModel('show');
</script>
 
<style lang="scss" scoped>
.current-task-details {}
</style>