style(@vben/web-antd): 修正 linter 自动格式化残留
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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; // 今日工作时长(分钟)
|
||||
|
||||
@@ -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"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user