feat: admin web dev
This commit is contained in:
376
plus-ui/src/views/inspection/execution/index.vue
Normal file
376
plus-ui/src/views/inspection/execution/index.vue
Normal file
@@ -0,0 +1,376 @@
|
||||
<template>
|
||||
<div class="p-2">
|
||||
<transition :enter-active-class="proxy?.animate.searchAnimate.enter" :leave-active-class="proxy?.animate.searchAnimate.leave">
|
||||
<div v-show="showSearch" class="mb-[10px]">
|
||||
<el-card shadow="hover">
|
||||
<el-form ref="queryFormRef" :model="queryParams" :inline="true">
|
||||
<el-form-item label="执行编号" prop="executionCode">
|
||||
<el-input v-model="queryParams.executionCode" placeholder="请输入执行编号" clearable @keyup.enter="handleQuery" />
|
||||
</el-form-item>
|
||||
<el-form-item label="任务模板" prop="taskId">
|
||||
<el-select v-model="queryParams.taskId" placeholder="请选择任务模板" clearable filterable>
|
||||
<el-option v-for="task in taskOptions" :key="task.id" :label="task.taskName" :value="task.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="区域" prop="regionId">
|
||||
<el-select v-model="queryParams.regionId" placeholder="请选择区域" clearable filterable>
|
||||
<el-option v-for="region in regionOptions" :key="region.id" :label="region.regionName" :value="region.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="设备" prop="deviceId">
|
||||
<el-select v-model="queryParams.deviceId" placeholder="请选择设备" clearable filterable>
|
||||
<el-option v-for="device in deviceOptions" :key="device.id" :label="device.deviceName" :value="device.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态" prop="status">
|
||||
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
||||
<el-option label="待执行" value="pending" />
|
||||
<el-option label="执行中" value="in_progress" />
|
||||
<el-option label="已完成" value="completed" />
|
||||
<el-option label="已取消" value="cancelled" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
</div>
|
||||
</transition>
|
||||
|
||||
<el-card shadow="hover">
|
||||
<template #header>
|
||||
<el-row :gutter="10" class="mb8">
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['inspection:execution:add']" type="primary" plain icon="Plus" @click="handleAdd">新增</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['inspection:execution:edit']" type="success" plain icon="Edit" :disabled="single" @click="handleUpdate()">修改</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['inspection:execution:remove']" type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()">删除</el-button>
|
||||
</el-col>
|
||||
<el-col :span="1.5">
|
||||
<el-button v-hasPermi="['inspection:execution:export']" type="warning" plain icon="Download" @click="handleExport">导出</el-button>
|
||||
</el-col>
|
||||
<right-toolbar v-model:show-search="showSearch" @query-table="getList"></right-toolbar>
|
||||
</el-row>
|
||||
</template>
|
||||
|
||||
<el-table v-loading="loading" border :data="executionList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="执行编号" align="center" prop="executionCode" :show-overflow-tooltip="true" width="180" />
|
||||
<el-table-column label="任务名称" align="center" prop="taskName" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="区域" align="center" prop="regionName" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="设备" align="center" prop="deviceName" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="操作人" align="center" prop="operatorName" :show-overflow-tooltip="true" />
|
||||
<el-table-column label="状态" align="center" prop="status" width="90">
|
||||
<template #default="scope">
|
||||
<el-tag v-if="scope.row.status === 'pending'" type="info">待执行</el-tag>
|
||||
<el-tag v-else-if="scope.row.status === 'in_progress'" type="warning">执行中</el-tag>
|
||||
<el-tag v-else-if="scope.row.status === 'completed'" type="success">已完成</el-tag>
|
||||
<el-tag v-else type="danger">已取消</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="进度" align="center" width="120">
|
||||
<template #default="scope">
|
||||
<el-progress :percentage="calculateProgress(scope.row)" :color="getProgressColor(scope.row.status)" />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="开始时间" align="center" prop="startTime" width="180" />
|
||||
<el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="修改" placement="top">
|
||||
<el-button v-hasPermi="['inspection:execution:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)"></el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip content="删除" placement="top">
|
||||
<el-button v-hasPermi="['inspection:execution:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)"></el-button>
|
||||
</el-tooltip>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<pagination v-show="total > 0" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" :total="total" @pagination="getList" />
|
||||
</el-card>
|
||||
|
||||
<!-- 添加或修改任务执行记录对话框 -->
|
||||
<el-dialog v-model="dialog.visible" :title="dialog.title" width="800px" append-to-body>
|
||||
<el-form ref="executionFormRef" :model="form" :rules="rules" label-width="100px">
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="任务模板" prop="taskId">
|
||||
<el-select v-model="form.taskId" placeholder="请选择任务模板" filterable style="width: 100%">
|
||||
<el-option v-for="task in taskOptions" :key="task.id" :label="task.taskName" :value="task.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="区域" prop="regionId">
|
||||
<el-select v-model="form.regionId" placeholder="请选择区域" filterable style="width: 100%">
|
||||
<el-option v-for="region in regionOptions" :key="region.id" :label="region.regionName" :value="region.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="使用设备" prop="deviceId">
|
||||
<el-select v-model="form.deviceId" placeholder="请选择使用设备" clearable filterable style="width: 100%">
|
||||
<el-option v-for="device in deviceOptions" :key="device.id" :label="device.deviceName" :value="device.id" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="执行状态" prop="status">
|
||||
<el-select v-model="form.status" placeholder="请选择状态" style="width: 100%">
|
||||
<el-option label="待执行" value="pending" />
|
||||
<el-option label="执行中" value="in_progress" />
|
||||
<el-option label="已完成" value="completed" />
|
||||
<el-option label="已取消" value="cancelled" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
|
||||
<el-divider content-position="left">执行角色</el-divider>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="操作人" prop="operatorName">
|
||||
<el-input v-model="form.operatorName" placeholder="请输入操作人姓名" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="监护人" prop="custodianName">
|
||||
<el-input v-model="form.custodianName" placeholder="请输入监护人姓名" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="送电人" prop="senderName">
|
||||
<el-input v-model="form.senderName" placeholder="请输入送电人姓名" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="受电人" prop="recipientName">
|
||||
<el-input v-model="form.recipientName" placeholder="请输入受电人姓名" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="20">
|
||||
<el-col :span="12">
|
||||
<el-form-item label="指挥人" prop="commanderName">
|
||||
<el-input v-model="form.commanderName" placeholder="请输入指挥人姓名" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<div class="dialog-footer">
|
||||
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
||||
<el-button @click="cancel">取 消</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup name="ArExecution" lang="ts">
|
||||
import { listArExecution, getArExecution, delArExecution, addArExecution, updateArExecution } from '@/api/inspection/execution';
|
||||
import { ArExecutionVO, ArExecutionQuery, ArExecutionForm } from '@/api/inspection/execution/types';
|
||||
import { listArTask } from '@/api/inspection/task';
|
||||
import { ArTaskVO } from '@/api/inspection/task/types';
|
||||
import { listArRegion } from '@/api/inspection/region';
|
||||
import { ArRegionVO } from '@/api/inspection/region/types';
|
||||
import { listArDevice } from '@/api/inspection/device';
|
||||
import { ArDeviceVO } from '@/api/inspection/device/types';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
|
||||
const executionList = ref<ArExecutionVO[]>([]);
|
||||
const taskOptions = ref<ArTaskVO[]>([]);
|
||||
const regionOptions = ref<ArRegionVO[]>([]);
|
||||
const deviceOptions = ref<ArDeviceVO[]>([]);
|
||||
const buttonLoading = ref(false);
|
||||
const loading = ref(true);
|
||||
const showSearch = ref(true);
|
||||
const ids = ref<Array<string | number>>([]);
|
||||
const single = ref(true);
|
||||
const multiple = ref(true);
|
||||
const total = ref(0);
|
||||
|
||||
const queryFormRef = ref<ElFormInstance>();
|
||||
const executionFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
const initFormData: ArExecutionForm = {
|
||||
id: undefined,
|
||||
taskId: undefined,
|
||||
executionCode: undefined,
|
||||
regionId: undefined,
|
||||
deviceId: undefined,
|
||||
operatorId: undefined,
|
||||
operatorName: undefined,
|
||||
custodianId: undefined,
|
||||
custodianName: undefined,
|
||||
senderId: undefined,
|
||||
senderName: undefined,
|
||||
recipientId: undefined,
|
||||
recipientName: undefined,
|
||||
commanderId: undefined,
|
||||
commanderName: undefined,
|
||||
status: 'pending'
|
||||
};
|
||||
|
||||
const data = reactive<PageData<ArExecutionForm, ArExecutionQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
taskId: undefined,
|
||||
executionCode: undefined,
|
||||
regionId: undefined,
|
||||
deviceId: undefined,
|
||||
status: undefined,
|
||||
startTimeBegin: undefined,
|
||||
startTimeEnd: undefined
|
||||
},
|
||||
rules: {
|
||||
taskId: [{ required: true, message: '任务模板不能为空', trigger: 'change' }],
|
||||
regionId: [{ required: true, message: '区域不能为空', trigger: 'change' }],
|
||||
status: [{ required: true, message: '状态不能为空', trigger: 'change' }]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 计算进度百分比 */
|
||||
const calculateProgress = (row: ArExecutionVO) => {
|
||||
if (!row.totalSteps || row.totalSteps === 0) return 0;
|
||||
return Math.round((row.completedSteps / row.totalSteps) * 100);
|
||||
};
|
||||
|
||||
/** 获取进度条颜色 */
|
||||
const getProgressColor = (status: string) => {
|
||||
if (status === 'completed') return '#67c23a';
|
||||
if (status === 'in_progress') return '#e6a23c';
|
||||
if (status === 'cancelled') return '#f56c6c';
|
||||
return '#909399';
|
||||
};
|
||||
|
||||
/** 查询选项数据 */
|
||||
const getOptions = async () => {
|
||||
const [taskRes, regionRes, deviceRes] = await Promise.all([
|
||||
listArTask({ pageNum: 1, pageSize: 1000, status: '0' }),
|
||||
listArRegion({ pageNum: 1, pageSize: 1000, status: '0' }),
|
||||
listArDevice({ pageNum: 1, pageSize: 1000, status: '0' })
|
||||
]);
|
||||
taskOptions.value = taskRes.rows;
|
||||
regionOptions.value = regionRes.rows;
|
||||
deviceOptions.value = deviceRes.rows;
|
||||
};
|
||||
|
||||
/** 查询任务执行记录列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listArExecution(queryParams.value);
|
||||
executionList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
executionFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: ArExecutionVO[]) => {
|
||||
ids.value = selection.map((item) => item.id);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加任务执行记录';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: ArExecutionVO) => {
|
||||
reset();
|
||||
const _id = row?.id || ids.value[0];
|
||||
const res = await getArExecution(_id);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改任务执行记录';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
executionFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.id) {
|
||||
await updateArExecution(form.value).finally(() => (buttonLoading.value = false));
|
||||
} else {
|
||||
await addArExecution(form.value).finally(() => (buttonLoading.value = false));
|
||||
}
|
||||
proxy?.$modal.msgSuccess(form.value.id ? '修改成功' : '新增成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: ArExecutionVO) => {
|
||||
const _ids = row?.id || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除任务执行记录编号为"' + _ids + '"的数据项?').finally(() => (loading.value = false));
|
||||
await delArExecution(_ids);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download(
|
||||
'inspection/execution/export',
|
||||
{
|
||||
...queryParams.value
|
||||
},
|
||||
`ar_execution_${new Date().getTime()}.xlsx`
|
||||
);
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getOptions();
|
||||
getList();
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user