|
@@ -49,10 +49,11 @@
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
|
<el-form-item label="工序名称">
|
|
<el-form-item label="工序名称">
|
|
|
- <el-input :value="details.taskTypeName" disabled></el-input>
|
|
|
|
|
|
|
+ <el-input :value="details.produceTaskName" disabled></el-input>
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- <el-col :span="8"> </el-col>
|
|
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+ <el-row style="margin-bottom: 20px">
|
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
|
<el-form-item label="产品编码">
|
|
<el-form-item label="产品编码">
|
|
|
<el-input :value="details.productCode" disabled></el-input>
|
|
<el-input :value="details.productCode" disabled></el-input>
|
|
@@ -70,6 +71,8 @@
|
|
|
disabled
|
|
disabled
|
|
|
></el-input> </el-form-item
|
|
></el-input> </el-form-item
|
|
|
></el-col>
|
|
></el-col>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+ <el-row style="margin-bottom: 20px">
|
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
|
<el-form-item label="规格">
|
|
<el-form-item label="规格">
|
|
|
<el-input :value="details.specification" disabled></el-input>
|
|
<el-input :value="details.specification" disabled></el-input>
|
|
@@ -88,72 +91,79 @@
|
|
|
</el-row>
|
|
</el-row>
|
|
|
<header-title title="基本信息"></header-title>
|
|
<header-title title="基本信息"></header-title>
|
|
|
<!-- 记录规则 -->
|
|
<!-- 记录规则 -->
|
|
|
- <el-row v-if="details.executeMethod == 2" style="margin-bottom: 20px">
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="记录规则名称">
|
|
|
|
|
- <el-input :value="details.productModel" disabled></el-input>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="记录规则分类">
|
|
|
|
|
- <DictSelection
|
|
|
|
|
- dictName="记录规则类型"
|
|
|
|
|
- clearable
|
|
|
|
|
- v-model="details.recordRulesClassify"
|
|
|
|
|
- disabled
|
|
|
|
|
- >
|
|
|
|
|
- </DictSelection>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="车间区域">
|
|
|
|
|
- <el-input
|
|
|
|
|
- :value="details.workshopArea"
|
|
|
|
|
- disabled
|
|
|
|
|
- ></el-input> </el-form-item
|
|
|
|
|
- ></el-col>
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="检查完成时间">
|
|
|
|
|
- <el-input
|
|
|
|
|
- :value="details.checkFinishTime"
|
|
|
|
|
- disabled
|
|
|
|
|
- ></el-input> </el-form-item
|
|
|
|
|
- ></el-col>
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="检查有效期">
|
|
|
|
|
- <el-input
|
|
|
|
|
- placeholder="请输入"
|
|
|
|
|
- v-model="details.checkValidity"
|
|
|
|
|
- type="text"
|
|
|
|
|
- disabled
|
|
|
|
|
- >
|
|
|
|
|
- <template slot="append">
|
|
|
|
|
- <div style="width: 40px; box-sizing: border-box">
|
|
|
|
|
- <el-form-item required>
|
|
|
|
|
- <DictSelection
|
|
|
|
|
- dictName="检查有效期单位"
|
|
|
|
|
- clearable
|
|
|
|
|
- v-model="details.checkValidityUnit"
|
|
|
|
|
- placeholder="单位"
|
|
|
|
|
- style="width: auto; box-sizing: border-box; height: 36px"
|
|
|
|
|
- disabled
|
|
|
|
|
- >
|
|
|
|
|
- </DictSelection>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </div>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-input> </el-form-item
|
|
|
|
|
- ></el-col>
|
|
|
|
|
- <el-col :span="8">
|
|
|
|
|
- <el-form-item label="结论">
|
|
|
|
|
- <el-radio-group v-model="details.conclution" disabled>
|
|
|
|
|
- <el-radio :label="1">合格</el-radio>
|
|
|
|
|
- <el-radio :label="2">不合格</el-radio>
|
|
|
|
|
- </el-radio-group>
|
|
|
|
|
- </el-form-item>
|
|
|
|
|
- </el-col>
|
|
|
|
|
- <el-col :span="8"> </el-col>
|
|
|
|
|
- </el-row>
|
|
|
|
|
|
|
+ <template v-if="details.executeMethod == 2">
|
|
|
|
|
+ <el-row style="margin-bottom: 20px">
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="记录规则名称">
|
|
|
|
|
+ <el-input :value="details.ruleName" disabled></el-input>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="记录规则分类">
|
|
|
|
|
+ <DictSelection
|
|
|
|
|
+ dictName="记录规则类型"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="details.recordRulesClassify"
|
|
|
|
|
+ disabled
|
|
|
|
|
+ >
|
|
|
|
|
+ </DictSelection>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="车间区域">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ :value="details.workshopArea"
|
|
|
|
|
+ disabled
|
|
|
|
|
+ ></el-input> </el-form-item
|
|
|
|
|
+ ></el-col>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+ <el-row style="margin-bottom: 20px">
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="检查完成时间">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ :value="details.checkFinishTime"
|
|
|
|
|
+ disabled
|
|
|
|
|
+ ></el-input> </el-form-item
|
|
|
|
|
+ ></el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="检查有效期">
|
|
|
|
|
+ <el-input
|
|
|
|
|
+ placeholder="请输入"
|
|
|
|
|
+ v-model="details.checkValidity"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ disabled
|
|
|
|
|
+ >
|
|
|
|
|
+ <template slot="append">
|
|
|
|
|
+ <div style="width: 40px; box-sizing: border-box">
|
|
|
|
|
+ <el-form-item required>
|
|
|
|
|
+ <DictSelection
|
|
|
|
|
+ dictName="检查有效期单位"
|
|
|
|
|
+ clearable
|
|
|
|
|
+ v-model="details.checkValidityUnit"
|
|
|
|
|
+ placeholder="单位"
|
|
|
|
|
+ style="
|
|
|
|
|
+ width: auto;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ height: 36px;
|
|
|
|
|
+ "
|
|
|
|
|
+ disabled
|
|
|
|
|
+ >
|
|
|
|
|
+ </DictSelection>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-input> </el-form-item
|
|
|
|
|
+ ></el-col>
|
|
|
|
|
+ <el-col :span="8">
|
|
|
|
|
+ <el-form-item label="结论">
|
|
|
|
|
+ <el-radio-group v-model="details.conclution" disabled>
|
|
|
|
|
+ <el-radio :label="1">合格</el-radio>
|
|
|
|
|
+ <el-radio :label="2">不合格</el-radio>
|
|
|
|
|
+ </el-radio-group>
|
|
|
|
|
+ </el-form-item>
|
|
|
|
|
+ </el-col>
|
|
|
|
|
+ </el-row>
|
|
|
|
|
+ </template>
|
|
|
|
|
|
|
|
<header-title
|
|
<header-title
|
|
|
v-if="details.executeMethod == 2"
|
|
v-if="details.executeMethod == 2"
|