1. 更新切换账号逻辑

2. 诊所管理员功能上线
This commit is contained in:
李琦
2026-05-30 16:47:02 +08:00
parent 31551437c2
commit 375d2c43b2
2 changed files with 3 additions and 3 deletions

View File

@@ -75,7 +75,7 @@
background: #f9fafb; background: #f9fafb;
} }
.clinic-body { .clinic-body {
padding-left: 24rpx; //padding-left: 24rpx;
padding-right: 24rpx; //padding-right: 24rpx;
} }
</style> </style>

View File

@@ -98,7 +98,7 @@ export default {
const warehouseMenus = options.map((opt) => { const warehouseMenus = options.map((opt) => {
const value = opt.value != null ? opt.value : opt.id const value = opt.value != null ? opt.value : opt.id
const label = opt.label || opt.name || '仓库' const label = opt.label || opt.name || '仓库'
const title = label.indexOf('仓库') >= 0 ? label : label + '仓库' const title = label.indexOf('仓库') >= 0 ? label : label
return { return {
key: 'warehouse-' + value, key: 'warehouse-' + value,
label: title, label: title,