mirror of https://github.com/openspug/spug
U web improve experience
parent
86ede36795
commit
76c2bcf922
|
@ -15,7 +15,8 @@ class ComTable extends React.Component {
|
||||||
columns = [{
|
columns = [{
|
||||||
title: '序号',
|
title: '序号',
|
||||||
key: 'series',
|
key: 'series',
|
||||||
render: (_, __, index) => index + 1
|
render: (_, __, index) => index + 1,
|
||||||
|
width: 80
|
||||||
}, {
|
}, {
|
||||||
title: '登录名',
|
title: '登录名',
|
||||||
dataIndex: 'username',
|
dataIndex: 'username',
|
||||||
|
|
|
@ -9,7 +9,7 @@ export default function () {
|
||||||
<Card>
|
<Card>
|
||||||
<SearchForm>
|
<SearchForm>
|
||||||
<SearchForm.Item span={8} title="账户名称">
|
<SearchForm.Item span={8} title="账户名称">
|
||||||
<Input onChange={e => store.f_name = e.target.value} placeholder="请输入"/>
|
<Input allowClear onChange={e => store.f_name = e.target.value} placeholder="请输入"/>
|
||||||
</SearchForm.Item>
|
</SearchForm.Item>
|
||||||
<SearchForm.Item span={8} title="账户状态">
|
<SearchForm.Item span={8} title="账户状态">
|
||||||
<Select allowClear onChange={v => store.f_status = v} placeholder="请选择">
|
<Select allowClear onChange={v => store.f_status = v} placeholder="请选择">
|
||||||
|
|
Loading…
Reference in New Issue