Commit bab59ea8 authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改 columns

parent 3c667349
......@@ -2,7 +2,7 @@
* @Author: XieZhiXiong
* @Date: 2021-05-27 16:01:23
* @LastEditors: XieZhiXiong
* @LastEditTime: 2021-06-08 17:13:57
* @LastEditTime: 2021-06-17 09:59:49
* @Description: 会员管理流程规则配置
*/
import React, { useState, useRef } from 'react';
......@@ -89,6 +89,7 @@ const MemberFlowRule: React.FC<[]> = () => {
{
title: 'ID',
dataIndex: 'id',
align: 'center',
},
{
title: '流程规则名称',
......@@ -106,18 +107,22 @@ const MemberFlowRule: React.FC<[]> = () => {
{
title: '会员角色',
dataIndex: 'roleName',
align: 'center',
},
{
title: '角色类型',
dataIndex: 'roleTypeName',
align: 'center',
},
{
title: '会员类型',
dataIndex: 'memberTypeName',
align: 'center',
},
{
title: '业务类型',
dataIndex: 'businessTypeName',
align: 'center',
},
{
title: '操作时间',
......@@ -127,6 +132,7 @@ const MemberFlowRule: React.FC<[]> = () => {
title: '状态',
dataIndex: 'status',
filters: [],
align: 'center',
render: (_, record) => (
<StatusSwitch
fieldNames="status"
......
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