Commit 6a64cb06 authored by 王苓芝's avatar 王苓芝

添加超时标识

parent f150fa89
// import { Tag, Badge } from 'antd';
// import React from 'react';
import { Tag, Badge } from 'antd';
import React from 'react';
export const appealType = {
1: '已申诉',
......@@ -10,6 +10,12 @@ export const column = [
title: '订单ID',
dataIndex: 'orderId',
width: 200,
render: (orderId, r) => (
<div>
{r.auditTimeOut ? <Tag color="red">{orderId}</Tag> : orderId}
{<Badge count={r.reminderFlag ? '' : ''} size="small" />}
</div>
),
},
{
title: '收货人姓名',
......
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