Commit 79275726 authored by 皮倩雯's avatar 皮倩雯

fix: '表字段同步显示问题'

parent 9664daf3
Pipeline #66014 waiting for manual action with stages
......@@ -261,7 +261,9 @@ const AddModal = props => {
const obj = {
children: (
<span style={{ color: styleConfig(record) }}>
<Tag color={text === 1 ? 'success' : 'processing'}>{text === 1 ? '是' : '否'}</Tag>
<Tag color={text === '否' ? 'processing' : 'success'}>
{text === '否' ? '否' : '是'}
</Tag>
</span>
),
props: {},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment