Commit 35793d39 authored by miaojiale's avatar miaojiale

增加筛查场景

parent 194de0b9
......@@ -326,9 +326,15 @@ export default {
{
label: "场景",
minWidth: 120,
value: "unionName",
value: "patientFrom",
formatter: (row) => {
return row.unionName ? row.unionName : "--"
return row.patientFrom == "1"
? "社区筛查"
: row.patientFrom == "2"
? "医院筛查"
: row.patientFrom == "3"
? "体检筛查"
: "--"
},
sortable: "custom",
},
......
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