Commit a7606541 authored by 张伯涛's avatar 张伯涛

修改

parent c3c73183
......@@ -206,7 +206,7 @@
<el-table-column label="人员类别" align="center" prop="peopleType" :show-overflow-tooltip="true"/>
<el-table-column label="是否阳性" align="center" prop="isPositive" width="180" :show-overflow-tooltip="true">
<template slot-scope="scope">
<span>{{scope.row.isPositive === '0' ?'否' :scope.row.isPositive === '1' ?'是' : ''}}</span>
<span>{{scope.row.isPositive === '0' ?'未阳' :scope.row.isPositive === '1' ?'阳' : ''}}</span>
</template>
</el-table-column>
<el-table-column label="仅抗原阳性" align="center" prop="positiveOnly" width="150" :show-overflow-tooltip="true"/>
......@@ -351,8 +351,8 @@
<el-col :span="12">
<el-form-item label="是否阳性" prop="isPositive">
<el-select v-model="form.isPositive" placeholder="请选择是否疾控判定阳性" style="width: 100%">
<el-option value="1" label=""></el-option>
<el-option value="0" label=""></el-option>
<el-option value="1" label=""></el-option>
<el-option value="0" label="未阳"></el-option>
</el-select>
</el-form-item>
</el-col>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment