shj
2022-08-06 d6b4708cede4ae7a5e06d5fb10271d4ea1132986
src/views/contingencyManagement/emergencyResources/emergencySupplies/component/inspect.vue
@@ -1,59 +1,40 @@
<template>
  <div class="system-edit-user-container">
    <el-dialog
        :title="titles"
        v-model="isShowDialog"
        width="769px"
        draggable
        :fullscreen="full"
    >
      <el-dialog title="修改应急物资检查" v-model="isShowDialog" @close="resetForm(ruleFormRef)" width="50%" 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"
      >
         <el-form ref="ruleFormRef" :model="ruleForm" :rules="rules" size="default" label-width="120px">
        <el-row :gutter="35">
          <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
            <el-form-item label="应急物资" prop="suppliesId">
              <el-input
                  v-model="ruleForm.suppliesId"
                  placeholder="请选择"
                  class="input-with-select"
              >
                <template #append>
                  <el-form-item label="应急物资">
                     <el-input v-model="nameTitle" disabled placeholder="请选择" class="input-with-select">
                        <!-- <template #append>
                  <el-button :icon="Search" @click="daiInpt"/>
                </template>
                        </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="maintainResult">
              <el-select v-model="ruleForm.maintainResult" class="w100" placeholder="请选择">
                <el-option label="正常" value="正常"></el-option>
                <el-option label="异常" value="异常"></el-option>
                  <el-form-item label="保养结果" prop="inspectResult">
                     <el-select v-model="ruleForm.inspectResult" class="w100" placeholder="请选择">
                        <el-option label="正常" value="1"></el-option>
                        <el-option label="异常" value="2"></el-option>
              </el-select>
            </el-form-item>
          </el-col>
          <el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20">
            <el-form-item label="创建人" prop="userUid">
              <el-input
                  v-model="ruleForm.userUid"
                  placeholder="请选择"
                  class="input-with-select"
              >
                  <el-form-item label="创建人" prop="userName">
                     <el-input v-model="ruleForm.userName" placeholder="请选择" class="input-with-select">
                <template #append>
                  <el-button :icon="Search" @click="openUser" />
                           <el-button :icon="Search" @click="openUser(0)" />
                </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="maintainTime">
                  <el-form-item label="创建时间" prop="inspectTime">
              <el-date-picker
                  class="w100"
                  v-model="ruleForm.maintainTime"
                        v-model="ruleForm.inspectTime"
                  type="datetime"
                  placeholder="选择日期时间"
                  value-format="YYYY-MM-DD HH:mm:ss"
@@ -65,67 +46,77 @@
      <template #footer>
            <span class="dialog-footer">
               <el-button @click="resetForm(ruleFormRef)" size="default">关闭</el-button>
          <el-button size="default" type="primary" @click="submitForm(titles, ruleFormRef)">确定</el-button>
               <el-button size="default" type="primary" @click="submitForm(ruleFormRef)">确定</el-button>
            </span>
      </template>
    </el-dialog>
    <EmergencySupplies ref="showRef" @SearchUser="onUser"/>
    <userSelections ref="userRef"/>
      <!-- <EmergencySupplies ref="showRef" @SearchUser="onUser"/> -->
      <DailogSearchUser ref="userRef" @SearchUser="onUsers" />
  </div>
</template>
<script lang="ts">
import {
  ref,
  defineComponent
} from 'vue';
import type {
  FormInstance,
} from 'element-plus'
import { ref, defineComponent,reactive } from 'vue';
import DailogSearchUser from '/@/components/DailogSearchUser/index.vue';
import type { FormInstance,FormRules } from 'element-plus';
import { ElMessage } from 'element-plus';
import {
  Search,
  FullScreen
} from '@element-plus/icons-vue'
import EmergencySupplies from '/@/components/emergencySupplies/index.vue'
import UserSelections from "/@/components/userSelections/index.vue"
import {emergencyMaterialsInspectionApi} from "/@/api/emergencyMaterialsInspection";
import { Search, FullScreen } from '@element-plus/icons-vue';
import EmergencySupplies from '/@/components/emergencySupplies/index.vue';
import UserSelections from '/@/components/userSelections/index.vue';
import { emergencyMaterialsInspectionApi } from '/@/api/emergencyMaterialsInspection';
export default defineComponent({
  name: 'inspect',
  components: {
    UserSelections,
    EmergencySupplies,
      DailogSearchUser,
  },
  setup(props, { emit }) {
    const isShowDialog = ref(false)
      const isShowDialog = ref(false);
    const ruleFormRef = ref<FormInstance>()
      const ruleFormRef = ref<FormInstance>();
    //定义表单
    const ruleForm = ref ({
      suppliesId: '', // 物资ID
      maintainResult: '', //保养结果
      maintainTime: '', // 创建时间
      userList: [
        {
          userUid: ''
        },
        {
          userUid: ''
        }
      ]
         inspectResult: '', //保养结果
         inspectTime: '', // 创建时间
         userList: [],
    });
    const titles = ref();
    const disabled = ref();
    // 打开弹窗
    const openDialog = (title: string,) => {
      const nameTitle = ref();
      const openDialog = (data: string) => {
      isShowDialog.value = true;
      titles.value = title;
         ruleForm.value.suppliesId = data.id;
         nameTitle.value = data.name;
    };
         const rules = reactive<FormRules>({
         nameTitle: [],
         inspectResult: [
            {
               required: true,
               message: '保养结果不能为空',
               trigger: 'change',
            },
         ],
         userName: [
            {
               required: true,
               message: '创建人不能为空',
               trigger: 'change',
            },
         ],
      inspectTime: [
            {
               required: true,
               message: '创建时间不能为空',
               trigger: 'blur',
            },
         ],
      });
    // 表单提交验证必填项
    const submitForm = async (title: string, formEl: FormInstance | undefined) => {
      if (title == '修改应急物资检查') {
      const submitForm = async (formEl: FormInstance | undefined) => {
        if (!formEl) return;
        await formEl.validate((valid, fields) => {
          if (valid) {
@@ -140,6 +131,7 @@
                      type: 'success',
                    });
                    emit('myAdd', true);
                        formEl.resetFields();
                  } else {
                    ElMessage({
                      showClose: true,
@@ -148,14 +140,12 @@
                    });
                    emit('myAdd', true);
                  }
                  formEl.resetFields();
                });
          } else {
            console.log('error submit!', fields);
          }
        });
      }
    }
      };
    const resetForm = (formEl: FormInstance | undefined) => {
      isShowDialog.value = false;
      if (!formEl) return;
@@ -163,20 +153,23 @@
    };
    //日期选择器
    const value1 = ref('')
      const value1 = ref('');
    // 应急物资弹窗
    const showRef=ref()
    const daiInpt=()=>{
      showRef.value.openDailog()
    }
    const onUser = (e:any) => {
      ruleForm.value.suppliesId=e.id
    };
    // 编写人弹窗
    const userRef = ref();
    const openUser = () => {
      userRef.value.openDialog();
      const openUser = (type: any) => {
         userRef.value.openDailog(type);
      };
      const onUsers = (val: any) => {
         let arr = [];
         for (let i = 0; i < val.length; i++) {
            arr.push(val[i].realName);
            ruleForm.value.userList.push({
               userUid: val[i].uid,
               userName: val[i].realName,
            });
         }
         ruleForm.value.userName = arr.toString();
    };
    //全屏
    const full = ref(false);
@@ -188,15 +181,15 @@
      }
    };
    return {
         nameTitle,
      openDialog,
      isShowDialog,
      resetForm,
         rules,
      Search,
      ruleForm,
      value1,
      daiInpt,
      showRef,
      onUser,
         onUsers,
      ruleFormRef,
      submitForm,
      openUser,
@@ -204,7 +197,6 @@
      toggleFullscreen,
      FullScreen,
      full,
      titles,
      disabled,
      emit,
    };