diff --git a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue
index a0c537d..fa98398 100644
--- a/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue
+++ b/src/views/modules/sampleManagement/technicalSpecificationDetail/com_tsd_basicInformation.vue
@@ -42,6 +42,11 @@
+
+
+
+
+
@@ -84,13 +89,20 @@
-
-
+
+
+
@@ -240,6 +252,10 @@
technicianList:[],
stage:'',
remarkPage:'',
+ cqcOperator:'',
+ faiOperator:'',
+ cqcOperatorName:'',
+ faiOperatorName:'',
},
dataRole: {
partTypeDesc: [
@@ -266,9 +282,12 @@
this.tagNo1 = type
this.$nextTick(() => {
let strVal = ''
- if (val === 1013) {
+ if (val === 103) {
if(type==1) {
- strVal = this.dataForm.partType
+ strVal = this.dataForm.cqcOperator
+ }
+ if(type==2) {
+ strVal = this.dataForm.faiOperator
}
}
this.$refs.baseList.init(val, strVal)
@@ -276,10 +295,14 @@
},
/* 列表方法的回调 */
getBaseData (val) {
- if (this.tagNo === 1013) {
+ if (this.tagNo === 103) {
if(this.tagNo1==1) {
- this.dataForm.partType = val.Base_id
- this.dataForm.partTypeDesc = val.Base_desc
+ this.dataForm.cqcOperator = val.username
+ this.dataForm.cqcOperatorName = val.user_display
+ }
+ if(this.tagNo1==2) {
+ this.dataForm.faiOperator = val.username
+ this.dataForm.faiOperatorName = val.user_display
}
}
},