Commit 35731ffd authored by miaojiale's avatar miaojiale

1.修改筛查查询字段

2.医联体内外不一致
parent d8c62966
...@@ -223,7 +223,7 @@ ...@@ -223,7 +223,7 @@
v-for="(opt, optIndex) in unionList" v-for="(opt, optIndex) in unionList"
:key="optIndex" :key="optIndex"
:label="opt.unionName" :label="opt.unionName"
:value="opt.unionNo" :value="opt.id"
></el-option> ></el-option>
</template> </template>
<template v-else> <template v-else>
......
...@@ -80,7 +80,7 @@ export default { ...@@ -80,7 +80,7 @@ export default {
if (v.length > 0 && this.form[this.item.prop]) { if (v.length > 0 && this.form[this.item.prop]) {
// console.log("获取到了医联体列表", this.form[this.item.prop]) // console.log("获取到了医联体列表", this.form[this.item.prop])
this.unionName = v.filter( this.unionName = v.filter(
(e) => e.unionNo == this.form[this.item.prop] (e) => e.id == this.form[this.item.prop]
)[0].unionName )[0].unionName
} }
}, },
......
...@@ -60,7 +60,7 @@ export default { ...@@ -60,7 +60,7 @@ export default {
{ {
type: "date", type: "date",
label: "筛查时间", label: "筛查时间",
prop: "createTime", prop: "createDate",
placeholder: "请选择时间", placeholder: "请选择时间",
valueFormat: "yyyy-MM-dd", valueFormat: "yyyy-MM-dd",
}, },
...@@ -80,9 +80,9 @@ export default { ...@@ -80,9 +80,9 @@ export default {
type: "select", type: "select",
prop: "riskRank", prop: "riskRank",
opts: [ opts: [
{ label: "低危", value: "c" }, { label: "低危", value: "low" },
{ label: "中危", value: "b" }, { label: "中危", value: "medium" },
{ label: "高危", value: "a" }, { label: "高危", value: "high" },
], ],
}, },
{ {
......
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