forked from drone/command-center-dashboard

张含笑
2025-04-10 2b3277dffa7afccba13ab281bf0a3e8c0b9cbc3f
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>