13937891274
2022-07-18 d57a6d8cca922c9a701887c0403c10d663a258cb
src/views/contingencyManagement/emergencyDrill/drillImplementationEvaluation/component/rectificationDialog.vue
@@ -5,7 +5,9 @@
        v-model="isShowDialog"
        width="769px"
        draggable
        :fullscreen="full"
    >
      <el-button @click="toggleFullscreen" size="small" class="pot" :icon="FullScreen"></el-button>
      <el-form
          ref="ruleFormRef"
          :model="ruleForm"
@@ -180,6 +182,7 @@
                  placeholder="请选择"/>
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
          <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
            <el-tab-pane label="组织整改" name="first">
              <el-row style="margin: 0">
@@ -227,6 +230,7 @@
              </el-row>
            </el-tab-pane>
          </el-tabs>
          </el-col>
        </el-row>
      </el-form>
      <template #footer>
@@ -258,7 +262,8 @@
} from 'element-plus'
import {
  Search,
  Plus
  Plus,
  FullScreen
} from '@element-plus/icons-vue'
import UserSelections from "/@/components/userSelections/index.vue"
import CheckTemplate from '/@/components/checkTemplate/index.vue'
@@ -502,6 +507,15 @@
      }
      return true
    }
    //全屏
    const full = ref(false);
    const toggleFullscreen = () => {
      if (full.value == false) {
        full.value = true;
      } else {
        full.value = false;
      }
    };
    return {
      openDialog,
      closeDialog,
@@ -527,6 +541,9 @@
      handleAvatarSuccess,
      beforeAvatarUpload,
      Plus,
      toggleFullscreen,
      FullScreen,
      full,
    };
  },
});