Skip to content

Commit 9911c9b

Browse files
committed
fix style
1 parent 99fc60a commit 9911c9b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/pages/lottery/ballList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ export default class BallList extends React.Component<IProps> {
8383
render: (text: number) => this.showMoney(text)
8484
}, {
8585
title: '开奖日期',
86-
width: '120px',
86+
width: '100px',
8787
dataIndex: 'drawDate',
8888
key: 'drawDate',
8989
sorter: true
9090
}, {
9191
title: '操作',
9292
dataIndex: '',
93-
width: '120px',
94-
render: (text: string, record: IBall, index: number) => <React.Fragment><Button size="small" type="primary" onClick={() => this.viewDetail(record)}>详情</Button><Button size="small" onClick={() => this.showDelete(record.id)}>删除</Button></React.Fragment>
93+
width: '80px',
94+
render: (text: string, record: IBall, index: number) => <React.Fragment><a onClick={() => this.viewDetail(record)}>详情</a>|<a onClick={() => this.showDelete(record.id)}>删除</a></React.Fragment>
9595
}]
9696

9797
viewDetail(data: IBall) {

0 commit comments

Comments
 (0)