You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
446 lines
18 KiB
Vue
446 lines
18 KiB
Vue
<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='stationName'>
|
|
<el-input v-model='queryParams.stationName' placeholder='请输入工位名称' clearable @keyup.enter='handleQuery' />
|
|
</el-form-item>
|
|
<el-form-item label='工位类型' prop='stationType'>
|
|
<el-select v-model='queryParams.stationType' placeholder='请选择工位类型' clearable>
|
|
<el-option v-for='dict in station_type' :key='dict.value' :label='dict.label' :value='dict.value' />
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label='所属工序' prop='processId'>
|
|
<el-select v-model="queryParams.processId" placeholder="请选择所属工序" clearable @keyup.enter='handleQuery' >
|
|
<el-option
|
|
v-for="item in processInfoList"
|
|
:key="item.processId"
|
|
:label="item.processName"
|
|
:value="item.processId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label='机台名称' prop='machineId'>
|
|
<el-select v-model="queryParams.machineId" placeholder="请选择机台名称" clearable @keyup.enter='handleQuery' >
|
|
<el-option
|
|
v-for="item in machineInfoList"
|
|
:key="item.machineId"
|
|
:label="item.machineName"
|
|
:value="item.machineId"
|
|
/>
|
|
</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='never'>
|
|
<template #header>
|
|
<el-row :gutter='10' class='mb8'>
|
|
<el-col :span='1.5'>
|
|
<el-button type='primary' plain icon='Plus' @click='handleAdd' v-hasPermi="['mes:baseStationInfo:add']">新增
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span='1.5'>
|
|
<el-button type='success' plain icon='Edit' :disabled='single' @click='handleUpdate()'
|
|
v-hasPermi="['mes:baseStationInfo:edit']">修改
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span='1.5'>
|
|
<el-button type='danger' plain icon='Delete' :disabled='multiple' @click='handleDelete()'
|
|
v-hasPermi="['mes:baseStationInfo:remove']">删除
|
|
</el-button>
|
|
</el-col>
|
|
<el-col :span='1.5'>
|
|
<el-button type='warning' plain icon='Download' @click='handleExport'
|
|
v-hasPermi="['mes:baseStationInfo:export']">导出
|
|
</el-button>
|
|
</el-col>
|
|
<right-toolbar v-model:showSearch='showSearch' :columns='columns' :search='true'
|
|
@queryTable='getList'></right-toolbar>
|
|
</el-row>
|
|
</template>
|
|
|
|
<el-table v-loading='loading' :data='baseStationInfoList' @selection-change='handleSelectionChange'>
|
|
<el-table-column type='selection' width='55' align='center' />
|
|
<el-table-column label='主键标识' align='center' prop='stationId' v-if='columns[0].visible' />
|
|
<el-table-column label='租户编号' align='center' prop='tenantId' v-if='columns[1].visible' />
|
|
<el-table-column label='工位编号' align='center' prop='stationCode' v-if='columns[2].visible' />
|
|
<el-table-column label='工位名称' align='center' prop='stationName' v-if='columns[3].visible' />
|
|
<el-table-column label='工位类型' align='center' prop='stationType' v-if='columns[4].visible'>
|
|
<template #default='scope'>
|
|
<dict-tag :options='station_type' :value='scope.row.stationType' />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label='所属工序' align='center' prop='processName' v-if='columns[5].visible' />
|
|
<el-table-column label='单位生产时间' align='center' prop='productionTime' v-if='columns[6].visible' >
|
|
<template v-slot="scope">
|
|
<span>{{ formatDayHourMinutes(scope.row.productionTime) }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label='AGV编号' align='center' prop='agvCode' v-if='columns[7].visible' />
|
|
<el-table-column label='IP地址' align='center' prop='ipAddress' v-if='columns[8].visible' />
|
|
<el-table-column label='机台名称' align='center' prop='machineName' v-if='columns[16].visible' />
|
|
<el-table-column label='激活标识' align='center' prop='activeFlag' v-if='columns[9].visible'>
|
|
<template #default='scope'>
|
|
<dict-tag :options='active_flag' :value='scope.row.activeFlag' />
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label='备注' align='center' prop='remark' v-if='columns[10].visible' />
|
|
<el-table-column label='创建部门' align='center' prop='createDept' v-if='columns[11].visible' />
|
|
<el-table-column label='创建人' align='center' prop='createBy' v-if='columns[12].visible' />
|
|
<el-table-column label='创建时间' align='center' prop='createTime' width='180' v-if='columns[13].visible'>
|
|
<template #default='scope'>
|
|
<span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label='更新人' align='center' prop='updateBy' v-if='columns[14].visible' />
|
|
<el-table-column label='更新时间' align='center' prop='updateTime' width='180' v-if='columns[15].visible'>
|
|
<template #default='scope'>
|
|
<span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label='操作' align='center' class-name='small-padding fixed-width'>
|
|
<template #default='scope'>
|
|
<el-tooltip content='修改' placement='top'>
|
|
<el-button link type='primary' icon='Edit' @click='handleUpdate(scope.row)'
|
|
v-hasPermi="['mes:baseStationInfo:edit']"></el-button>
|
|
</el-tooltip>
|
|
<el-tooltip content='删除' placement='top'>
|
|
<el-button link type='primary' icon='Delete' @click='handleDelete(scope.row)'
|
|
v-hasPermi="['mes:baseStationInfo:remove']"></el-button>
|
|
</el-tooltip>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
|
|
<pagination v-show='total > 0' :total='total' v-model:page='queryParams.pageNum'
|
|
v-model:limit='queryParams.pageSize' @pagination='getList' />
|
|
</el-card>
|
|
<!-- 添加或修改工位信息对话框 -->
|
|
<el-dialog :title='dialog.title' v-model='dialog.visible' width='500px' append-to-body>
|
|
<el-form ref='baseStationInfoFormRef' :model='form' :rules='rules' label-width='100px'>
|
|
<el-form-item label='工位编号' prop='stationCode'>
|
|
<el-input v-model='form.stationCode' placeholder='请输入工位编号' />
|
|
</el-form-item>
|
|
<el-form-item label='工位名称' prop='stationName'>
|
|
<el-input v-model='form.stationName' placeholder='请输入工位名称' />
|
|
</el-form-item>
|
|
<el-form-item label='工位类型' prop='stationType'>
|
|
<el-select v-model='form.stationType' placeholder='请选择工位类型'>
|
|
<el-option
|
|
v-for='dict in station_type'
|
|
:key='dict.value'
|
|
:label='dict.label'
|
|
:value='dict.value'
|
|
></el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label='所属工序' prop='processId'>
|
|
<el-select v-model="form.processId" placeholder="请选择所属工序">
|
|
<el-option
|
|
v-for="item in processInfoList"
|
|
:key="item.processId"
|
|
:label="item.processName"
|
|
:value="item.processId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label='机台名称' prop='machineId'>
|
|
<el-select v-model="form.machineId" placeholder="请选择机台名称">
|
|
<el-option
|
|
v-for="item in machineInfoList"
|
|
:key="item.machineId"
|
|
:label="item.machineName"
|
|
:value="item.machineId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label='单位生产时间' prop='productionTime'>
|
|
<el-input-number v-model="form.productionTimeDays" placeholder="请输入天数" :min="0" :max="10000"
|
|
:controls="false" :style="{ width: '50px' }"/>
|
|
<span> 天 </span>
|
|
<el-input-number v-model="form.productionTimeHours" placeholder="请输入小时" :min="0" :max="23"
|
|
:controls="false" :style="{ width: '50px' }"/>
|
|
<span> 小时 </span>
|
|
<el-input-number v-model="form.productionTimeMinutes" placeholder="请输入分钟" :min="0" :max="59"
|
|
:controls="false" :style="{ width: '50px' }"/>
|
|
<span> 分钟 </span>
|
|
</el-form-item>
|
|
<el-form-item label='AGV编号' prop='agvCode'>
|
|
<el-input v-model='form.agvCode' placeholder='请输入AGV编号' />
|
|
</el-form-item>
|
|
<el-form-item label='IP地址' prop='ipAddress'>
|
|
<el-input v-model='form.ipAddress' placeholder='请输入IP地址' />
|
|
</el-form-item>
|
|
<el-form-item label='激活标识' prop='activeFlag'>
|
|
<el-radio-group v-model='form.activeFlag'>
|
|
<el-radio
|
|
v-for='dict in station_type'
|
|
:key='dict.value'
|
|
:value='dict.value'
|
|
>{{ dict.label }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item label='备注' prop='remark'>
|
|
<el-input v-model='form.remark' placeholder='请输入备注' />
|
|
</el-form-item>
|
|
</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='BaseStationInfo' lang='ts'>
|
|
import {
|
|
listBaseStationInfo,
|
|
getBaseStationInfo,
|
|
delBaseStationInfo,
|
|
addBaseStationInfo,
|
|
updateBaseStationInfo
|
|
} from '@/api/mes/baseStationInfo';
|
|
import { BaseStationInfoVO, BaseStationInfoQuery, BaseStationInfoForm } from '@/api/mes/baseStationInfo/types';
|
|
import { getProcessInfoList } from '@/api/mes/baseProcessInfo';
|
|
import { getProdBaseMachineInfoList } from '@/api/mes/prodBaseMachineInfo';
|
|
|
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
|
const { station_type, active_flag } = toRefs<any>(proxy?.useDict('station_type', 'active_flag'));
|
|
|
|
const baseStationInfoList = ref<BaseStationInfoVO[]>([]);
|
|
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 baseStationInfoFormRef = ref<ElFormInstance>();
|
|
let processInfoList = ref([]);
|
|
let machineInfoList = ref([]);
|
|
|
|
const dialog = reactive<DialogOption>({
|
|
visible: false,
|
|
title: ''
|
|
});
|
|
|
|
/** 查询工位下拉树结构 */
|
|
const getProcessInfoListSelect = async () => {
|
|
let res = await getProcessInfoList(null);
|
|
processInfoList.value = res.data;
|
|
};
|
|
|
|
/** 查询机台下拉树结构 */
|
|
const getProdBaseMachineInfoListSelect = async () => {
|
|
let res = await getProdBaseMachineInfoList(null);
|
|
machineInfoList.value = res.data;
|
|
};
|
|
|
|
// 列显隐信息
|
|
const columns = ref<FieldOption[]>([
|
|
{ key: 0, label: `主键标识`, visible: false },
|
|
{ key: 1, label: `租户编号`, visible: false },
|
|
{ key: 2, label: `工位编号`, visible: true },
|
|
{ key: 3, label: `工位名称`, visible: true },
|
|
{ key: 4, label: `工位类型`, visible: true },
|
|
{ key: 5, label: `所属工序`, visible: true },
|
|
{ key: 6, label: `单位生产时间`, visible: true },
|
|
{ key: 7, label: `AGV编号`, visible: true },
|
|
{ key: 8, label: `IP地址`, visible: true },
|
|
{ key: 9, label: `激活标识`, visible: true },
|
|
{ key: 10, label: `备注`, visible: true },
|
|
{ key: 11, label: `创建部门`, visible: false },
|
|
{ key: 12, label: `创建人`, visible: false },
|
|
{ key: 13, label: `创建时间`, visible: false },
|
|
{ key: 14, label: `更新人`, visible: false },
|
|
{ key: 15, label: `更新时间`, visible: false },
|
|
{ key: 16, label: `机台名称`, visible: true }
|
|
]);
|
|
|
|
const initFormData: BaseStationInfoForm = {
|
|
stationId: undefined,
|
|
stationCode: undefined,
|
|
stationName: undefined,
|
|
stationType: undefined,
|
|
processId: undefined,
|
|
productionTime: undefined,
|
|
agvCode: undefined,
|
|
ipAddress: undefined,
|
|
machineId: undefined,
|
|
activeFlag: '1',
|
|
remark: undefined,
|
|
productionTimeDays: 0,
|
|
productionTimeHours: 0,
|
|
productionTimeMinutes: 0,
|
|
};
|
|
const data = reactive<PageData<BaseStationInfoForm, BaseStationInfoQuery>>({
|
|
form: { ...initFormData },
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
stationId: undefined,
|
|
stationCode: undefined,
|
|
stationName: undefined,
|
|
stationType: undefined,
|
|
processId: undefined,
|
|
productionTime: undefined,
|
|
agvCode: undefined,
|
|
ipAddress: undefined,
|
|
activeFlag: undefined,
|
|
params: {}
|
|
},
|
|
rules: {
|
|
stationCode: [
|
|
{ required: true, message: '工位编号不能为空', trigger: 'blur' }
|
|
],
|
|
stationName: [
|
|
{ required: true, message: '工位名称不能为空', trigger: 'blur' }
|
|
],
|
|
stationType: [
|
|
{ required: true, message: '工位类型不能为空', trigger: 'change' }
|
|
],
|
|
processId: [
|
|
{ required: true, message: '所属工序不能为空', trigger: 'blur' }
|
|
],
|
|
activeFlag: [
|
|
{ required: true, message: '激活标识不能为空', trigger: 'change' }
|
|
],
|
|
}
|
|
});
|
|
|
|
const { queryParams, form, rules } = toRefs(data);
|
|
|
|
/** 查询工位信息列表 */
|
|
const getList = async () => {
|
|
loading.value = true;
|
|
const res = await listBaseStationInfo(queryParams.value);
|
|
baseStationInfoList.value = res.rows;
|
|
total.value = res.total;
|
|
loading.value = false;
|
|
};
|
|
|
|
/** 取消按钮 */
|
|
const cancel = () => {
|
|
reset();
|
|
dialog.visible = false;
|
|
};
|
|
|
|
/** 表单重置 */
|
|
const reset = () => {
|
|
form.value = { ...initFormData };
|
|
baseStationInfoFormRef.value?.resetFields();
|
|
};
|
|
|
|
/** 搜索按钮操作 */
|
|
const handleQuery = () => {
|
|
queryParams.value.pageNum = 1;
|
|
getList();
|
|
};
|
|
|
|
/** 重置按钮操作 */
|
|
const resetQuery = () => {
|
|
queryFormRef.value?.resetFields();
|
|
handleQuery();
|
|
};
|
|
|
|
/** 多选框选中数据 */
|
|
const handleSelectionChange = (selection: BaseStationInfoVO[]) => {
|
|
ids.value = selection.map(item => item.stationId);
|
|
single.value = selection.length != 1;
|
|
multiple.value = !selection.length;
|
|
};
|
|
|
|
/** 新增按钮操作 */
|
|
const handleAdd = () => {
|
|
reset();
|
|
dialog.visible = true;
|
|
dialog.title = '添加工位信息';
|
|
};
|
|
|
|
/** 修改按钮操作 */
|
|
const handleUpdate = async (row?: BaseStationInfoVO) => {
|
|
reset();
|
|
const _stationId = row?.stationId || ids.value[0];
|
|
const res = await getBaseStationInfo(_stationId);
|
|
Object.assign(form.value, res.data);
|
|
convertToTime();
|
|
dialog.visible = true;
|
|
dialog.title = '修改工位信息';
|
|
};
|
|
|
|
/** 提交按钮 */
|
|
const submitForm = () => {
|
|
baseStationInfoFormRef.value?.validate(async (valid: boolean) => {
|
|
if (valid) {
|
|
buttonLoading.value = true;
|
|
convertToSeconds();
|
|
if (form.value.stationId) {
|
|
await updateBaseStationInfo(form.value).finally(() => buttonLoading.value = false);
|
|
} else {
|
|
await addBaseStationInfo(form.value).finally(() => buttonLoading.value = false);
|
|
}
|
|
proxy?.$modal.msgSuccess('操作成功');
|
|
dialog.visible = false;
|
|
await getList();
|
|
}
|
|
});
|
|
};
|
|
|
|
/** 天小时分钟转换为秒 */
|
|
const convertToSeconds = () => {
|
|
const daysInSeconds = form.value.productionTimeDays * 24 * 60 * 60;
|
|
const hoursInSeconds = form.value.productionTimeHours * 60 * 60;
|
|
const minutesInSeconds = form.value.productionTimeMinutes * 60;
|
|
form.value.productionTime = daysInSeconds + hoursInSeconds + minutesInSeconds;
|
|
}
|
|
|
|
/** 秒转换为天小时分钟 */
|
|
const convertToTime = () => {
|
|
const totalSeconds = form.value.productionTime;
|
|
const days = Math.floor(totalSeconds / (24 * 60 * 60));
|
|
const hours = Math.floor((totalSeconds % (24 * 60 * 60)) / 3600);
|
|
const minutes = Math.floor((totalSeconds % 3600) / 60);
|
|
// 更新到表单中
|
|
form.value.productionTimeDays = days;
|
|
form.value.productionTimeHours = hours;
|
|
form.value.productionTimeMinutes = minutes;
|
|
}
|
|
|
|
/** 删除按钮操作 */
|
|
const handleDelete = async (row?: BaseStationInfoVO) => {
|
|
const _stationIds = row?.stationId || ids.value;
|
|
await proxy?.$modal.confirm('是否确认删除工位信息编号为"' + _stationIds + '"的数据项?').finally(() => loading.value = false);
|
|
await delBaseStationInfo(_stationIds);
|
|
proxy?.$modal.msgSuccess('删除成功');
|
|
await getList();
|
|
};
|
|
|
|
/** 导出按钮操作 */
|
|
const handleExport = () => {
|
|
proxy?.download('mes/baseStationInfo/export', {
|
|
...queryParams.value
|
|
}, `baseStationInfo_${new Date().getTime()}.xlsx`);
|
|
};
|
|
|
|
onMounted(() => {
|
|
getProcessInfoListSelect();
|
|
getProdBaseMachineInfoListSelect();
|
|
getList();
|
|
});
|
|
</script>
|