Commit bab59ea8 authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改 columns

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