Browse Source

4298,4297,4296

zhouna 5 years ago
parent
commit
df6ad7c34d

+ 1 - 0
src/components/qualityControl/AddCombineFeild.vue

@@ -141,6 +141,7 @@
         }
         this.form = Object.assign({},data);
         if(isCopy){
+          this.title='组合字段维护-复制组合字段';
           this.isCopy = isCopy
           this.form.tagName = ""
           this.form.id=""

+ 1 - 1
src/components/qualityControl/AddQcType.vue

@@ -7,7 +7,7 @@
                     <el-form-item label="所属医院:" prop="hospitalId">
                         <el-select v-model="form.hospitalId"
                                    placeholder="请选择"
-                                   :disabled="!!this.form.id"
+                                   :disabled="!!this.form.id||copy"
                                    @change="changeHospital"
                                    size="small">
                             <el-option

+ 2 - 1
src/components/qualityControl/BaseFieldList.vue

@@ -227,7 +227,8 @@
       getFilterItems() {
         const param = Object.assign({
           current: this.currentPage,
-          size: this.pageSize
+          size: this.pageSize,
+          tagTypeList:[1]
         },this.filter);
         return param;
       },

+ 2 - 1
src/components/qualityControl/CombineFeildList.vue

@@ -208,7 +208,8 @@
       getFilterItems() {
         const param =  Object.assign({
           current: this.currentPage,
-          size: this.pageSize
+          size: this.pageSize,
+          tagTypeList:[4]
         },this.filter);
         return param;
       },