增加药敏显示
This commit is contained in:
parent
a150feb640
commit
55f90ad01e
@ -2,7 +2,15 @@
|
||||
<template>
|
||||
<div>
|
||||
<CustomTable ref="tableRefUp" :data="tableDataUp" :columns="columnsUp" :config="tableConfig" />
|
||||
<CustomTable ref="tableRefDown" :data="tableDataDown" :columns="columnsDown" :config="tableConfig" />
|
||||
<CustomTable ref="tableRefDown" :data="tableDataDown" :columns="columnsDown" :config="tableConfig">
|
||||
<template #jgbz="{ row }">
|
||||
<el-radio-group v-model="row.jgbz" size="small">
|
||||
<el-radio value="R">R</el-radio>
|
||||
<el-radio value="I">I</el-radio>
|
||||
<el-radio value="S">S</el-radio>
|
||||
</el-radio-group>
|
||||
</template>
|
||||
</CustomTable>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -20,7 +28,7 @@ const columnsUp = ref([
|
||||
const columnsDown = ref([
|
||||
{ prop: 'ywmc', label: '抗生素', visible: true, align: 'center' },
|
||||
{ prop: 'csjg', label: '测试结果', visible: true, align: 'center', width: 80 },
|
||||
{ prop: 'jgbz', label: '结果标志', visible: true, align: 'center', width: 80 },
|
||||
{ prop: 'jgbz', label: '结果标志', visible: true, align: 'center', width: 170, slot: 'jgbz' },
|
||||
{ prop: 'mic', label: 'mic', visible: true, align: 'center', width: 50 },
|
||||
{ prop: 'rad', label: 'rad', visible: true, align: 'center' },
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user