<template>
|
<div class="system-edit-user-container">
|
<el-dialog
|
:title="titles"
|
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"
|
size="default"
|
label-width="120px"
|
:disabled="disabled"
|
>
|
<el-row :gutter="35">
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
|
<el-form-item label="演练名称" prop="drillPlanId">
|
<el-input
|
v-model="ruleForm.drillPlanId"
|
placeholder="请选择"
|
class="input-with-select"
|
>
|
<template #append>
|
<el-button :icon="Search" @click="regionsDialog"/>
|
</template>
|
</el-input>
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
|
<el-form-item label="实际到场人员" prop="autualUser" >
|
<el-input
|
v-model="ruleForm.autualUser"
|
placeholder="请选择"
|
class="input-with-select"
|
>
|
<template #append>
|
<el-button :icon="Search" @click="openUser"/>
|
</template>
|
</el-input>
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
|
<el-form-item label="演练过程描述" prop="processDesc">
|
<el-input
|
v-model="ruleForm.processDesc"
|
placeholder="请填写演练目的"
|
class="textarea"
|
type="textarea"
|
/>
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="演练记录人" prop="recordUserUid" >
|
<el-input
|
v-model="ruleForm.recordUserUid"
|
placeholder="请选择"
|
class="input-with-select"
|
>
|
<template #append>
|
<el-button :icon="Search" @click="daiInpt"/>
|
</template>
|
</el-input>
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
|
<el-form-item label="演练记录时间" prop="drillRecordDate">
|
<el-date-picker
|
class="w100"
|
v-model="ruleForm.drillRecordDate"
|
type="datetime"
|
placeholder="选择日期时间"
|
value-format="YYYY-MM-DD HH:mm:ss"
|
/>
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="resetForm(ruleFormRef)" size="default">关闭</el-button>
|
<el-button size="default" v-if="disabled == true ? false : true" type="primary" @click="submitForm(titles, ruleFormRef)">确定</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
<UserSelect ref="Shows"/>
|
<UserCheckbox ref="userRef"/>
|
<RegionsDialog ref="openRef"/>
|
</div>
|
</template>
|
|
<script lang="ts">
|
import {
|
// reactive,
|
ref,
|
defineComponent
|
} from 'vue';
|
|
import type {
|
FormInstance,
|
// FormRules,
|
} from 'element-plus'
|
import { ElMessage } from 'element-plus';
|
import {
|
Search,
|
FullScreen
|
} from '@element-plus/icons-vue'
|
import UserCheckbox from "/@/components/userCheckbox/index.vue"
|
import UserSelect from '/@/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/component/userSelect.vue'
|
import RegionsDialog from '/@/views/contingencyManagement/emergencyDrill/implementationOfEmergencyDrill/component/regionsDialog.vue'
|
import {emergencyDrillExecuteApi} from "/@/api/emergencyDrillExecute";
|
|
export default defineComponent({
|
name: 'openAdd',
|
components: {
|
UserSelect,
|
UserCheckbox,
|
RegionsDialog,
|
},
|
setup(props, { emit }) {
|
const isShowDialog = ref(false)
|
|
const ruleFormRef = ref<FormInstance>()
|
//定义表单
|
const ruleForm = ref ({
|
drillRecordDate: '', // 演练记录时间
|
drillPlanId: '', //演练计划ID
|
recordUserUid: '', // 记录人ID
|
processDesc: '', // 演练过程描述
|
userList: [
|
{
|
userUid: '',
|
},
|
{
|
userUid: '',
|
}
|
]
|
});
|
const titles = ref();
|
const disabled = ref();
|
// 打开弹窗
|
const openDialog = (title: string, id: number, type: boolean) => {
|
isShowDialog.value = true;
|
titles.value = title;
|
disabled.value = type;
|
if (title == '查看应急演练实施' || title == '修改应急演练实施') {
|
emergencyDrillExecuteApi()
|
.seeEmergencyDrillExecute(id)
|
.then((res) => {
|
if (res.data.code == 200) {
|
ruleForm.value = res.data.data;
|
}
|
});
|
}
|
};
|
//日期选择器
|
const drillRecordDate = ref('')
|
// 表单提交验证必填项
|
const submitForm = async (title: string, formEl: FormInstance | undefined) => {
|
if (title == '新建应急演练实施') {
|
if (!formEl) return;
|
await formEl.validate((valid, fields) => {
|
if (valid) {
|
isShowDialog.value = false;
|
emergencyDrillExecuteApi()
|
.addEmergencyDrillExecute(ruleForm.value)
|
.then((res) => {
|
if (res.data.code == 200) {
|
ElMessage({
|
showClose: true,
|
message: res.data.msg,
|
type: 'success',
|
});
|
emit('myAdd', true);
|
} else {
|
ElMessage({
|
showClose: true,
|
message: res.data.msg,
|
type: 'error',
|
});
|
emit('myAdd', true);
|
}
|
formEl.resetFields();
|
});
|
} else {
|
console.log('error submit!', fields);
|
}
|
});
|
}
|
else if (title == '修改应急演练实施') {
|
if (!formEl) return;
|
await formEl.validate((valid, fields) => {
|
if (valid) {
|
isShowDialog.value = false;
|
emergencyDrillExecuteApi()
|
.editEmergencyDrillExecute(ruleForm.value)
|
.then((res) => {
|
if (res.data.code == 200) {
|
ElMessage({
|
showClose: true,
|
message: '修改成功',
|
type: 'success',
|
});
|
emit('myAdd', true);
|
} else {
|
ElMessage({
|
showClose: true,
|
message: res.data.msg,
|
type: 'error',
|
});
|
emit('myAdd', true);
|
}
|
formEl.resetFields();
|
});
|
} else {
|
console.log('error submit!', fields);
|
}
|
});
|
formEl.resetFields();
|
ruleForm.value = {
|
drillRecordDate: '', // 演练记录时间
|
drillPlanId: '', //演练计划ID
|
recordUserUid: '', // 记录人ID
|
processDesc: '', // 演练过程描述
|
userList: [
|
{
|
userUid: '',
|
},
|
{
|
userUid: '',
|
}
|
]
|
};
|
}
|
}
|
const resetForm = (formEl: FormInstance | undefined) => {
|
isShowDialog.value = false;
|
if (!formEl) return;
|
formEl.resetFields();
|
};
|
// 应急队伍弹窗
|
const Shows=ref()
|
const daiInpt=()=>{
|
Shows.value.openDialog()
|
}
|
// 演练名称弹窗
|
const openRef=ref()
|
const regionsDialog=()=>{
|
openRef.value.openDailog()
|
}
|
// 实际到场人员弹窗
|
const userRef = ref();
|
const openUser = () => {
|
userRef.value.openDialog();
|
};
|
//全屏
|
const full = ref(false);
|
const toggleFullscreen = () => {
|
if (full.value == false) {
|
full.value = true;
|
} else {
|
full.value = false;
|
}
|
};
|
return {
|
openDialog,
|
isShowDialog,
|
Search,
|
ruleForm,
|
drillRecordDate,
|
daiInpt,
|
Shows,
|
ruleFormRef,
|
submitForm,
|
// rules,
|
openUser,
|
userRef,
|
regionsDialog,
|
openRef,
|
toggleFullscreen,
|
FullScreen,
|
full,
|
resetForm,
|
titles,
|
disabled,
|
emit,
|
};
|
},
|
});
|
</script>
|
<style scoped lang="scss">
|
.textarea{
|
height: 168px!important;
|
}
|
.textarea ::v-deep .el-textarea__inner{
|
height: 168px!important;
|
}
|
::v-deep .el-table__cell {
|
font-weight: 400;
|
}
|
.el-divider--horizontal{
|
height: 0;
|
margin: 0;
|
border-top: transparent;
|
}
|
.el-select{
|
width: 100%;
|
}
|
.textarea{
|
height: 90px!important;
|
}
|
.textarea ::v-deep .el-textarea__inner{
|
height: 90px!important;
|
}
|
</style>
|