qx
qx
2025-07-03 495bf3ca62536c52cf78895501205965cae05828
src/views/hosp/biaoben/index.vue
@@ -20,7 +20,11 @@
          ref="specimenTable" :row-key="row => row.value" @select="handleSpecimenSelect">
          <el-table-column type="selection" width="40px" align="center" />
          <el-table-column label="序号" align="center" type="index" width="50px" />
          <el-table-column label="标本名称" align="center" prop="label" show-overflow-tooltip />
          <el-table-column label="标本名称" align="center"  show-overflow-tooltip>
            <template slot-scope="scope">
              {{ scope.row.label ? scope.row.label : scope.row.dictLabel }}
            </template>
          </el-table-column>
        </el-table>
      </el-col>
@@ -413,7 +417,7 @@
              this.open = false;
              let dictType = "sys_dict_specimen"
                getDicts(dictType).then(response => {
                  this.originalSpecimenData=  response.rows ||[]
                this.originalSpecimenData = response.data || []
                  this.filteredSpecimenData =[...this.originalSpecimenData];
                });
            });