体检项目bug优化

This commit is contained in:
2026-04-30 16:49:39 +08:00
parent 4c993b2a33
commit 773062bdf5
2 changed files with 32 additions and 2 deletions
@@ -70,6 +70,16 @@ layout("/layouts/platform.html"){
:key="item.id"></el-option>
</el-select>
</search-item>
<search-item label="确认状态">
<el-select v-model="pageForm.isAudit" placeholder="请选择" clearable>
<el-option
v-for="item in isAuditOptions"
:key="item.value"
:label="item.label"
:value="item.value">
</el-option>
</el-select>
</search-item>
</search>
</el-card>
@@ -288,7 +298,7 @@ layout("/layouts/platform.html"){
{prop: 'unitName', label: '所属单位', sortable: true},
{prop: 'optionName', label: '所选套餐'},
{prop: 'selectTime', label: '选择时间', width: "160px"},
{prop: 'isAudit', label: '是否确认'},
{prop: 'isAudit', label: '是否确认', sortable: true},
{prop: 'auditTime', label: '确认时间'},
{prop: 'bz', label: '备注',width: "200px"},
],
@@ -314,6 +324,16 @@ layout("/layouts/platform.html"){
feedbackInfo: ""
},
campusOptions: [],
isAuditOptions: [
{
label: "已确认",
value: "1"
},
{
label: "未确认",
value: "0"
}
]
}
},
components: {