update 班组显示优化

master
yinq 3 weeks ago
parent 7c1d399809
commit f9658eaea7

@ -1,9 +1,63 @@
// 定义工艺路线步骤的接口
export interface ProdBaseRouteProcess {
/** 工艺路线步骤ID */
routeProcessId?: number;
/** 工艺路线ID */
routeId?: number;
/** 工序ID */
processId: string | number;
/** 工序名称 */
processName?: string;
/** 工序类型 */
processType?: string;
/** 工序顺序 */
processOrder: string | number;
/** 委外标识 */
outsourcingFlag?: string;
/** 工序类型 */
operationType?: string;
/** 是否需要上料 */
needFeeding?: string;
/** 设备点检 */
needEquipmentCheck?: string;
/** 实际产出率 */
actualYieldRate?: number;
/** 领料方式 */
materialIssuance?: string;
/** 委外提前期 */
outsourcingLeadTime?: number;
/** 准备时间 */
setupTime?: number;
/** 加工时间 */
processingTime?: number;
/** 拆卸时间 */
teardownTime?: number;
/** 生产节拍 */
productionTakt?: number;
/** 质检方式 */
inspectionMethod?: string;
/** 质量检验规则ID */
qualityRuleId?: string;
/** 关键工序 */
isKeyOperation?: string;
/** 下工序要求 */
nextStepRequirement?: string;
/** 最后工序 */
isFinalStep?: string;
/** 生成流转卡任务 */
generatePrepareTask?: string;
/** 瓶颈工序 */
bottleneckFlag?: string;
/** 瓶颈设置 */
bottleneckSetting?: string;
/** 接续关系 */
successorRelation?: string;
/** 偏置时间 */
offsetTime?: number;
/** 技术附件 */
techAttachments?: string;
/** 质检员 */
inspectors?: string;
/** 备注 */
remark?: string;
/** 创建人 */

@ -134,7 +134,7 @@
</el-card>
<!-- 添加或修改班组信息对话框 -->
<el-dialog :title="dialog.title" v-model="dialog.visible" width="500px" append-to-body>
<el-form ref="baseClassTeamInfoFormRef" :model="form" :rules="rules" label-width="80px">
<el-form ref="baseClassTeamInfoFormRef" :model="form" :rules="rules" label-width="100px">
<!-- <el-form-item label="主键标识" prop="classTeamId">
<el-input v-model="form.classTeamId" placeholder="请输入主键标识" />
</el-form-item>-->
@ -292,10 +292,10 @@ const columns = ref<FieldOption[]>([
{ key: 0, label: `班组编号`, visible: true },
{ key: 1, label: `班组名称`, visible: true },
{ 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: 3, label: `班次`, visible: false },
{ key: 4, label: `工序`, visible: false },
{ key: 5, label: `工位`, visible: false },
{ key: 6, label: `设备`, visible: false },
{ key: 7, label: `激活标识`, visible: true },
/* { key: 10, label: ``, visible: true },
{ key: 11, label: `创建人`, visible: true },

Loading…
Cancel
Save