From 2cc7a0f4af5923103dff8c87fb885bb552246dfd Mon Sep 17 00:00:00 2001
From: zhaojiale <631455805@qq.com>
Date: 星期四, 11 八月 2022 19:05:04 +0800
Subject: [PATCH] 安全目标考核
---
src/views/contingencyManagement/emergencyResources/emergencySupplies/component/personInCharge.vue | 24 ++++++++++++++++++++++--
1 files changed, 22 insertions(+), 2 deletions(-)
diff --git a/src/views/contingencyManagement/emergencyResources/emergencySupplies/component/personInCharge.vue b/src/views/contingencyManagement/emergencyResources/emergencySupplies/component/personInCharge.vue
index 80182a0..2e719ea 100644
--- a/src/views/contingencyManagement/emergencyResources/emergencySupplies/component/personInCharge.vue
+++ b/src/views/contingencyManagement/emergencyResources/emergencySupplies/component/personInCharge.vue
@@ -1,5 +1,12 @@
<template>
- <el-dialog v-model="dialogVisible" title="选择岗位id" width="900px" draggable>
+ <el-dialog
+ v-model="dialogVisible"
+ title="选择岗位id"
+ width="900px"
+ draggable
+ :fullscreen="full"
+ >
+ <el-button @click="toggleFullscreen" size="small" class="pot" :icon="FullScreen"></el-button>
<el-row>
<el-col :span="18">
<el-row>
@@ -80,7 +87,8 @@
ref,
} from 'vue';
import {
- Delete
+ Delete,
+ FullScreen
} from '@element-plus/icons-vue';
interface User {
date: string
@@ -134,6 +142,15 @@
const radio=(event:any)=>{
dynamicTags.value[0]=event
}
+ //全屏
+ const full = ref(false);
+ const toggleFullscreen = () => {
+ if (full.value == false) {
+ full.value = true;
+ } else {
+ full.value = false;
+ }
+ };
return {
dialogVisible,
openDailog,
@@ -147,6 +164,9 @@
Delete,
radio1,
radio,
+ toggleFullscreen,
+ FullScreen,
+ full,
};
},
});
--
Gitblit v1.9.2