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

Merge pull request !135 from wsm/fix/fix_contact_list
This commit is contained in:
wsm
2026-08-04 06:46:33 +00:00
committed by Gitee
@@ -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>