fix(fixcontact): 未开始记录 bpm_status 为空时按未开始状态行着色
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user