fix(fixcontact): 未开始记录 bpm_status 为空时按未开始状态行着色

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wsm
2026-08-04 14:42:36 +08:00
co-authored by Claude Opus 4.7
parent 86212ff445
commit 74b1c26cd9
@@ -94,7 +94,7 @@
:expandedRowKeys="expandedRowKeys"
@expand="handleExpand"
:expandIcon="expandIcon"
:rowClassName="(r) => (r.bpmStatus ? 'status-row-' + r.bpmStatus : '')"
:rowClassName="(r) => 'status-row-' + (r.bpmStatus || '1')"
>
<template #tableTitle>
<a-button type="primary" v-auth="actionAuth.add" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>