|
|
|
@ -9,9 +9,9 @@
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="班组名称" prop="teamDescGlobal">
|
|
|
|
|
<el-form-item label="班组名称" prop="teamDesc">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.teamDescGlobal"
|
|
|
|
|
v-model="queryParams.teamDesc"
|
|
|
|
|
placeholder="请输入班组名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
@ -80,7 +80,7 @@
|
|
|
|
|
label="序号">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="班组编码" align="center" prop="teamCode" />
|
|
|
|
|
<el-table-column label="班组名称" align="center" prop="teamDescGlobal" />
|
|
|
|
|
<el-table-column label="班组名称" align="center" prop="teamDesc" />
|
|
|
|
|
<el-table-column prop="teamType" label="班组类别" align="center" >
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ scope.row.teamType == "team_type1" ? "生产班组" : "检验班组" }}
|
|
|
|
@ -134,8 +134,8 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="班组名称" prop="teamDescGlobal" style="width:450px">
|
|
|
|
|
<el-input v-model="form.teamDescGlobal" placeholder="请输入班组通用名称" />
|
|
|
|
|
<el-form-item label="班组名称" prop="teamDesc" style="width:450px">
|
|
|
|
|
<el-input v-model="form.teamDesc" placeholder="请输入班组" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -168,7 +168,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12">
|
|
|
|
|
<el-form-item label="所属产线" prop="productionLineCode" style="width:450px">
|
|
|
|
|
<el-input v-model="form.productionLineCode" placeholder="请输入线体编码" />
|
|
|
|
|
<el-input v-model="form.productionLineCode" placeholder="请输入所属产线" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
@ -313,7 +313,7 @@ export default {
|
|
|
|
|
teamCode: [
|
|
|
|
|
{ required: true, message: "班组编码不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
teamDescGlobal: [
|
|
|
|
|
teamDesc: [
|
|
|
|
|
{ required: true, message: "班组名称不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
active: [
|
|
|
|
|