qx
qx
2025-03-07 4d3e94c23d42ce56f83cc5af718cecf849001a2b
qx
2个文件已修改
20 ■■■■ 已修改文件
src/components/public/index.vue 7 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/doctor/check/index.vue 13 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/public/index.vue
@@ -175,7 +175,12 @@
            this.list = selection
            this.form.desc = ""
            this.list.forEach(element => {
                this.form.desc += element.bingzhong + ","
                if( element.bingzhong){
this.form.desc += element.bingzhong + ","
                }else{
                    this.form.desc += element.ruleStr + ","
                }
            });
        },
        handleOk() {
src/views/doctor/check/index.vue
@@ -555,7 +555,7 @@
                  >
                    <template slot-scope="scope">
                      <el-checkbox
                        v-model="scope.row.exceptionDesc"
                        v-model="scope.row.exceptionDesc"  @change="changDesc(scope.row)"
                      ></el-checkbox>
                    </template>
                  </el-table-column>
@@ -592,7 +592,7 @@
                        autosize
                        v-model="scope.row.conclusion"
                        autocomplete="off"
                        placeholder="请输入检测结果"
                        placeholder="请输入结果结论"
                        disabled
                      ></el-input>
                    </template>
@@ -1802,6 +1802,15 @@
      // })
    },
    changDesc(item){
      console.log(item)
      if(item.exceptionDesc == true){
        item.conclusion = "异常"
      }else{
         item.conclusion = "正常"
      }
    },
    myclass(row, column, rowIndex, columnIndex) {
      if (row.row.isPositive == 1) {
        return "setclass";