门诊医生站-》开立诊断 页面调整
This commit is contained in:
@@ -47,10 +47,9 @@
|
||||
<option>检验套餐</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item filter-item-department">
|
||||
<div class="filter-item">
|
||||
<label>科室:</label>
|
||||
<el-tree-select
|
||||
v-model="searchParams.department"
|
||||
placeholder="请选择科室"
|
||||
:data="departments"
|
||||
:props="{
|
||||
@@ -59,10 +58,7 @@
|
||||
children: 'children'
|
||||
}"
|
||||
value-key="name"
|
||||
check-strictly
|
||||
:expand-on-click-node="false"
|
||||
clearable
|
||||
style="width: 200px;"
|
||||
style="width: 100%;"
|
||||
/>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
@@ -239,8 +235,7 @@ const searchParams = ref({
|
||||
startDate: getCurrentDate(),
|
||||
endDate: getCurrentDate(),
|
||||
packageName: '',
|
||||
packageLevel: '',
|
||||
department: ''
|
||||
packageLevel: ''
|
||||
});
|
||||
|
||||
// 过滤后的数据
|
||||
@@ -256,9 +251,6 @@ const filteredData = computed(() => {
|
||||
// 套餐级别筛选
|
||||
if (searchParams.value.packageLevel && item.level !== searchParams.value.packageLevel) return false;
|
||||
|
||||
// 科室筛选
|
||||
if (searchParams.value.department && item.department !== searchParams.value.department) return false;
|
||||
|
||||
return true;
|
||||
});
|
||||
});
|
||||
@@ -289,8 +281,7 @@ function handleReset() {
|
||||
startDate: getCurrentDate(),
|
||||
endDate: getCurrentDate(),
|
||||
packageName: '',
|
||||
packageLevel: '',
|
||||
department: ''
|
||||
packageLevel: ''
|
||||
};
|
||||
}
|
||||
|
||||
@@ -461,14 +452,6 @@ function convertToCSV(data) {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.filter-item-department {
|
||||
min-width: 280px;
|
||||
}
|
||||
|
||||
.filter-item-department .el-tree-select {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.filter-item label {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
|
||||
Reference in New Issue
Block a user