From af18fd6fb9e1a500be5369550b737ccce12a7d23 Mon Sep 17 00:00:00 2001 From: 马宇豪 <978517621@qq.com> Date: 星期二, 18 四月 2023 14:29:22 +0800 Subject: [PATCH] 修改表单校验 --- src/views/analyse/plan/index.vue | 207 +++++++++++++++++++++++++++++++++++++++++++++------ 1 files changed, 183 insertions(+), 24 deletions(-) diff --git a/src/views/analyse/plan/index.vue b/src/views/analyse/plan/index.vue index c71f044..41a1f9e 100644 --- a/src/views/analyse/plan/index.vue +++ b/src/views/analyse/plan/index.vue @@ -30,18 +30,19 @@ <el-table-column prop="assessPlanName" label="评估计划名称"/> <el-table-column prop="riskUnitName" label="风险单元名称" /> <el-table-column prop="planUserName" label="计划制定人" /> - <el-table-column prop="identificationMethod" label="辨识方法" show-overflow-tooltip> - <template #default="scope"> - <span>{{`${planState.identificationMethodList.find(item =>item.id === scope.row.identificationMethod)?.name}`}}</span> - </template> + <el-table-column prop="assessStartTime" label="评估开始时间"> + <template #default="scope"> + <span>{{scope.row.assessStartTime?scope.row.assessStartTime.substring(0,16):'--'}}</span> + </template> </el-table-column> - <el-table-column prop="identificationUser" label="计划负责人" /> - <el-table-column prop="evaluateMethod" label="推荐评价方法" show-overflow-tooltip> - <template #default="scope"> - <span>{{`${planState.evaluateMethodList.find(item =>item.id === scope.row.evaluateMethod)?.name}`}}</span> - </template> + <el-table-column prop="assessEndTime" label="评估结束时间"> + <template #default="scope"> + <span>{{scope.row.assessEndTime?scope.row.assessEndTime.substring(0,16):'--'}}</span> + </template> </el-table-column> + <el-table-column prop="identificationUser" label="辨识专家" /> <el-table-column prop="evaluateUser" label="评价专家" /> +<!-- <el-table-column prop="sceneUser" label="现场专家" />--> <el-table-column prop="createTime" label="创建时间" show-overflow-tooltip></el-table-column> <el-table-column prop="createByUserName" label="创建人" show-overflow-tooltip></el-table-column> <el-table-column prop="updateTime" label="最后修改时间" show-overflow-tooltip></el-table-column> @@ -64,9 +65,14 @@ </el-table-column> <el-table-column label="操作" width="250"> <template #default="scope"> - <el-button size="small" text type="primary" @click="accessPlan(scope.row)">派发</el-button> + <el-button size="small" text type="primary" v-if="scope.row.planSellStatus === 1" @click="accessPlan(scope.row)">派发</el-button> <el-button size="small" text type="primary" :icon="View" @click="openPlanDialog('查看', scope.row)">查看</el-button> <el-button v-if="scope.row.planSellStatus === 1" size="small" text type="primary" :icon="Edit" @click="openPlanDialog('修改', scope.row)">编辑</el-button> + <el-button v-if="scope.row.identificationUserId == planState.user" size="small" text type="primary" :icon="Edit" @click="refuseIdentify(scope.row)">拒绝辨识</el-button> + <el-button v-if="scope.row.evaluateUserId == planState.user" size="small" text type="primary" :icon="Edit" @click="refuseEvaluate(scope.row)">拒绝评价</el-button> +<!-- <el-button v-if="scope.row.sceneUserId == planState.user" size="small" text type="primary" :icon="Edit" @click="refuseScene(scope.row)">拒绝现场</el-button>--> + <el-button v-if="scope.row.identificationUserId == null" size="small" text type="primary" :icon="Edit" @click="reSendJob(scope.row,'identification')">重新指派辨识</el-button> + <el-button v-if="scope.row.evaluateUserId == null" size="small" text type="primary" :icon="Edit" @click="reSendJob(scope.row,'evaluate')">重新指派评价</el-button> <el-button v-if="scope.row.planSellStatus === 1" size="small" text type="danger" :icon="Delete" @click="onDelPlan(scope.row)">删除</el-button> </template> </el-table-column> @@ -78,25 +84,53 @@ </div> </div> <plan-dialog ref="planDialogRef" @refresh="getPlanData"></plan-dialog> + + <el-dialog :title="planState.reSendTitle" v-model="planState.reSendDialogVisible" width="50%"> + <el-form ref="ruleFormRef" :rules="planState.rules" :model="planState.reSendForm" label-width="120px"> + <el-form-item v-if="planState.reSendTitle == '指派辨识专家'" label="选择辨识专家" prop="identificationUserId"> + <el-select v-model="planState.reSendForm.identificationUserId" style="width:100%" placeholder="辨识专家" clearable> + <el-option v-for="item in planState.personList" :key="item.id" :label="item.realName" :value="item.id"></el-option> + </el-select> + </el-form-item> + <el-form-item v-if="planState.reSendTitle == '指派评价专家'" label="选择评价专家" prop="evaluateUserId"> + <el-select v-model="planState.reSendForm.evaluateUserId" style="width:100%" placeholder="评价专家" clearable> + <el-option v-for="item in planState.personList" :key="item.id" :label="item.realName" :value="item.id"></el-option> + </el-select> + </el-form-item> + </el-form> + <template #footer> + <span class="dialog-footer" style="padding-top:10px;text-align: center !important;"> + <el-button @click="planState.reSendDialogVisible = !planState.reSendDialogVisible" size="default">取 消</el-button> + <el-button type="primary" @click="onSubmitReSend(ruleFormRef)" size="default">确认指派</el-button> + </span> + </template> + </el-dialog> + </div> </template> <script setup lang="ts"> import {defineAsyncComponent, onMounted, reactive, ref} from "vue"; import {planApi} from "/@/api/analyse/plan"; -import {ElMessage, ElMessageBox} from "element-plus"; +import {ElMessage, ElMessageBox, FormInstance} from "element-plus"; import { Edit, View, Plus, Delete } from '@element-plus/icons-vue'; import {riskUnitApi} from "/@/api/analyse/riskUnit"; import {personApi} from "/@/api/basic/person"; import {useUserInfo} from "/@/stores/userInfo"; +import { storeToRefs } from 'pinia'; import {userApi} from "/@/api/systemManage/user"; +import {assessApplyApi} from "/@/api/analyse/assessApply"; + const PlanDialog = defineAsyncComponent(() => import('./components/planDialog.vue')); const planDialogRef = ref(); - +const userInfo = useUserInfo(); +const { userInfos } = storeToRefs(userInfo); +const ruleFormRef = ref<FormInstance>() const planState = reactive<PlanStateType>({ planData: [], + user: null, searchQuery: { pageIndex: 1, pageSize: 10, @@ -108,18 +142,29 @@ ], personList: [], identificationMethodList: [ - {id:1, name: 'PHA'}, - {id:2, name: 'JHA'}, - {id:3, name: 'SCL'}, - {id:4, name: 'HAZOP'}, - {id:5, name: '类比法'}, -], - evaluateMethodList: [ - {id:1, name: 'LEC'}, - {id:2, name: 'LS'}, - {id:3, name: 'MES'}, - {id:4, name: 'RS'}, -] + {id:1, name: 'PHA'}, + {id:2, name: 'JHA'}, + {id:3, name: 'SCL'}, + {id:4, name: 'HAZOP'}, + {id:5, name: '类比法'}, + ], + evaluateMethodList: [ + {id:1, name: 'LEC'}, + {id:2, name: 'LS'}, + {id:3, name: 'MES'}, + {id:4, name: 'RS'}, + ], + reSendTitle:'', + reSendDialogVisible: false, + reSendForm: { + id: null, + identificationUserId: null, + evaluateUserId: null + }, + rules: { + identificationUserId: [{ required: true, message: '请选择辨识专家', trigger: 'blur' }], + evaluateUserId: [{ required: true, message: '请选择评价专家', trigger: 'blur' }] + } // deviceUnitList: [ // {id:1, name: '台'}, // {id:2, name: '个'}, @@ -172,6 +217,119 @@ const openPlanDialog = (title: string, value: PlanType) => { planDialogRef.value.showPlanDialog(title, value, planState.riskUnitList, planState.personList); }; + +const refuseIdentify = async(val: PlanType)=>{ + ElMessageBox.confirm(`此操作将拒绝作为该计划:“${val.assessPlanName}”的辨识专家,是否继续?`, '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning' + }) + .then(async () => { + let res = await planApi().refuseIdentify({ id: val.id }); + if (res.data.code === 100) { + ElMessage({ + type: 'success', + duration: 2000, + message: '拒绝成功' + }); + await getPlanData(); + } else { + ElMessage({ + type: 'warning', + message: res.data.msg + }); + } + }) + .catch((error) => { + }); +} + +const reSendJob= async(val: PlanType,type:string)=>{ + planState.reSendForm = { + id: val.id, + identificationUserId: null, + evaluateUserId: null + } + if(type=='identification'){ + planState.reSendTitle = '指派辨识专家' + }else{ + planState.reSendTitle = '指派评价专家' + } + planState.reSendDialogVisible = true +} + +const onSubmitReSend = async (formEl: FormInstance | undefined) => { + if (!formEl) return + await formEl.validate(async(valid, fields) => { + if (valid) { + let res = await planApi().reSendJob(planState.reSendForm); + if(res.data.code === 100){ + ElMessage({ + type: 'success', + message: '重新指派成功' + }); + }else{ + ElMessage({ + type: 'warning', + message: res.data.msg + }); + } + + planState.reSendForm = { + id: null, + identificationUserId: null, + evaluateUserId: null + }, + planState.reSendDialogVisible = false + getPlanData() + } else { + console.log('error submit!', fields) + } + }) +} + +const refuseEvaluate = async(val: PlanType)=>{ + ElMessageBox.confirm(`此操作将拒绝作为该计划:“${val.assessPlanName}”的评价专家,是否继续?`, '提示', { + confirmButtonText: '确认', + cancelButtonText: '取消', + type: 'warning' + }) + .then(async () => { + let res = await planApi().refuseEvaluate({ id: val.id }); + if (res.data.code === 100) { + ElMessage({ + type: 'success', + duration: 2000, + message: '拒绝成功' + }); + await getPlanData(); + } else { + ElMessage({ + type: 'warning', + message: res.data.msg + }); + } + }) + .catch((error) => { + }); +} + +// const refuseScene = async(val: PlanType)=>{ +// let res = await planApi().refuseScene({ id: val.id }); +// if (res.data.code === 100) { +// ElMessage({ +// type: 'success', +// duration: 2000, +// message: '拒绝成功' +// }); +// await getPlanData(); +// } else { +// ElMessage({ +// type: 'warning', +// message: res.data.msg +// }); +// } +// } const onDelPlan = (val: PlanType) => { ElMessageBox.confirm(`此操作将永久删除该计划:“${val.assessPlanName}”,是否继续?`, '提示', { @@ -248,6 +406,7 @@ getPlanData(); getAllRiskUnitList(); getPersonList(); + planState.user = userInfos.value.uid }) </script> -- Gitblit v1.9.2