wjx 1 ano atrás
pai
commit
e786180742

+ 2 - 2
src/components/QueryForm/index.tsx

@@ -1616,9 +1616,9 @@ const QueryForm: React.FC<Props> = (props) => {
                         <Select placeholder="条件" style={{ width: 70 }} allowClear>
                             <Select.Option value=">=">{`>=`}</Select.Option>
                             <Select.Option value="<=">{`<=`}</Select.Option>
-                            <Select.Option value="=">{`=`}</Select.Option>
+                            {/* <Select.Option value="=">{`=`}</Select.Option>
                             <Select.Option value=">">{`>`}</Select.Option>
-                            <Select.Option value="<">{`<`}</Select.Option>
+                            <Select.Option value="<">{`<`}</Select.Option> */}
                         </Select>
                     </Form.Item>
                     <Form.Item name={'rechargeAmountWithin24h'} noStyle>

+ 1 - 1
src/pages/gameDataStatistics/roleOperate/roleRechargeRanking/tableConfig.tsx

@@ -132,7 +132,7 @@ function columns12(
                 },
                 { title: '角色平均单价', dataIndex: 'avg_amount', label: '角色充值信息', align: 'center', width: 70, default: 13, sorter: true, render: (a: string) => <Statistic value={a || 0} /> },
                 { title: '角色累计充值次数', dataIndex: 'amount_count', label: '角色充值信息', align: 'center', width: 70, default: 14, sorter: true, render: (a: string) => <Statistic value={a || 0} /> },
-                { title: '24小时内单笔充值金额', dataIndex: 'max_amount', label: '角色充值信息', align: 'center', width: 80, sorter: true, render: (a: string) => <Statistic value={a || 0} /> },
+                { title: '24小时内单笔充值金额', dataIndex: 'max_amount', label: '角色充值信息', align: 'center', width: 80, render: (a: string) => <WidthEllipsis value={a?.toString()} /> },
                 { title: '24小时内累计充值总金额', dataIndex: 'role_total_amount', label: '角色充值信息', align: 'center', width: 85, sorter: true, render: (a: string) => <Statistic value={a || 0} /> },
                 { title: '角色最近充值时间', dataIndex: 'role_last_pay_time', label: '角色充值信息', align: 'center', width: 140, render: (a: string, b: any) => (<WidthEllipsis value={a} />) },
                 { title: '角色最近活跃时间', dataIndex: 'role_active_time', label: '角色充值信息', align: 'center', width: 140, render: (a: string, b: any) => (<WidthEllipsis value={a} />) },