shj
2022-09-20 7df64634d3d7b292713eebfa008c40b3f5f9f65f
src/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/component/regionsDialog.vue
@@ -1,5 +1,5 @@
<template>
  <el-dialog v-model="dialogVisible" title="选择应急预案" width="900px" draggable :fullscreen="full">
  <el-dialog v-model="dialogVisible" title="选择演练计划" width="900px" draggable :fullscreen="full">
    <el-button @click="toggleFullscreen" size="small" class="pot" :icon="FullScreen"></el-button>
    <el-row>
      <el-col :span="18">
@@ -32,7 +32,7 @@
              </el-radio-group>
            </template>
          </el-table-column>
          <el-table-column align="center" prop="drillName" label="预案名称" />
          <el-table-column align="center" prop="drillName" label="演练名称" />
        </el-table>
        <div class="pages">
          <el-pagination
@@ -74,9 +74,9 @@
import { defineComponent, reactive, ref, onMounted } from 'vue';
import { ElMessage } from 'element-plus';
import { Delete, FullScreen } from '@element-plus/icons-vue';
import { emergencyPlanLogApi } from '/@/api/emergencyPlanLog';
import { emergencyPlanApi } from '/@/api/emergencyPlan';
import {releaseDrillPlanApi} from "/@/api/emergencyDrillPlan";
import { emergencyPlanLogApi } from '/@/api/contingencyManagement/emergencyPlanLog';
import { emergencyPlanApi } from '/@/api/contingencyManagement/emergencyPlan';
import {releaseDrillPlanApi} from "/@/api/contingencyManagement/emergencyDrillPlan";
export default defineComponent({
  setup(props, { emit }) {
    const dialogVisible = ref<boolean>(false);