更新数据

This commit is contained in:
2025-07-22 15:01:30 +08:00
parent 3c1c42a8c5
commit 36d23fcbdb
4 changed files with 210 additions and 52 deletions

View File

@ -0,0 +1,19 @@
<template>
<el-dialog v-model="modelValue" :destroy-on-close="true" title="报告模板+'人员'" @close="close" :close-on-click-modal="false">
<div>4444</div>
</el-dialog>
</template>
<script setup>
import { reactive, ref } from 'vue';
const props = defineProps({
modelValue:{
type:Boolean,
default:true
}
})
</script>
<style lang="scss" scoped>
</style>

View File

@ -62,9 +62,12 @@
</div>
</div>
</div>
<!-- 详情 -->
<Detail></Detail>
</template>
<script setup>
import Detail from './components/detail.vue'
import { qcckPost, qcckGet } from "@/api/qcckApi.js";
import MoreBarEcharts from "@/views/home/echarts/moreBarEcharts.vue";
import LineEcharts from "@/views/home/echarts/moreLineEcharts.vue";