1
lkk
2025-04-28 5d87fe6b8fbb78f4406be2663060f4ea5444f13d
1
1个文件已修改
33 ■■■■■ 已修改文件
src/views/hosp/advicerules/index.vue 33 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/advicerules/index.vue
@@ -288,11 +288,24 @@
          />
        </el-form-item>
        <el-form-item label="异常标志" prop="ycbz">
          <el-input
          <!-- <el-input
            v-model="form.ycbz"
            style="width: 200px"
            placeholder="请输入异常标志"
          />
          /> -->
          <el-select
            v-model="form.ycbz"
            placeholder="请选择异常标志"
            style="width: 200px"
            clearable
          >
            <el-option
              v-for="item in ycdata"
              :key="item.value"
              :label="item.label"
              :value="item.label"
            ></el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="疾病" prop="sfjb">
@@ -526,6 +539,22 @@
      loading: true,
      // 选中数组
      ids: [],
      ycdata: [
        { label: "↑", value: "up" },
        { label: "↓", value: "down" },
        { label: "阳性", value: "positive" },
        { label: "弱阳性", value: "weak_positive" },
        { label: "4+", value: "4plus" },
        { label: "3+", value: "3plus" },
        { label: "2+", value: "2plus" },
        { label: "1+", value: "1plus" },
        { label: "+1", value: "plus1" },
        { label: "+2", value: "plus2" },
        { label: "+3", value: "plus3" },
        { label: "+4", value: "plus4" },
        { label: "+", value: "plus" },
        { label: "+-", value: "plus_minus" },
      ],
      // 非单个禁用
      single: true,
      // 非多个禁用