Commit 53a61daf authored by zhuangxinwei's avatar zhuangxinwei

隔离点是否阳性

parent 9f68c53d
......@@ -205,7 +205,11 @@
<el-table-column label="居住人姓名" width="120" align="center" prop="jzName" :show-overflow-tooltip="true"/>
<el-table-column label="身份证号码" width="200" align="center" prop="cardNo" :show-overflow-tooltip="true"/>
<el-table-column label="联系方式" width="120" align="center" prop="phone" :show-overflow-tooltip="true"/>
<el-table-column label="是否阳性" width="100" align="center" prop="isYx" :show-overflow-tooltip="true"/>
<el-table-column label="是否阳性" width="100" align="center" prop="isYx" :show-overflow-tooltip="true">
<template slot-scope="scope">
<dict-tag :options="dict.type.is_yx" :value="scope.row.isYx"/>
</template>
</el-table-column>
<el-table-column label="居住地所在区" width="180" align="center" prop="area" :show-overflow-tooltip="true">
<template slot-scope="scope">
<dict-tag :options="dict.type.residential_area" :value="scope.row.area"/>
......@@ -518,7 +522,7 @@ import { importTemplate, importExcel } from "@/api/system/gldry";
import moment from "moment";
export default {
name: "Gldry",
dicts: ['street_town', 'residential_area', 'sys_normal_disable','isolation_point','community','committee'],
dicts: ['street_town', 'residential_area', 'sys_normal_disable','isolation_point','community','committee','is_yx'],
data() {
var validateStartTime = (rule, value, callback) => {
if (value === undefined || value === '' || value === null) {
......
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