update 添加工序工艺信息
parent
977e54ffa1
commit
8ad096aec8
@ -0,0 +1,77 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import { TechnologyInfoVO, TechnologyInfoForm, TechnologyInfoQuery } from '@/api/mes/technologyInfo/types';
|
||||
|
||||
/**
|
||||
* 查询工序工艺信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listTechnologyInfo = (query?: TechnologyInfoQuery): AxiosPromise<TechnologyInfoVO[]> => {
|
||||
return request({
|
||||
url: '/mes/technologyInfo/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询工序工艺信息详细
|
||||
* @param technologyId
|
||||
*/
|
||||
export const getTechnologyInfo = (technologyId: string | number): AxiosPromise<TechnologyInfoVO> => {
|
||||
return request({
|
||||
url: '/mes/technologyInfo/' + technologyId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增工序工艺信息
|
||||
* @param data
|
||||
*/
|
||||
export const addTechnologyInfo = (data: TechnologyInfoForm) => {
|
||||
return request({
|
||||
url: '/mes/technologyInfo',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改工序工艺信息
|
||||
* @param data
|
||||
*/
|
||||
export const updateTechnologyInfo = (data: TechnologyInfoForm) => {
|
||||
return request({
|
||||
url: '/mes/technologyInfo',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除工序工艺信息
|
||||
* @param technologyId
|
||||
*/
|
||||
export const delTechnologyInfo = (technologyId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/mes/technologyInfo/' + technologyId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* 下拉框查询工序工艺信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getProdTechnologyInfoList (query) {
|
||||
return request({
|
||||
url: '/mes/technologyInfo/getProdTechnologyInfoList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
@ -0,0 +1,81 @@
|
||||
import request from '@/utils/request';
|
||||
import { AxiosPromise } from 'axios';
|
||||
import {
|
||||
TechnologyStepInfoVO,
|
||||
TechnologyStepInfoForm,
|
||||
TechnologyStepInfoQuery
|
||||
} from '@/api/mes/technologyStepInfo/types';
|
||||
|
||||
/**
|
||||
* 查询工艺步序信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
|
||||
export const listTechnologyStepInfo = (query?: TechnologyStepInfoQuery): AxiosPromise<TechnologyStepInfoVO[]> => {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 查询工艺步序信息详细
|
||||
* @param stepId
|
||||
*/
|
||||
export const getTechnologyStepInfo = (stepId: string | number): AxiosPromise<TechnologyStepInfoVO> => {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo/' + stepId,
|
||||
method: 'get'
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 新增工艺步序信息
|
||||
* @param data
|
||||
*/
|
||||
export const addTechnologyStepInfo = (data: TechnologyStepInfoForm) => {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo',
|
||||
method: 'post',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 修改工艺步序信息
|
||||
* @param data
|
||||
*/
|
||||
export const updateTechnologyStepInfo = (data: TechnologyStepInfoForm) => {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo',
|
||||
method: 'put',
|
||||
data: data
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* 删除工艺步序信息
|
||||
* @param stepId
|
||||
*/
|
||||
export const delTechnologyStepInfo = (stepId: string | number | Array<string | number>) => {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo/' + stepId,
|
||||
method: 'delete'
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* 下拉框查询工艺步序信息列表
|
||||
* @param query
|
||||
* @returns {*}
|
||||
*/
|
||||
export function getProdTechnologyStepInfoList(query) {
|
||||
return request({
|
||||
url: '/mes/technologyStepInfo/getProdTechnologyStepInfoList',
|
||||
method: 'get',
|
||||
params: query
|
||||
});
|
||||
};
|
@ -0,0 +1,408 @@
|
||||
<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='工序ID' 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='materialId'>-->
|
||||
<!-- <el-input v-model='queryParams.materialId' placeholder='请输入物料名称' clearable @keyup.enter='handleQuery' />-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- <el-form-item label='机台类型' prop='machineType'>-->
|
||||
<!-- <el-select v-model='queryParams.machineType' placeholder='请选择机台类型' clearable>-->
|
||||
<!-- <el-option v-for='dict in mes_machine_type' :key='dict.value' :label='dict.label' :value='dict.value' />-->
|
||||
<!-- </el-select>-->
|
||||
<!-- </el-form-item>-->
|
||||
<!-- <el-form-item label='工艺类型' prop='technologyType'>-->
|
||||
<!-- <el-select v-model='queryParams.technologyType' placeholder='请选择工艺类型' clearable>-->
|
||||
<!-- <el-option v-for='dict in mes_technology_type' :key='dict.value' :label='dict.label'-->
|
||||
<!-- :value='dict.value' />-->
|
||||
<!-- </el-select>-->
|
||||
<!-- </el-form-item>-->
|
||||
<el-form-item label='工艺版本' prop='technologyVersion'>
|
||||
<el-input v-model='queryParams.technologyVersion' placeholder='请输入工艺版本' clearable
|
||||
@keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='激活标识' prop='activeFlag'>
|
||||
<el-select v-model='queryParams.activeFlag' placeholder='请选择激活标识' clearable>
|
||||
<el-option v-for='dict in active_flag' :key='dict.value' :label='dict.label' :value='dict.value' />
|
||||
</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:technologyInfo:add']">新增
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='success' plain icon='Edit' :disabled='single' @click='handleUpdate()'
|
||||
v-hasPermi="['mes:technologyInfo:edit']">修改
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='danger' plain icon='Delete' :disabled='multiple' @click='handleDelete()'
|
||||
v-hasPermi="['mes:technologyInfo:remove']">删除
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='warning' plain icon='Download' @click='handleExport'
|
||||
v-hasPermi="['mes:technologyInfo: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='technologyInfoList' @selection-change='handleSelectionChange'>
|
||||
<el-table-column type='selection' width='55' align='center' />
|
||||
<el-table-column label='主键标识' align='center' prop='technologyId' v-if='columns[0].visible' />
|
||||
<el-table-column label='工序名称' align='center' prop='processName' v-if='columns[2].visible' />
|
||||
<el-table-column label='物料名称' align='center' prop='materialName' v-if='columns[3].visible' width='180'/>
|
||||
<el-table-column label='机台类型' align='center' prop='machineType' v-if='columns[4].visible'>
|
||||
<template #default='scope'>
|
||||
<dict-tag :options='mes_machine_type' :value='scope.row.machineType' />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label='工艺类型' align='center' prop='technologyType' v-if='columns[5].visible'>
|
||||
<template #default='scope'>
|
||||
<dict-tag :options='mes_technology_type' :value='scope.row.technologyType' />
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label='工艺版本' align='center' prop='technologyVersion' v-if='columns[6].visible' />
|
||||
<el-table-column label='硫化标准时间' align='center' prop='standardTime' v-if='columns[7].visible' />
|
||||
<el-table-column label='激活标识' align='center' prop='activeFlag' v-if='columns[8].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[9].visible' />
|
||||
<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:technologyInfo:edit']"></el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip content='删除' placement='top'>
|
||||
<el-button link type='primary' icon='Delete' @click='handleDelete(scope.row)'
|
||||
v-hasPermi="['mes:technologyInfo: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='technologyInfoFormRef' :model='form' :rules='rules' label-width='100px'>
|
||||
<el-form-item label='工序ID' 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='materialId'>
|
||||
<el-input v-model="form.materialName" placeholder="请点击检索物料" @click="handleMaterialAdd" readonly>
|
||||
<template #append>
|
||||
<el-icon class="el-input__icon" ><search/></el-icon>
|
||||
</template>
|
||||
</el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label='机台类型' prop='machineType'>
|
||||
<el-select v-model='form.machineType' placeholder='请选择机台类型'>
|
||||
<el-option
|
||||
v-for='dict in mes_machine_type'
|
||||
:key='dict.value'
|
||||
:label='dict.label'
|
||||
:value='dict.value'
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label='工艺类型' prop='technologyType'>
|
||||
<el-select v-model='form.technologyType' placeholder='请选择工艺类型'>
|
||||
<el-option
|
||||
v-for='dict in mes_technology_type'
|
||||
:key='dict.value'
|
||||
:label='dict.label'
|
||||
:value='dict.value'
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label='工艺版本' prop='technologyVersion'>
|
||||
<el-input v-model='form.technologyVersion' placeholder='请输入工艺版本' />
|
||||
</el-form-item>
|
||||
<el-form-item label='硫化标准时间' prop='standardTime'>
|
||||
<el-input-number v-model='form.standardTime' placeholder='请输入硫化标准时间' style="width: 220px;"/>
|
||||
</el-form-item>
|
||||
<el-form-item label='激活标识' prop='activeFlag'>
|
||||
<el-radio-group v-model='form.activeFlag'>
|
||||
<el-radio
|
||||
v-for='dict in active_flag'
|
||||
: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>
|
||||
|
||||
<!-- 添加物料信息对话框 -->
|
||||
<el-dialog title="选择物料信息" v-model="materialOpen" width='1200px' append-to-body>
|
||||
<MaterialSelect @selection="handleSelection" ref="materialSelectRef" v-if="materialOpen"></MaterialSelect>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button type="primary" @click="submitMaterialForm">确 定</el-button>
|
||||
<el-button @click="materialOpen = false">取 消</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
</template>
|
||||
|
||||
<script setup name='TechnologyInfo' lang='ts'>
|
||||
import {
|
||||
listTechnologyInfo,
|
||||
getTechnologyInfo,
|
||||
delTechnologyInfo,
|
||||
addTechnologyInfo,
|
||||
updateTechnologyInfo
|
||||
} from '@/api/mes/technologyInfo';
|
||||
import { TechnologyInfoVO, TechnologyInfoQuery, TechnologyInfoForm } from '@/api/mes/technologyInfo/types';
|
||||
import { getProcessInfoList } from '@/api/mes/baseProcessInfo';
|
||||
import MaterialSelect from '@/views/mes/baseMaterialInfo/addMaterial.vue';
|
||||
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const {
|
||||
mes_machine_type,
|
||||
active_flag,
|
||||
mes_technology_type
|
||||
} = toRefs<any>(proxy?.useDict('mes_machine_type', 'active_flag', 'mes_technology_type'));
|
||||
|
||||
const technologyInfoList = ref<TechnologyInfoVO[]>([]);
|
||||
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 technologyInfoFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
const processInfoList = ref([]);
|
||||
const materialOpen = ref(false);
|
||||
const materialSelectRef = ref();
|
||||
|
||||
/** 查询工位下拉树结构 */
|
||||
const getProcessInfoListSelect = async () => {
|
||||
let res = await getProcessInfoList(null);
|
||||
processInfoList.value = res.data;
|
||||
};
|
||||
|
||||
// 列显隐信息
|
||||
const columns = ref<FieldOption[]>([
|
||||
{ key: 0, label: `主键标识`, visible: false },
|
||||
{ key: 1, label: `租户编号`, visible: false },
|
||||
{ key: 2, label: `工序ID`, 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: `硫化标准时间`, visible: true },
|
||||
{ key: 8, label: `激活标识`, visible: true },
|
||||
{ key: 9, label: `备注`, visible: true },
|
||||
{ key: 10, label: `创建部门`, visible: false },
|
||||
{ key: 11, label: `创建人`, visible: false },
|
||||
{ key: 12, label: `创建时间`, visible: false },
|
||||
{ key: 13, label: `更新人`, visible: false },
|
||||
{ key: 14, label: `更新时间`, visible: false }
|
||||
]);
|
||||
|
||||
const initFormData: TechnologyInfoForm = {
|
||||
technologyId: undefined,
|
||||
processId: 18,
|
||||
materialId: undefined,
|
||||
machineType: undefined,
|
||||
technologyType: undefined,
|
||||
technologyVersion: undefined,
|
||||
standardTime: undefined,
|
||||
activeFlag: '1',
|
||||
remark: undefined
|
||||
};
|
||||
const data = reactive<PageData<TechnologyInfoForm, TechnologyInfoQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
technologyId: undefined,
|
||||
processId: undefined,
|
||||
materialId: undefined,
|
||||
machineType: undefined,
|
||||
technologyType: undefined,
|
||||
technologyVersion: undefined,
|
||||
standardTime: undefined,
|
||||
activeFlag: undefined,
|
||||
params: {}
|
||||
},
|
||||
rules: {
|
||||
processId: [
|
||||
{ required: true, message: '工序ID不能为空', trigger: 'blur' }
|
||||
],
|
||||
materialId: [
|
||||
{ required: true, message: '物料名称不能为空', trigger: 'blur' }
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询工序工艺信息列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listTechnologyInfo(queryParams.value);
|
||||
technologyInfoList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
technologyInfoFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: TechnologyInfoVO[]) => {
|
||||
ids.value = selection.map(item => item.technologyId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加工序工艺信息';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: TechnologyInfoVO) => {
|
||||
reset();
|
||||
const _technologyId = row?.technologyId || ids.value[0];
|
||||
const res = await getTechnologyInfo(_technologyId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改工序工艺信息';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
technologyInfoFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.technologyId) {
|
||||
await updateTechnologyInfo(form.value).finally(() => buttonLoading.value = false);
|
||||
} else {
|
||||
await addTechnologyInfo(form.value).finally(() => buttonLoading.value = false);
|
||||
}
|
||||
proxy?.$modal.msgSuccess('操作成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: TechnologyInfoVO) => {
|
||||
const _technologyIds = row?.technologyId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除工序工艺信息编号为"' + _technologyIds + '"的数据项?').finally(() => loading.value = false);
|
||||
await delTechnologyInfo(_technologyIds);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download('mes/technologyInfo/export', {
|
||||
...queryParams.value
|
||||
}, `technologyInfo_${new Date().getTime()}.xlsx`);
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleMaterialAdd = () => {
|
||||
materialOpen.value = true;
|
||||
}
|
||||
|
||||
/** 提交物料BOM信息按钮 */
|
||||
const submitMaterialForm = () => {
|
||||
let selectedRow = materialSelectRef.value.tableRef.store.states.currentRow.value;
|
||||
form.value.materialId = selectedRow.materialId
|
||||
form.value.materialName = selectedRow.materialName
|
||||
materialOpen.value = false;
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getProcessInfoListSelect();
|
||||
getList();
|
||||
});
|
||||
</script>
|
@ -0,0 +1,332 @@
|
||||
<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='stepId'>
|
||||
<el-input v-model='queryParams.stepId' placeholder='请输入主键标识' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='工艺ID' prop='technologyId'>
|
||||
<el-input v-model='queryParams.technologyId' placeholder='请输入工艺ID' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序编号' prop='stepCode'>
|
||||
<el-input v-model='queryParams.stepCode' placeholder='请输入步序编号' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序名称' prop='stepName'>
|
||||
<el-input v-model='queryParams.stepName' placeholder='请输入步序名称' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序时间' prop='stepTime'>
|
||||
<el-input v-model='queryParams.stepTime' placeholder='请输入步序时间' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序参数' prop='stepParameter'>
|
||||
<el-input v-model='queryParams.stepParameter' placeholder='请输入步序参数' clearable
|
||||
@keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='阀门状态' prop='valueState'>
|
||||
<el-input v-model='queryParams.valueState' placeholder='请输入阀门状态' clearable @keyup.enter='handleQuery' />
|
||||
</el-form-item>
|
||||
<el-form-item label='激活标识' prop='activeFlag'>
|
||||
<el-input v-model='queryParams.activeFlag' placeholder='请输入激活标识' clearable @keyup.enter='handleQuery' />
|
||||
</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:technologyStepInfo:add']">
|
||||
新增
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='success' plain icon='Edit' :disabled='single' @click='handleUpdate()'
|
||||
v-hasPermi="['mes:technologyStepInfo:edit']">修改
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='danger' plain icon='Delete' :disabled='multiple' @click='handleDelete()'
|
||||
v-hasPermi="['mes:technologyStepInfo:remove']">删除
|
||||
</el-button>
|
||||
</el-col>
|
||||
<el-col :span='1.5'>
|
||||
<el-button type='warning' plain icon='Download' @click='handleExport'
|
||||
v-hasPermi="['mes:technologyStepInfo: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='technologyStepInfoList' @selection-change='handleSelectionChange'>
|
||||
<el-table-column type='selection' width='55' align='center' />
|
||||
<el-table-column label='主键标识' align='center' prop='stepId' v-if='columns[0].visible' />
|
||||
<el-table-column label='工艺ID' align='center' prop='technologyId' v-if='columns[2].visible' />
|
||||
<el-table-column label='步序编号' align='center' prop='stepCode' v-if='columns[3].visible' />
|
||||
<el-table-column label='步序名称' align='center' prop='stepName' v-if='columns[4].visible' />
|
||||
<el-table-column label='步序时间' align='center' prop='stepTime' v-if='columns[5].visible' />
|
||||
<el-table-column label='步序参数' align='center' prop='stepParameter' v-if='columns[6].visible' />
|
||||
<el-table-column label='阀门状态' align='center' prop='valueState' v-if='columns[7].visible' />
|
||||
<el-table-column label='激活标识' align='center' prop='activeFlag' v-if='columns[8].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[9].visible' />
|
||||
<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:technologyStepInfo:edit']"></el-button>
|
||||
</el-tooltip>
|
||||
<el-tooltip content='删除' placement='top'>
|
||||
<el-button link type='primary' icon='Delete' @click='handleDelete(scope.row)'
|
||||
v-hasPermi="['mes:technologyStepInfo: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='technologyStepInfoFormRef' :model='form' :rules='rules' label-width='80px'>
|
||||
<el-form-item label='主键标识' prop='stepId'>
|
||||
<el-input v-model='form.stepId' placeholder='请输入主键标识' />
|
||||
</el-form-item>
|
||||
<el-form-item label='工艺ID' prop='technologyId'>
|
||||
<el-input v-model='form.technologyId' placeholder='请输入工艺ID' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序编号' prop='stepCode'>
|
||||
<el-input v-model='form.stepCode' placeholder='请输入步序编号' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序名称' prop='stepName'>
|
||||
<el-input v-model='form.stepName' placeholder='请输入步序名称' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序时间' prop='stepTime'>
|
||||
<el-input v-model='form.stepTime' placeholder='请输入步序时间' />
|
||||
</el-form-item>
|
||||
<el-form-item label='步序参数' prop='stepParameter'>
|
||||
<el-input v-model='form.stepParameter' placeholder='请输入步序参数' />
|
||||
</el-form-item>
|
||||
<el-form-item label='阀门状态' prop='valueState'>
|
||||
<el-input v-model='form.valueState' placeholder='请输入阀门状态' />
|
||||
</el-form-item>
|
||||
<el-form-item label='激活标识' prop='activeFlag'>
|
||||
<el-input v-model='form.activeFlag' placeholder='请输入激活标识' />
|
||||
</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='TechnologyStepInfo' lang='ts'>
|
||||
import {
|
||||
listTechnologyStepInfo,
|
||||
getTechnologyStepInfo,
|
||||
delTechnologyStepInfo,
|
||||
addTechnologyStepInfo,
|
||||
updateTechnologyStepInfo
|
||||
} from '@/api/mes/technologyStepInfo';
|
||||
import {
|
||||
TechnologyStepInfoVO,
|
||||
TechnologyStepInfoQuery,
|
||||
TechnologyStepInfoForm
|
||||
} from '@/api/mes/technologyStepInfo/types';
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
|
||||
const technologyStepInfoList = ref<TechnologyStepInfoVO[]>([]);
|
||||
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 technologyStepInfoFormRef = ref<ElFormInstance>();
|
||||
|
||||
const dialog = reactive<DialogOption>({
|
||||
visible: false,
|
||||
title: ''
|
||||
});
|
||||
|
||||
// 列显隐信息
|
||||
const columns = ref<FieldOption[]>([
|
||||
{ key: 0, label: `主键标识`, visible: true },
|
||||
{ key: 1, label: `租户编号`, visible: true },
|
||||
{ key: 2, label: `工艺ID`, 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: `阀门状态`, visible: true },
|
||||
{ key: 8, label: `激活标识`, visible: true },
|
||||
{ key: 9, label: `备注`, visible: true },
|
||||
{ key: 10, label: `创建部门`, visible: true },
|
||||
{ key: 11, label: `创建人`, visible: true },
|
||||
{ key: 12, label: `创建时间`, visible: true },
|
||||
{ key: 13, label: `更新人`, visible: true },
|
||||
{ key: 14, label: `更新时间`, visible: true }
|
||||
]);
|
||||
|
||||
const initFormData: TechnologyStepInfoForm = {
|
||||
stepId: undefined,
|
||||
technologyId: undefined,
|
||||
stepCode: undefined,
|
||||
stepName: undefined,
|
||||
stepTime: undefined,
|
||||
stepParameter: undefined,
|
||||
valueState: undefined,
|
||||
activeFlag: undefined,
|
||||
remark: undefined
|
||||
};
|
||||
const data = reactive<PageData<TechnologyStepInfoForm, TechnologyStepInfoQuery>>({
|
||||
form: { ...initFormData },
|
||||
queryParams: {
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
stepId: undefined,
|
||||
technologyId: undefined,
|
||||
stepCode: undefined,
|
||||
stepName: undefined,
|
||||
stepTime: undefined,
|
||||
stepParameter: undefined,
|
||||
valueState: undefined,
|
||||
activeFlag: undefined,
|
||||
params: {}
|
||||
},
|
||||
rules: {
|
||||
stepId: [
|
||||
{ required: true, message: '主键标识不能为空', trigger: 'blur' }
|
||||
],
|
||||
technologyId: [
|
||||
{ required: true, message: '工艺ID不能为空', trigger: 'blur' }
|
||||
],
|
||||
stepCode: [
|
||||
{ required: true, message: '步序编号不能为空', trigger: 'blur' }
|
||||
],
|
||||
stepName: [
|
||||
{ required: true, message: '步序名称不能为空', trigger: 'blur' }
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
const { queryParams, form, rules } = toRefs(data);
|
||||
|
||||
/** 查询工艺步序信息列表 */
|
||||
const getList = async () => {
|
||||
loading.value = true;
|
||||
const res = await listTechnologyStepInfo(queryParams.value);
|
||||
technologyStepInfoList.value = res.rows;
|
||||
total.value = res.total;
|
||||
loading.value = false;
|
||||
};
|
||||
|
||||
/** 取消按钮 */
|
||||
const cancel = () => {
|
||||
reset();
|
||||
dialog.visible = false;
|
||||
};
|
||||
|
||||
/** 表单重置 */
|
||||
const reset = () => {
|
||||
form.value = { ...initFormData };
|
||||
technologyStepInfoFormRef.value?.resetFields();
|
||||
};
|
||||
|
||||
/** 搜索按钮操作 */
|
||||
const handleQuery = () => {
|
||||
queryParams.value.pageNum = 1;
|
||||
getList();
|
||||
};
|
||||
|
||||
/** 重置按钮操作 */
|
||||
const resetQuery = () => {
|
||||
queryFormRef.value?.resetFields();
|
||||
handleQuery();
|
||||
};
|
||||
|
||||
/** 多选框选中数据 */
|
||||
const handleSelectionChange = (selection: TechnologyStepInfoVO[]) => {
|
||||
ids.value = selection.map(item => item.stepId);
|
||||
single.value = selection.length != 1;
|
||||
multiple.value = !selection.length;
|
||||
};
|
||||
|
||||
/** 新增按钮操作 */
|
||||
const handleAdd = () => {
|
||||
reset();
|
||||
dialog.visible = true;
|
||||
dialog.title = '添加工艺步序信息';
|
||||
};
|
||||
|
||||
/** 修改按钮操作 */
|
||||
const handleUpdate = async (row?: TechnologyStepInfoVO) => {
|
||||
reset();
|
||||
const _stepId = row?.stepId || ids.value[0];
|
||||
const res = await getTechnologyStepInfo(_stepId);
|
||||
Object.assign(form.value, res.data);
|
||||
dialog.visible = true;
|
||||
dialog.title = '修改工艺步序信息';
|
||||
};
|
||||
|
||||
/** 提交按钮 */
|
||||
const submitForm = () => {
|
||||
technologyStepInfoFormRef.value?.validate(async (valid: boolean) => {
|
||||
if (valid) {
|
||||
buttonLoading.value = true;
|
||||
if (form.value.stepId) {
|
||||
await updateTechnologyStepInfo(form.value).finally(() => buttonLoading.value = false);
|
||||
} else {
|
||||
await addTechnologyStepInfo(form.value).finally(() => buttonLoading.value = false);
|
||||
}
|
||||
proxy?.$modal.msgSuccess('操作成功');
|
||||
dialog.visible = false;
|
||||
await getList();
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/** 删除按钮操作 */
|
||||
const handleDelete = async (row?: TechnologyStepInfoVO) => {
|
||||
const _stepIds = row?.stepId || ids.value;
|
||||
await proxy?.$modal.confirm('是否确认删除工艺步序信息编号为"' + _stepIds + '"的数据项?').finally(() => loading.value = false);
|
||||
await delTechnologyStepInfo(_stepIds);
|
||||
proxy?.$modal.msgSuccess('删除成功');
|
||||
await getList();
|
||||
};
|
||||
|
||||
/** 导出按钮操作 */
|
||||
const handleExport = () => {
|
||||
proxy?.download('mes/technologyStepInfo/export', {
|
||||
...queryParams.value
|
||||
}, `technologyStepInfo_${new Date().getTime()}.xlsx`);
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getList();
|
||||
});
|
||||
</script>
|
Loading…
Reference in New Issue