Commit 4347c92a authored by XieZhiXiong's avatar XieZhiXiong

chore: 修改列宽度

parent c1c73f69
......@@ -2,7 +2,7 @@ import React, { useState, useEffect } from 'react';
import {
Card,
Button,
message,
Tooltip,
} from 'antd';
import { PublicApi } from '@/services/api';
import { VIP_RULE_TRANSACTION, VIP_RULE_LOGIN, VIP_RULE_COMMENT } from '@/constants/member';
......@@ -45,29 +45,32 @@ const MemberUpgradeRule: React.FC<[]> = () => {
title: 'ID',
dataIndex: 'id',
align: 'center',
width: '15%',
},
{
title: '升级规则',
dataIndex: 'ruleName',
align: 'center',
width: '15%',
},
{
title: '升级规则说明',
dataIndex: 'remark',
align: 'center',
ellipsis: true,
render: text => <span title={text}>{text}</span>,
render: text => <Tooltip title={text}>{text}</Tooltip>,
},
{
title: '适用会员等级类型',
dataIndex: 'levelTypeName',
align: 'center',
width: '15%',
},
{
title: '可获取的分值',
dataIndex: 'score',
align: 'center',
width: '30%',
width: '15%',
editable: true,
},
];
......
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