体检项目bug优化
This commit is contained in:
+21
-1
@@ -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: {
|
||||
|
||||
Reference in New Issue
Block a user