From c91ea4d8cda53c0f319c9f4306ff03e7c774bca0 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期五, 15 三月 2024 16:03:56 +0800
Subject: [PATCH] 业务管理:检验任务(update)
---
src/components/view/b2-standard.vue | 82 +++++++++++++++++++++++++++++++++++------
1 files changed, 70 insertions(+), 12 deletions(-)
diff --git a/src/components/view/b2-standard.vue b/src/components/view/b2-standard.vue
index a67a3e0..c203284 100644
--- a/src/components/view/b2-standard.vue
+++ b/src/components/view/b2-standard.vue
@@ -151,20 +151,20 @@
<el-table :data="productList" style="width: 100%;" height="100%" tooltip-effect="dark" stripe :fit="true" border
@selection-change="handleSelectionChange">
<el-table-column type="selection" width="65"></el-table-column>
- <el-table-column prop="inspectionItem" label="妫�楠岄」" show-overflow-tooltip></el-table-column>
- <el-table-column prop="inspectionItemClassify" label="妫�楠岄」绫诲瀷" width="120" show-overflow-tooltip></el-table-column>
- <el-table-column prop="inspectionItemSubclass" label="妫�楠岄」灏忕被" width="120" show-overflow-tooltip></el-table-column>
- <el-table-column prop="laboratory" label="瀹為獙瀹�" width="120" show-overflow-tooltip></el-table-column>
+ <el-table-column prop="inspectionItem" label="妫�楠岄」" min-width="140" show-overflow-tooltip></el-table-column>
+ <!-- <el-table-column prop="inspectionItemClassify" label="妫�楠岄」绫诲瀷" width="120" show-overflow-tooltip></el-table-column> -->
+ <el-table-column prop="inspectionItemSubclass" label="妫�楠岄」瀛愰」" min-width="140" show-overflow-tooltip></el-table-column>
+ <el-table-column prop="sonLaboratory" label="瀛愬疄楠屽" width="130" show-overflow-tooltip></el-table-column>
<el-table-column prop="unit" label="璁¢噺鍗曚綅" width="100" show-overflow-tooltip></el-table-column>
<el-table-column prop="price" label="鍗曚环" width="100" show-overflow-tooltip></el-table-column>
<el-table-column prop="manHour" label="宸ユ椂" width="80" show-overflow-tooltip></el-table-column>
<el-table-column prop="manHourGroup" label="宸ユ椂鍒嗙粍" width="100" show-overflow-tooltip></el-table-column>
- <el-table-column prop="deviceGroup" label="璁惧缁�" show-overflow-tooltip></el-table-column>
+ <el-table-column prop="deviceGroup" label="璁惧缁�" width="120" show-overflow-tooltip></el-table-column>
<el-table-column prop="section" label="鍖洪棿" width="120" show-overflow-tooltip></el-table-column>
<el-table-column prop="ask" label="瑕佹眰鍊�" width="220px">
<template slot-scope="scope">
<el-input size="small" placeholder="瑕佹眰鍊�" v-model="scope.row.ask" clearable
- @change="(value)=>upStandardProductList(value,scope.row.id)" v-if="upStandardProduct"></el-input>
+ @change="(value)=>upStandardProductList(value,scope.row.id)" v-if="upStandardProduct" type="textarea" :autosize="{ minRows: 1, maxRows: 3}"></el-input>
<span v-else>{{scope.row.ask}}</span>
</template>
</el-table-column>
@@ -208,9 +208,7 @@
<span class="required-span">* </span>鏍峰搧鍚嶇О锛�
</el-col>
<el-col :span="16" :offset="1">
- <el-select v-model="addOb.sample" size="small" style="width: 100%;" clearable>
- <el-option v-for="(a, ai) in sample" :key="ai" :value="a.value" :label="a.label"></el-option>
- </el-select>
+ <el-input v-model="addOb.sample" placeholder="璇疯緭鍏ユ牱鍝佸悕绉�" clearable size="small"></el-input>
</el-col>
</el-row>
<el-row style="line-height: 50px;">
@@ -311,7 +309,21 @@
showSelect: true,
select: true,
do: [],
- tagField: {},
+ tagField: {
+ inspectionItemType: {
+ select: []
+ },
+ valueType: {
+ select: []
+ },
+ bsm:{
+ select: []
+ },
+ inspectionValueType:{
+ select:[]
+ },
+ deviceGroup:{select:[]}
+ },
selectField: {},
}
}
@@ -321,9 +333,14 @@
this.selectEnumByCategoryForFactory()
this.selectStandardTreeList()
this.obtainItemParameterList()
- this.selectEnumByCategoryForsampleType()
+ // this.selectEnumByCategoryForsampleType()
this.selectTestObjectByName()
this.selectStandardMethods()
+ this.selectEnumByCategoryForDevice()
+ this.selectEnumByCategory()
+ this.selectEnumByCategoryForValue()
+ this.selectEnumByCategoryForSpecial()
+ this.selectEnumByCategoryForInspectionValueType()
},
methods: {
filterNode(value, data) {
@@ -347,6 +364,11 @@
}
this.selectTree = data2.replace(' - ', '')
this.selectsStandardMethodByFLSSM()
+ let trees = this.selectTree.split(" - ")
+ this.addOb.factory = trees[0]
+ this.addOb.laboratory = trees[1]
+ this.addOb.sampleType = trees[2]
+ this.addOb.sample = trees[3]
},
getNodeParent(val) {
if (val.parent != null) {
@@ -400,6 +422,42 @@
this.sampleType = res.data
})
},
+ selectEnumByCategoryForDevice() {
+ this.$axios.post(this.$api.enums.selectEnumByCategory, {
+ category: "璁惧鍒嗙被"
+ }).then(res => {
+ this.componentData.tagField.deviceGroup.select = res.data
+ })
+ },
+ selectEnumByCategory() {
+ this.$axios.post(this.$api.enums.selectEnumByCategory, {
+ category: "妫�楠岄」绫诲瀷"
+ }).then(res => {
+ res.data[1].type = 'info'
+ this.componentData.tagField.inspectionItemType.select = res.data
+ })
+ },
+ selectEnumByCategoryForValue() {
+ this.$axios.post(this.$api.enums.selectEnumByCategory, {
+ category: "鍙栧�肩被鍨�"
+ }).then(res => {
+ this.componentData.tagField.valueType.select = res.data
+ })
+ },
+ selectEnumByCategoryForSpecial() {
+ this.$axios.post(this.$api.enums.selectEnumByCategory, {
+ category: "鏄惁"
+ }).then(res => {
+ this.componentData.tagField.bsm.select = res.data
+ })
+ },
+ selectEnumByCategoryForInspectionValueType() {
+ this.$axios.post(this.$api.enums.selectEnumByCategory, {
+ category: "妫�楠屽�肩被鍨�"
+ }).then(res => {
+ this.componentData.tagField.inspectionValueType.select = res.data
+ })
+ },
selectStandardTreeList() {
this.treeLoad = true
this.$axios.get(this.$api.standardTree.selectStandardTreeList).then(res => {
@@ -428,7 +486,7 @@
value: a.specimenName
})
})
- this.sample = data
+ this.sampleType = data
})
},
selectStandardMethods() {
--
Gitblit v1.9.3