style(@vben/web-antd): 修正 linter 自动格式化残留

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
lzh
2026-04-14 09:14:44 +08:00
parent 86486f77dc
commit 615e928929
2 changed files with 6 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ export namespace OpsCleaningApi {
status: BadgeStatus; // 状态
currentAreaId?: number; // 当前区域ID
currentAreaName?: string; // 当前区域名称
batteryLevel: number | null; // 电量0-100可能为空
batteryLevel: null | number; // 电量0-100可能为空
lastHeartbeatTime: string; // 最后心跳时间
todayCompletedCount?: number; // 今日完成工单数
todayWorkMinutes?: number; // 今日工作时长(分钟)

View File

@@ -756,7 +756,11 @@ onUnmounted(stopPolling);
分配执行人
</Button>
<Button
v-if="['QUEUED', 'DISPATCHED', 'CONFIRMED', 'ARRIVED'].includes(order.status)"
v-if="
['QUEUED', 'DISPATCHED', 'CONFIRMED', 'ARRIVED'].includes(
order.status,
)
"
size="small"
@click="handleAssign"
>