初始化 antd-pro
This commit is contained in:
192
admin-web/src/pages/List/Applications.js
Normal file
192
admin-web/src/pages/List/Applications.js
Normal file
@@ -0,0 +1,192 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import numeral from 'numeral';
|
||||
import { connect } from 'dva';
|
||||
import { FormattedMessage } from 'umi/locale';
|
||||
import { Row, Col, Form, Card, Select, Icon, Avatar, List, Tooltip, Dropdown, Menu } from 'antd';
|
||||
import TagSelect from '@/components/TagSelect';
|
||||
import StandardFormRow from '@/components/StandardFormRow';
|
||||
|
||||
import { formatWan } from '@/utils/utils';
|
||||
|
||||
import styles from './Applications.less';
|
||||
|
||||
const { Option } = Select;
|
||||
const FormItem = Form.Item;
|
||||
|
||||
@connect(({ list, loading }) => ({
|
||||
list,
|
||||
loading: loading.models.list,
|
||||
}))
|
||||
@Form.create({
|
||||
onValuesChange({ dispatch }, changedValues, allValues) {
|
||||
// 表单项变化时请求数据
|
||||
// eslint-disable-next-line
|
||||
console.log(changedValues, allValues);
|
||||
// 模拟查询表单生效
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 8,
|
||||
},
|
||||
});
|
||||
},
|
||||
})
|
||||
class FilterCardList extends PureComponent {
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 8,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
list: { list },
|
||||
loading,
|
||||
form,
|
||||
} = this.props;
|
||||
const { getFieldDecorator } = form;
|
||||
|
||||
const CardInfo = ({ activeUser, newUser }) => (
|
||||
<div className={styles.cardInfo}>
|
||||
<div>
|
||||
<p>活跃用户</p>
|
||||
<p>{activeUser}</p>
|
||||
</div>
|
||||
<div>
|
||||
<p>新增用户</p>
|
||||
<p>{newUser}</p>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
const formItemLayout = {
|
||||
wrapperCol: {
|
||||
xs: { span: 24 },
|
||||
sm: { span: 16 },
|
||||
},
|
||||
};
|
||||
|
||||
const actionsTextMap = {
|
||||
expandText: <FormattedMessage id="component.tagSelect.expand" defaultMessage="Expand" />,
|
||||
collapseText: (
|
||||
<FormattedMessage id="component.tagSelect.collapse" defaultMessage="Collapse" />
|
||||
),
|
||||
selectAllText: <FormattedMessage id="component.tagSelect.all" defaultMessage="All" />,
|
||||
};
|
||||
|
||||
const itemMenu = (
|
||||
<Menu>
|
||||
<Menu.Item>
|
||||
<a target="_blank" rel="noopener noreferrer" href="https://www.alipay.com/">
|
||||
1st menu item
|
||||
</a>
|
||||
</Menu.Item>
|
||||
<Menu.Item>
|
||||
<a target="_blank" rel="noopener noreferrer" href="https://www.taobao.com/">
|
||||
2nd menu item
|
||||
</a>
|
||||
</Menu.Item>
|
||||
<Menu.Item>
|
||||
<a target="_blank" rel="noopener noreferrer" href="https://www.tmall.com/">
|
||||
3d menu item
|
||||
</a>
|
||||
</Menu.Item>
|
||||
</Menu>
|
||||
);
|
||||
|
||||
return (
|
||||
<div className={styles.filterCardList}>
|
||||
<Card bordered={false}>
|
||||
<Form layout="inline">
|
||||
<StandardFormRow title="所属类目" block style={{ paddingBottom: 11 }}>
|
||||
<FormItem>
|
||||
{getFieldDecorator('category')(
|
||||
<TagSelect expandable actionsText={actionsTextMap}>
|
||||
<TagSelect.Option value="cat1">类目一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat2">类目二</TagSelect.Option>
|
||||
<TagSelect.Option value="cat3">类目三</TagSelect.Option>
|
||||
<TagSelect.Option value="cat4">类目四</TagSelect.Option>
|
||||
<TagSelect.Option value="cat5">类目五</TagSelect.Option>
|
||||
<TagSelect.Option value="cat6">类目六</TagSelect.Option>
|
||||
<TagSelect.Option value="cat7">类目七</TagSelect.Option>
|
||||
<TagSelect.Option value="cat8">类目八</TagSelect.Option>
|
||||
<TagSelect.Option value="cat9">类目九</TagSelect.Option>
|
||||
<TagSelect.Option value="cat10">类目十</TagSelect.Option>
|
||||
<TagSelect.Option value="cat11">类目十一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat12">类目十二</TagSelect.Option>
|
||||
</TagSelect>
|
||||
)}
|
||||
</FormItem>
|
||||
</StandardFormRow>
|
||||
<StandardFormRow title="其它选项" grid last>
|
||||
<Row gutter={16}>
|
||||
<Col lg={8} md={10} sm={10} xs={24}>
|
||||
<FormItem {...formItemLayout} label="作者">
|
||||
{getFieldDecorator('author', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="lisa">王昭君</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col lg={8} md={10} sm={10} xs={24}>
|
||||
<FormItem {...formItemLayout} label="好评度">
|
||||
{getFieldDecorator('rate', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="good">优秀</Option>
|
||||
<Option value="normal">普通</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
</StandardFormRow>
|
||||
</Form>
|
||||
</Card>
|
||||
<List
|
||||
rowKey="id"
|
||||
style={{ marginTop: 24 }}
|
||||
grid={{ gutter: 24, xl: 4, lg: 3, md: 3, sm: 2, xs: 1 }}
|
||||
loading={loading}
|
||||
dataSource={list}
|
||||
renderItem={item => (
|
||||
<List.Item key={item.id}>
|
||||
<Card
|
||||
hoverable
|
||||
bodyStyle={{ paddingBottom: 20 }}
|
||||
actions={[
|
||||
<Tooltip title="下载">
|
||||
<Icon type="download" />
|
||||
</Tooltip>,
|
||||
<Tooltip title="编辑">
|
||||
<Icon type="edit" />
|
||||
</Tooltip>,
|
||||
<Tooltip title="分享">
|
||||
<Icon type="share-alt" />
|
||||
</Tooltip>,
|
||||
<Dropdown overlay={itemMenu}>
|
||||
<Icon type="ellipsis" />
|
||||
</Dropdown>,
|
||||
]}
|
||||
>
|
||||
<Card.Meta avatar={<Avatar size="small" src={item.avatar} />} title={item.title} />
|
||||
<div className={styles.cardItemContent}>
|
||||
<CardInfo
|
||||
activeUser={formatWan(item.activeUser)}
|
||||
newUser={numeral(item.newUser).format('0,0')}
|
||||
/>
|
||||
</div>
|
||||
</Card>
|
||||
</List.Item>
|
||||
)}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default FilterCardList;
|
||||
44
admin-web/src/pages/List/Applications.less
Normal file
44
admin-web/src/pages/List/Applications.less
Normal file
@@ -0,0 +1,44 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
@import '~@/utils/utils.less';
|
||||
|
||||
.filterCardList {
|
||||
margin-bottom: -24px;
|
||||
:global {
|
||||
.ant-card-meta-content {
|
||||
margin-top: 0;
|
||||
}
|
||||
// disabled white space
|
||||
.ant-card-meta-avatar {
|
||||
font-size: 0;
|
||||
}
|
||||
.ant-card-actions {
|
||||
background: #f7f9fa;
|
||||
}
|
||||
.ant-list .ant-list-item-content-single {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
.cardInfo {
|
||||
.clearfix();
|
||||
|
||||
margin-top: 16px;
|
||||
margin-left: 40px;
|
||||
& > div {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 50%;
|
||||
text-align: left;
|
||||
p {
|
||||
margin: 0;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
}
|
||||
p:first-child {
|
||||
margin-bottom: 4px;
|
||||
color: @text-color-secondary;
|
||||
font-size: 12px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
251
admin-web/src/pages/List/Articles.js
Normal file
251
admin-web/src/pages/List/Articles.js
Normal file
@@ -0,0 +1,251 @@
|
||||
import React, { Component, Fragment } from 'react';
|
||||
import { connect } from 'dva';
|
||||
import { Form, Card, Select, List, Tag, Icon, Row, Col, Button } from 'antd';
|
||||
import { FormattedMessage } from 'umi/locale';
|
||||
|
||||
import TagSelect from '@/components/TagSelect';
|
||||
import StandardFormRow from '@/components/StandardFormRow';
|
||||
import ArticleListContent from '@/components/ArticleListContent';
|
||||
import styles from './Articles.less';
|
||||
|
||||
const { Option } = Select;
|
||||
const FormItem = Form.Item;
|
||||
|
||||
const pageSize = 5;
|
||||
|
||||
@connect(({ list, loading }) => ({
|
||||
list,
|
||||
loading: loading.models.list,
|
||||
}))
|
||||
@Form.create({
|
||||
onValuesChange({ dispatch }, changedValues, allValues) {
|
||||
// 表单项变化时请求数据
|
||||
// eslint-disable-next-line
|
||||
console.log(changedValues, allValues);
|
||||
// 模拟查询表单生效
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 5,
|
||||
},
|
||||
});
|
||||
},
|
||||
})
|
||||
class SearchList extends Component {
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 5,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
setOwner = () => {
|
||||
const { form } = this.props;
|
||||
form.setFieldsValue({
|
||||
owner: ['wzj'],
|
||||
});
|
||||
};
|
||||
|
||||
fetchMore = () => {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/appendFetch',
|
||||
payload: {
|
||||
count: pageSize,
|
||||
},
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
const {
|
||||
form,
|
||||
list: { list },
|
||||
loading,
|
||||
} = this.props;
|
||||
const { getFieldDecorator } = form;
|
||||
|
||||
const owners = [
|
||||
{
|
||||
id: 'wzj',
|
||||
name: '我自己',
|
||||
},
|
||||
{
|
||||
id: 'wjh',
|
||||
name: '吴家豪',
|
||||
},
|
||||
{
|
||||
id: 'zxx',
|
||||
name: '周星星',
|
||||
},
|
||||
{
|
||||
id: 'zly',
|
||||
name: '赵丽颖',
|
||||
},
|
||||
{
|
||||
id: 'ym',
|
||||
name: '姚明',
|
||||
},
|
||||
];
|
||||
|
||||
const IconText = ({ type, text }) => (
|
||||
<span>
|
||||
<Icon type={type} style={{ marginRight: 8 }} />
|
||||
{text}
|
||||
</span>
|
||||
);
|
||||
|
||||
const formItemLayout = {
|
||||
wrapperCol: {
|
||||
xs: { span: 24 },
|
||||
sm: { span: 24 },
|
||||
md: { span: 12 },
|
||||
},
|
||||
};
|
||||
|
||||
const actionsTextMap = {
|
||||
expandText: <FormattedMessage id="component.tagSelect.expand" defaultMessage="Expand" />,
|
||||
collapseText: (
|
||||
<FormattedMessage id="component.tagSelect.collapse" defaultMessage="Collapse" />
|
||||
),
|
||||
selectAllText: <FormattedMessage id="component.tagSelect.all" defaultMessage="All" />,
|
||||
};
|
||||
|
||||
const loadMore =
|
||||
list.length > 0 ? (
|
||||
<div style={{ textAlign: 'center', marginTop: 16 }}>
|
||||
<Button onClick={this.fetchMore} style={{ paddingLeft: 48, paddingRight: 48 }}>
|
||||
{loading ? (
|
||||
<span>
|
||||
<Icon type="loading" /> 加载中...
|
||||
</span>
|
||||
) : (
|
||||
'加载更多'
|
||||
)}
|
||||
</Button>
|
||||
</div>
|
||||
) : null;
|
||||
|
||||
return (
|
||||
<Fragment>
|
||||
<Card bordered={false}>
|
||||
<Form layout="inline">
|
||||
<StandardFormRow title="所属类目" block style={{ paddingBottom: 11 }}>
|
||||
<FormItem>
|
||||
{getFieldDecorator('category')(
|
||||
<TagSelect expandable actionsText={actionsTextMap}>
|
||||
<TagSelect.Option value="cat1">类目一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat2">类目二</TagSelect.Option>
|
||||
<TagSelect.Option value="cat3">类目三</TagSelect.Option>
|
||||
<TagSelect.Option value="cat4">类目四</TagSelect.Option>
|
||||
<TagSelect.Option value="cat5">类目五</TagSelect.Option>
|
||||
<TagSelect.Option value="cat6">类目六</TagSelect.Option>
|
||||
<TagSelect.Option value="cat7">类目七</TagSelect.Option>
|
||||
<TagSelect.Option value="cat8">类目八</TagSelect.Option>
|
||||
<TagSelect.Option value="cat9">类目九</TagSelect.Option>
|
||||
<TagSelect.Option value="cat10">类目十</TagSelect.Option>
|
||||
<TagSelect.Option value="cat11">类目十一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat12">类目十二</TagSelect.Option>
|
||||
</TagSelect>
|
||||
)}
|
||||
</FormItem>
|
||||
</StandardFormRow>
|
||||
<StandardFormRow title="owner" grid>
|
||||
<Row>
|
||||
<Col>
|
||||
<FormItem {...formItemLayout}>
|
||||
{getFieldDecorator('owner', {
|
||||
initialValue: ['wjh', 'zxx'],
|
||||
})(
|
||||
<Select
|
||||
mode="multiple"
|
||||
style={{ maxWidth: 286, width: '100%' }}
|
||||
placeholder="选择 owner"
|
||||
>
|
||||
{owners.map(owner => (
|
||||
<Option key={owner.id} value={owner.id}>
|
||||
{owner.name}
|
||||
</Option>
|
||||
))}
|
||||
</Select>
|
||||
)}
|
||||
<a className={styles.selfTrigger} onClick={this.setOwner}>
|
||||
只看自己的
|
||||
</a>
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
</StandardFormRow>
|
||||
<StandardFormRow title="其它选项" grid last>
|
||||
<Row gutter={16}>
|
||||
<Col xl={8} lg={10} md={12} sm={24} xs={24}>
|
||||
<FormItem {...formItemLayout} label="活跃用户">
|
||||
{getFieldDecorator('user', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="lisa">李三</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col xl={8} lg={10} md={12} sm={24} xs={24}>
|
||||
<FormItem {...formItemLayout} label="好评度">
|
||||
{getFieldDecorator('rate', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="good">优秀</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
</StandardFormRow>
|
||||
</Form>
|
||||
</Card>
|
||||
<Card
|
||||
style={{ marginTop: 24 }}
|
||||
bordered={false}
|
||||
bodyStyle={{ padding: '8px 32px 32px 32px' }}
|
||||
>
|
||||
<List
|
||||
size="large"
|
||||
loading={list.length === 0 ? loading : false}
|
||||
rowKey="id"
|
||||
itemLayout="vertical"
|
||||
loadMore={loadMore}
|
||||
dataSource={list}
|
||||
renderItem={item => (
|
||||
<List.Item
|
||||
key={item.id}
|
||||
actions={[
|
||||
<IconText type="star-o" text={item.star} />,
|
||||
<IconText type="like-o" text={item.like} />,
|
||||
<IconText type="message" text={item.message} />,
|
||||
]}
|
||||
extra={<div className={styles.listItemExtra} />}
|
||||
>
|
||||
<List.Item.Meta
|
||||
title={
|
||||
<a className={styles.listItemMetaTitle} href={item.href}>
|
||||
{item.title}
|
||||
</a>
|
||||
}
|
||||
description={
|
||||
<span>
|
||||
<Tag>Ant Design</Tag>
|
||||
<Tag>设计语言</Tag>
|
||||
<Tag>蚂蚁金服</Tag>
|
||||
</span>
|
||||
}
|
||||
/>
|
||||
<ArticleListContent data={item} />
|
||||
</List.Item>
|
||||
)}
|
||||
/>
|
||||
</Card>
|
||||
</Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default SearchList;
|
||||
31
admin-web/src/pages/List/Articles.less
Normal file
31
admin-web/src/pages/List/Articles.less
Normal file
@@ -0,0 +1,31 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
|
||||
a.listItemMetaTitle {
|
||||
color: @heading-color;
|
||||
}
|
||||
.listItemExtra {
|
||||
width: 272px;
|
||||
height: 1px;
|
||||
}
|
||||
.selfTrigger {
|
||||
margin-left: 12px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-xs) {
|
||||
.selfTrigger {
|
||||
display: block;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: @screen-md) {
|
||||
.selfTrigger {
|
||||
display: block;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: @screen-lg) {
|
||||
.listItemExtra {
|
||||
width: 0;
|
||||
height: 1px;
|
||||
}
|
||||
}
|
||||
340
admin-web/src/pages/List/BasicList.js
Normal file
340
admin-web/src/pages/List/BasicList.js
Normal file
@@ -0,0 +1,340 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import { findDOMNode } from 'react-dom';
|
||||
import moment from 'moment';
|
||||
import { connect } from 'dva';
|
||||
import {
|
||||
List,
|
||||
Card,
|
||||
Row,
|
||||
Col,
|
||||
Radio,
|
||||
Input,
|
||||
Progress,
|
||||
Button,
|
||||
Icon,
|
||||
Dropdown,
|
||||
Menu,
|
||||
Avatar,
|
||||
Modal,
|
||||
Form,
|
||||
DatePicker,
|
||||
Select,
|
||||
} from 'antd';
|
||||
|
||||
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
||||
import Result from '@/components/Result';
|
||||
|
||||
import styles from './BasicList.less';
|
||||
|
||||
const FormItem = Form.Item;
|
||||
const RadioButton = Radio.Button;
|
||||
const RadioGroup = Radio.Group;
|
||||
const SelectOption = Select.Option;
|
||||
const { Search, TextArea } = Input;
|
||||
|
||||
@connect(({ list, loading }) => ({
|
||||
list,
|
||||
loading: loading.models.list,
|
||||
}))
|
||||
@Form.create()
|
||||
class BasicList extends PureComponent {
|
||||
state = { visible: false, done: false };
|
||||
|
||||
formLayout = {
|
||||
labelCol: { span: 7 },
|
||||
wrapperCol: { span: 13 },
|
||||
};
|
||||
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 5,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
showModal = () => {
|
||||
this.setState({
|
||||
visible: true,
|
||||
current: undefined,
|
||||
});
|
||||
};
|
||||
|
||||
showEditModal = item => {
|
||||
this.setState({
|
||||
visible: true,
|
||||
current: item,
|
||||
});
|
||||
};
|
||||
|
||||
handleDone = () => {
|
||||
setTimeout(() => this.addBtn.blur(), 0);
|
||||
this.setState({
|
||||
done: false,
|
||||
visible: false,
|
||||
});
|
||||
};
|
||||
|
||||
handleCancel = () => {
|
||||
setTimeout(() => this.addBtn.blur(), 0);
|
||||
this.setState({
|
||||
visible: false,
|
||||
});
|
||||
};
|
||||
|
||||
handleSubmit = e => {
|
||||
e.preventDefault();
|
||||
const { dispatch, form } = this.props;
|
||||
const { current } = this.state;
|
||||
const id = current ? current.id : '';
|
||||
|
||||
setTimeout(() => this.addBtn.blur(), 0);
|
||||
form.validateFields((err, fieldsValue) => {
|
||||
if (err) return;
|
||||
this.setState({
|
||||
done: true,
|
||||
});
|
||||
dispatch({
|
||||
type: 'list/submit',
|
||||
payload: { id, ...fieldsValue },
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
deleteItem = id => {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/submit',
|
||||
payload: { id },
|
||||
});
|
||||
};
|
||||
|
||||
render() {
|
||||
const {
|
||||
list: { list },
|
||||
loading,
|
||||
} = this.props;
|
||||
const {
|
||||
form: { getFieldDecorator },
|
||||
} = this.props;
|
||||
const { visible, done, current = {} } = this.state;
|
||||
|
||||
const editAndDelete = (key, currentItem) => {
|
||||
if (key === 'edit') this.showEditModal(currentItem);
|
||||
else if (key === 'delete') {
|
||||
Modal.confirm({
|
||||
title: '删除任务',
|
||||
content: '确定删除该任务吗?',
|
||||
okText: '确认',
|
||||
cancelText: '取消',
|
||||
onOk: () => this.deleteItem(currentItem.id),
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
const modalFooter = done
|
||||
? { footer: null, onCancel: this.handleDone }
|
||||
: { okText: '保存', onOk: this.handleSubmit, onCancel: this.handleCancel };
|
||||
|
||||
const Info = ({ title, value, bordered }) => (
|
||||
<div className={styles.headerInfo}>
|
||||
<span>{title}</span>
|
||||
<p>{value}</p>
|
||||
{bordered && <em />}
|
||||
</div>
|
||||
);
|
||||
|
||||
const extraContent = (
|
||||
<div className={styles.extraContent}>
|
||||
<RadioGroup defaultValue="all">
|
||||
<RadioButton value="all">全部</RadioButton>
|
||||
<RadioButton value="progress">进行中</RadioButton>
|
||||
<RadioButton value="waiting">等待中</RadioButton>
|
||||
</RadioGroup>
|
||||
<Search className={styles.extraContentSearch} placeholder="请输入" onSearch={() => ({})} />
|
||||
</div>
|
||||
);
|
||||
|
||||
const paginationProps = {
|
||||
showSizeChanger: true,
|
||||
showQuickJumper: true,
|
||||
pageSize: 5,
|
||||
total: 50,
|
||||
};
|
||||
|
||||
const ListContent = ({ data: { owner, createdAt, percent, status } }) => (
|
||||
<div className={styles.listContent}>
|
||||
<div className={styles.listContentItem}>
|
||||
<span>Owner</span>
|
||||
<p>{owner}</p>
|
||||
</div>
|
||||
<div className={styles.listContentItem}>
|
||||
<span>开始时间</span>
|
||||
<p>{moment(createdAt).format('YYYY-MM-DD HH:mm')}</p>
|
||||
</div>
|
||||
<div className={styles.listContentItem}>
|
||||
<Progress percent={percent} status={status} strokeWidth={6} style={{ width: 180 }} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
const MoreBtn = props => (
|
||||
<Dropdown
|
||||
overlay={
|
||||
<Menu onClick={({ key }) => editAndDelete(key, props.current)}>
|
||||
<Menu.Item key="edit">编辑</Menu.Item>
|
||||
<Menu.Item key="delete">删除</Menu.Item>
|
||||
</Menu>
|
||||
}
|
||||
>
|
||||
<a>
|
||||
更多 <Icon type="down" />
|
||||
</a>
|
||||
</Dropdown>
|
||||
);
|
||||
|
||||
const getModalContent = () => {
|
||||
if (done) {
|
||||
return (
|
||||
<Result
|
||||
type="success"
|
||||
title="操作成功"
|
||||
description="一系列的信息描述,很短同样也可以带标点。"
|
||||
actions={
|
||||
<Button type="primary" onClick={this.handleDone}>
|
||||
知道了
|
||||
</Button>
|
||||
}
|
||||
className={styles.formResult}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return (
|
||||
<Form onSubmit={this.handleSubmit}>
|
||||
<FormItem label="任务名称" {...this.formLayout}>
|
||||
{getFieldDecorator('title', {
|
||||
rules: [{ required: true, message: '请输入任务名称' }],
|
||||
initialValue: current.title,
|
||||
})(<Input placeholder="请输入" />)}
|
||||
</FormItem>
|
||||
<FormItem label="开始时间" {...this.formLayout}>
|
||||
{getFieldDecorator('createdAt', {
|
||||
rules: [{ required: true, message: '请选择开始时间' }],
|
||||
initialValue: current.createdAt ? moment(current.createdAt) : null,
|
||||
})(
|
||||
<DatePicker
|
||||
showTime
|
||||
placeholder="请选择"
|
||||
format="YYYY-MM-DD HH:mm:ss"
|
||||
style={{ width: '100%' }}
|
||||
/>
|
||||
)}
|
||||
</FormItem>
|
||||
<FormItem label="任务负责人" {...this.formLayout}>
|
||||
{getFieldDecorator('owner', {
|
||||
rules: [{ required: true, message: '请选择任务负责人' }],
|
||||
initialValue: current.owner,
|
||||
})(
|
||||
<Select placeholder="请选择">
|
||||
<SelectOption value="付晓晓">付晓晓</SelectOption>
|
||||
<SelectOption value="周毛毛">周毛毛</SelectOption>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
<FormItem {...this.formLayout} label="产品描述">
|
||||
{getFieldDecorator('subDescription', {
|
||||
rules: [{ message: '请输入至少五个字符的产品描述!', min: 5 }],
|
||||
initialValue: current.subDescription,
|
||||
})(<TextArea rows={4} placeholder="请输入至少五个字符" />)}
|
||||
</FormItem>
|
||||
</Form>
|
||||
);
|
||||
};
|
||||
return (
|
||||
<PageHeaderWrapper>
|
||||
<div className={styles.standardList}>
|
||||
<Card bordered={false}>
|
||||
<Row>
|
||||
<Col sm={8} xs={24}>
|
||||
<Info title="我的待办" value="8个任务" bordered />
|
||||
</Col>
|
||||
<Col sm={8} xs={24}>
|
||||
<Info title="本周任务平均处理时间" value="32分钟" bordered />
|
||||
</Col>
|
||||
<Col sm={8} xs={24}>
|
||||
<Info title="本周完成任务数" value="24个任务" />
|
||||
</Col>
|
||||
</Row>
|
||||
</Card>
|
||||
|
||||
<Card
|
||||
className={styles.listCard}
|
||||
bordered={false}
|
||||
title="标准列表"
|
||||
style={{ marginTop: 24 }}
|
||||
bodyStyle={{ padding: '0 32px 40px 32px' }}
|
||||
extra={extraContent}
|
||||
>
|
||||
<Button
|
||||
type="dashed"
|
||||
style={{ width: '100%', marginBottom: 8 }}
|
||||
icon="plus"
|
||||
onClick={this.showModal}
|
||||
ref={component => {
|
||||
/* eslint-disable */
|
||||
this.addBtn = findDOMNode(component);
|
||||
/* eslint-enable */
|
||||
}}
|
||||
>
|
||||
添加
|
||||
</Button>
|
||||
<List
|
||||
size="large"
|
||||
rowKey="id"
|
||||
loading={loading}
|
||||
pagination={paginationProps}
|
||||
dataSource={list}
|
||||
renderItem={item => (
|
||||
<List.Item
|
||||
actions={[
|
||||
<a
|
||||
onClick={e => {
|
||||
e.preventDefault();
|
||||
this.showEditModal(item);
|
||||
}}
|
||||
>
|
||||
编辑
|
||||
</a>,
|
||||
<MoreBtn current={item} />,
|
||||
]}
|
||||
>
|
||||
<List.Item.Meta
|
||||
avatar={<Avatar src={item.logo} shape="square" size="large" />}
|
||||
title={<a href={item.href}>{item.title}</a>}
|
||||
description={item.subDescription}
|
||||
/>
|
||||
<ListContent data={item} />
|
||||
</List.Item>
|
||||
)}
|
||||
/>
|
||||
</Card>
|
||||
</div>
|
||||
<Modal
|
||||
title={done ? null : `任务${current.id ? '编辑' : '添加'}`}
|
||||
className={styles.standardListForm}
|
||||
width={640}
|
||||
bodyStyle={done ? { padding: '72px 0' } : { padding: '28px 0 0' }}
|
||||
destroyOnClose
|
||||
visible={visible}
|
||||
{...modalFooter}
|
||||
>
|
||||
{getModalContent()}
|
||||
</Modal>
|
||||
</PageHeaderWrapper>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default BasicList;
|
||||
195
admin-web/src/pages/List/BasicList.less
Normal file
195
admin-web/src/pages/List/BasicList.less
Normal file
@@ -0,0 +1,195 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
@import '~@/utils/utils.less';
|
||||
|
||||
.standardList {
|
||||
:global {
|
||||
.ant-card-head {
|
||||
border-bottom: none;
|
||||
}
|
||||
.ant-card-head-title {
|
||||
padding: 24px 0;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-card-extra {
|
||||
padding: 24px 0;
|
||||
}
|
||||
.ant-list-pagination {
|
||||
margin-top: 24px;
|
||||
text-align: right;
|
||||
}
|
||||
.ant-avatar-lg {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
line-height: 48px;
|
||||
}
|
||||
}
|
||||
.headerInfo {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
& > span {
|
||||
display: inline-block;
|
||||
margin-bottom: 4px;
|
||||
color: @text-color-secondary;
|
||||
font-size: @font-size-base;
|
||||
line-height: 22px;
|
||||
}
|
||||
& > p {
|
||||
margin: 0;
|
||||
color: @heading-color;
|
||||
font-size: 24px;
|
||||
line-height: 32px;
|
||||
}
|
||||
& > em {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
width: 1px;
|
||||
height: 56px;
|
||||
background-color: @border-color-split;
|
||||
}
|
||||
}
|
||||
.listContent {
|
||||
font-size: 0;
|
||||
.listContentItem {
|
||||
display: inline-block;
|
||||
margin-left: 40px;
|
||||
color: @text-color-secondary;
|
||||
font-size: @font-size-base;
|
||||
vertical-align: middle;
|
||||
> span {
|
||||
line-height: 20px;
|
||||
}
|
||||
> p {
|
||||
margin-top: 4px;
|
||||
margin-bottom: 0;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.extraContentSearch {
|
||||
width: 272px;
|
||||
margin-left: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-xs) {
|
||||
.standardList {
|
||||
:global {
|
||||
.ant-list-item-content {
|
||||
display: block;
|
||||
flex: none;
|
||||
width: 100%;
|
||||
}
|
||||
.ant-list-item-action {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
.listContent {
|
||||
margin-left: 0;
|
||||
& > div {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
.listCard {
|
||||
:global {
|
||||
.ant-card-head-title {
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-sm) {
|
||||
.standardList {
|
||||
.extraContentSearch {
|
||||
width: 100%;
|
||||
margin-left: 0;
|
||||
}
|
||||
.headerInfo {
|
||||
margin-bottom: 16px;
|
||||
& > em {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-md) {
|
||||
.standardList {
|
||||
.listContent {
|
||||
& > div {
|
||||
display: block;
|
||||
}
|
||||
& > div:last-child {
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.listCard {
|
||||
:global {
|
||||
.ant-radio-group {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-lg) and (min-width: @screen-md) {
|
||||
.standardList {
|
||||
.listContent {
|
||||
& > div {
|
||||
display: block;
|
||||
}
|
||||
& > div:last-child {
|
||||
top: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-xl) {
|
||||
.standardList {
|
||||
.listContent {
|
||||
& > div {
|
||||
margin-left: 24px;
|
||||
}
|
||||
& > div:last-child {
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1400px) {
|
||||
.standardList {
|
||||
.listContent {
|
||||
text-align: right;
|
||||
& > div:last-child {
|
||||
top: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.standardListForm {
|
||||
:global {
|
||||
.ant-form-item {
|
||||
margin-bottom: 12px;
|
||||
&:last-child {
|
||||
margin-bottom: 32px;
|
||||
padding-top: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.formResult {
|
||||
width: 100%;
|
||||
[class^='title'] {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
}
|
||||
101
admin-web/src/pages/List/CardList.js
Normal file
101
admin-web/src/pages/List/CardList.js
Normal file
@@ -0,0 +1,101 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import { connect } from 'dva';
|
||||
import { Card, Button, Icon, List } from 'antd';
|
||||
|
||||
import Ellipsis from '@/components/Ellipsis';
|
||||
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
||||
|
||||
import styles from './CardList.less';
|
||||
|
||||
@connect(({ list, loading }) => ({
|
||||
list,
|
||||
loading: loading.models.list,
|
||||
}))
|
||||
class CardList extends PureComponent {
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 8,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
list: { list },
|
||||
loading,
|
||||
} = this.props;
|
||||
|
||||
const content = (
|
||||
<div className={styles.pageHeaderContent}>
|
||||
<p>
|
||||
段落示意:蚂蚁金服务设计平台 ant.design,用最小的工作量,无缝接入蚂蚁金服生态,
|
||||
提供跨越设计与开发的体验解决方案。
|
||||
</p>
|
||||
<div className={styles.contentLink}>
|
||||
<a>
|
||||
<img alt="" src="https://gw.alipayobjects.com/zos/rmsportal/MjEImQtenlyueSmVEfUD.svg" />{' '}
|
||||
快速开始
|
||||
</a>
|
||||
<a>
|
||||
<img alt="" src="https://gw.alipayobjects.com/zos/rmsportal/NbuDUAuBlIApFuDvWiND.svg" />{' '}
|
||||
产品简介
|
||||
</a>
|
||||
<a>
|
||||
<img alt="" src="https://gw.alipayobjects.com/zos/rmsportal/ohOEPSYdDTNnyMbGuyLb.svg" />{' '}
|
||||
产品文档
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
const extraContent = (
|
||||
<div className={styles.extraImg}>
|
||||
<img
|
||||
alt="这是一个标题"
|
||||
src="https://gw.alipayobjects.com/zos/rmsportal/RzwpdLnhmvDJToTdfDPe.png"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
||||
return (
|
||||
<PageHeaderWrapper title="卡片列表" content={content} extraContent={extraContent}>
|
||||
<div className={styles.cardList}>
|
||||
<List
|
||||
rowKey="id"
|
||||
loading={loading}
|
||||
grid={{ gutter: 24, lg: 3, md: 2, sm: 1, xs: 1 }}
|
||||
dataSource={['', ...list]}
|
||||
renderItem={item =>
|
||||
item ? (
|
||||
<List.Item key={item.id}>
|
||||
<Card hoverable className={styles.card} actions={[<a>操作一</a>, <a>操作二</a>]}>
|
||||
<Card.Meta
|
||||
avatar={<img alt="" className={styles.cardAvatar} src={item.avatar} />}
|
||||
title={<a>{item.title}</a>}
|
||||
description={
|
||||
<Ellipsis className={styles.item} lines={3}>
|
||||
{item.description}
|
||||
</Ellipsis>
|
||||
}
|
||||
/>
|
||||
</Card>
|
||||
</List.Item>
|
||||
) : (
|
||||
<List.Item>
|
||||
<Button type="dashed" className={styles.newButton}>
|
||||
<Icon type="plus" /> 新建产品
|
||||
</Button>
|
||||
</List.Item>
|
||||
)
|
||||
}
|
||||
/>
|
||||
</div>
|
||||
</PageHeaderWrapper>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default CardList;
|
||||
113
admin-web/src/pages/List/CardList.less
Normal file
113
admin-web/src/pages/List/CardList.less
Normal file
@@ -0,0 +1,113 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
@import '~@/utils/utils.less';
|
||||
|
||||
.cardList {
|
||||
margin-bottom: -24px;
|
||||
|
||||
.card {
|
||||
:global {
|
||||
.ant-card-meta-title {
|
||||
margin-bottom: 12px;
|
||||
& > a {
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
color: @heading-color;
|
||||
}
|
||||
}
|
||||
.ant-card-actions {
|
||||
background: #f7f9fa;
|
||||
}
|
||||
.ant-card-body:hover {
|
||||
.ant-card-meta-title > a {
|
||||
color: @primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.item {
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
:global {
|
||||
.ant-list .ant-list-item-content-single {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.extraImg {
|
||||
width: 195px;
|
||||
margin-top: -60px;
|
||||
text-align: center;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.newButton {
|
||||
width: 100%;
|
||||
height: 188px;
|
||||
color: @text-color-secondary;
|
||||
background-color: #fff;
|
||||
border-color: @border-color-base;
|
||||
border-radius: @border-radius-sm;
|
||||
}
|
||||
|
||||
.cardAvatar {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 48px;
|
||||
}
|
||||
|
||||
.cardDescription {
|
||||
.textOverflowMulti();
|
||||
}
|
||||
|
||||
.pageHeaderContent {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.contentLink {
|
||||
margin-top: 16px;
|
||||
a {
|
||||
margin-right: 32px;
|
||||
img {
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
img {
|
||||
margin-right: 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-lg) {
|
||||
.contentLink {
|
||||
a {
|
||||
margin-right: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: @screen-md) {
|
||||
.extraImg {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-sm) {
|
||||
.pageHeaderContent {
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
.contentLink {
|
||||
position: absolute;
|
||||
bottom: -4px;
|
||||
left: 0;
|
||||
width: 1000px;
|
||||
a {
|
||||
margin-right: 16px;
|
||||
}
|
||||
img {
|
||||
margin-right: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
80
admin-web/src/pages/List/List.js
Normal file
80
admin-web/src/pages/List/List.js
Normal file
@@ -0,0 +1,80 @@
|
||||
import React, { Component } from 'react';
|
||||
import router from 'umi/router';
|
||||
import { connect } from 'dva';
|
||||
import { Input } from 'antd';
|
||||
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
||||
|
||||
@connect()
|
||||
class SearchList extends Component {
|
||||
handleTabChange = key => {
|
||||
const { match } = this.props;
|
||||
switch (key) {
|
||||
case 'articles':
|
||||
router.push(`${match.url}/articles`);
|
||||
break;
|
||||
case 'applications':
|
||||
router.push(`${match.url}/applications`);
|
||||
break;
|
||||
case 'projects':
|
||||
router.push(`${match.url}/projects`);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
handleFormSubmit = value => {
|
||||
// eslint-disable-next-line
|
||||
console.log(value);
|
||||
};
|
||||
|
||||
render() {
|
||||
const tabList = [
|
||||
{
|
||||
key: 'articles',
|
||||
tab: '文章',
|
||||
},
|
||||
{
|
||||
key: 'projects',
|
||||
tab: '项目',
|
||||
},
|
||||
{
|
||||
key: 'applications',
|
||||
tab: '应用',
|
||||
},
|
||||
];
|
||||
|
||||
const mainSearch = (
|
||||
<div style={{ textAlign: 'center' }}>
|
||||
<Input.Search
|
||||
placeholder="请输入"
|
||||
enterButton="搜索"
|
||||
size="large"
|
||||
onSearch={this.handleFormSubmit}
|
||||
style={{ width: 522 }}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
|
||||
const { match, children, location } = this.props;
|
||||
|
||||
return (
|
||||
<PageHeaderWrapper
|
||||
title="搜索列表"
|
||||
content={mainSearch}
|
||||
tabList={tabList}
|
||||
tabActiveKey={location.pathname.replace(`${match.path}/`, '')}
|
||||
onTabChange={this.handleTabChange}
|
||||
>
|
||||
{children}
|
||||
{/* <Switch>
|
||||
{routes.map(item => (
|
||||
<Route key={item.key} path={item.path} component={item.component} exact={item.exact} />
|
||||
))}
|
||||
</Switch> */}
|
||||
</PageHeaderWrapper>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default SearchList;
|
||||
163
admin-web/src/pages/List/Projects.js
Normal file
163
admin-web/src/pages/List/Projects.js
Normal file
@@ -0,0 +1,163 @@
|
||||
import React, { PureComponent } from 'react';
|
||||
import moment from 'moment';
|
||||
import { connect } from 'dva';
|
||||
import { Row, Col, Form, Card, Select, List } from 'antd';
|
||||
import { FormattedMessage } from 'umi/locale';
|
||||
|
||||
import TagSelect from '@/components/TagSelect';
|
||||
import AvatarList from '@/components/AvatarList';
|
||||
import Ellipsis from '@/components/Ellipsis';
|
||||
import StandardFormRow from '@/components/StandardFormRow';
|
||||
|
||||
import styles from './Projects.less';
|
||||
|
||||
const { Option } = Select;
|
||||
const FormItem = Form.Item;
|
||||
|
||||
/* eslint react/no-array-index-key: 0 */
|
||||
|
||||
@connect(({ list, loading }) => ({
|
||||
list,
|
||||
loading: loading.models.list,
|
||||
}))
|
||||
@Form.create({
|
||||
onValuesChange({ dispatch }, changedValues, allValues) {
|
||||
// 表单项变化时请求数据
|
||||
// eslint-disable-next-line
|
||||
console.log(changedValues, allValues);
|
||||
// 模拟查询表单生效
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 8,
|
||||
},
|
||||
});
|
||||
},
|
||||
})
|
||||
class CoverCardList extends PureComponent {
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'list/fetch',
|
||||
payload: {
|
||||
count: 8,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
list: { list = [] },
|
||||
loading,
|
||||
form,
|
||||
} = this.props;
|
||||
const { getFieldDecorator } = form;
|
||||
|
||||
const cardList = list ? (
|
||||
<List
|
||||
rowKey="id"
|
||||
loading={loading}
|
||||
grid={{ gutter: 24, xl: 4, lg: 3, md: 3, sm: 2, xs: 1 }}
|
||||
dataSource={list}
|
||||
renderItem={item => (
|
||||
<List.Item>
|
||||
<Card
|
||||
className={styles.card}
|
||||
hoverable
|
||||
cover={<img alt={item.title} src={item.cover} />}
|
||||
>
|
||||
<Card.Meta
|
||||
title={<a>{item.title}</a>}
|
||||
description={<Ellipsis lines={2}>{item.subDescription}</Ellipsis>}
|
||||
/>
|
||||
<div className={styles.cardItemContent}>
|
||||
<span>{moment(item.updatedAt).fromNow()}</span>
|
||||
<div className={styles.avatarList}>
|
||||
<AvatarList size="mini">
|
||||
{item.members.map((member, i) => (
|
||||
<AvatarList.Item
|
||||
key={`${item.id}-avatar-${i}`}
|
||||
src={member.avatar}
|
||||
tips={member.name}
|
||||
/>
|
||||
))}
|
||||
</AvatarList>
|
||||
</div>
|
||||
</div>
|
||||
</Card>
|
||||
</List.Item>
|
||||
)}
|
||||
/>
|
||||
) : null;
|
||||
|
||||
const formItemLayout = {
|
||||
wrapperCol: {
|
||||
xs: { span: 24 },
|
||||
sm: { span: 16 },
|
||||
},
|
||||
};
|
||||
|
||||
const actionsTextMap = {
|
||||
expandText: <FormattedMessage id="component.tagSelect.expand" defaultMessage="Expand" />,
|
||||
collapseText: (
|
||||
<FormattedMessage id="component.tagSelect.collapse" defaultMessage="Collapse" />
|
||||
),
|
||||
selectAllText: <FormattedMessage id="component.tagSelect.all" defaultMessage="All" />,
|
||||
};
|
||||
|
||||
return (
|
||||
<div className={styles.coverCardList}>
|
||||
<Card bordered={false}>
|
||||
<Form layout="inline">
|
||||
<StandardFormRow title="所属类目" block style={{ paddingBottom: 11 }}>
|
||||
<FormItem>
|
||||
{getFieldDecorator('category')(
|
||||
<TagSelect expandable actionsText={actionsTextMap}>
|
||||
<TagSelect.Option value="cat1">类目一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat2">类目二</TagSelect.Option>
|
||||
<TagSelect.Option value="cat3">类目三</TagSelect.Option>
|
||||
<TagSelect.Option value="cat4">类目四</TagSelect.Option>
|
||||
<TagSelect.Option value="cat5">类目五</TagSelect.Option>
|
||||
<TagSelect.Option value="cat6">类目六</TagSelect.Option>
|
||||
<TagSelect.Option value="cat7">类目七</TagSelect.Option>
|
||||
<TagSelect.Option value="cat8">类目八</TagSelect.Option>
|
||||
<TagSelect.Option value="cat9">类目九</TagSelect.Option>
|
||||
<TagSelect.Option value="cat10">类目十</TagSelect.Option>
|
||||
<TagSelect.Option value="cat11">类目十一</TagSelect.Option>
|
||||
<TagSelect.Option value="cat12">类目十二</TagSelect.Option>
|
||||
</TagSelect>
|
||||
)}
|
||||
</FormItem>
|
||||
</StandardFormRow>
|
||||
<StandardFormRow title="其它选项" grid last>
|
||||
<Row gutter={16}>
|
||||
<Col lg={8} md={10} sm={10} xs={24}>
|
||||
<FormItem {...formItemLayout} label="作者">
|
||||
{getFieldDecorator('author', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="lisa">王昭君</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col lg={8} md={10} sm={10} xs={24}>
|
||||
<FormItem {...formItemLayout} label="好评度">
|
||||
{getFieldDecorator('rate', {})(
|
||||
<Select placeholder="不限" style={{ maxWidth: 200, width: '100%' }}>
|
||||
<Option value="good">优秀</Option>
|
||||
<Option value="normal">普通</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
</StandardFormRow>
|
||||
</Form>
|
||||
</Card>
|
||||
<div className={styles.cardList}>{cardList}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default CoverCardList;
|
||||
57
admin-web/src/pages/List/Projects.less
Normal file
57
admin-web/src/pages/List/Projects.less
Normal file
@@ -0,0 +1,57 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
@import '~@/utils/utils.less';
|
||||
|
||||
.coverCardList {
|
||||
margin-bottom: -24px;
|
||||
|
||||
.card {
|
||||
:global {
|
||||
.ant-card-meta-title {
|
||||
margin-bottom: 4px;
|
||||
& > a {
|
||||
display: inline-block;
|
||||
max-width: 100%;
|
||||
color: @heading-color;
|
||||
}
|
||||
}
|
||||
.ant-card-meta-description {
|
||||
height: 44px;
|
||||
overflow: hidden;
|
||||
line-height: 22px;
|
||||
}
|
||||
}
|
||||
|
||||
&:hover {
|
||||
:global {
|
||||
.ant-card-meta-title > a {
|
||||
color: @primary-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cardItemContent {
|
||||
display: flex;
|
||||
height: 20px;
|
||||
margin-top: 16px;
|
||||
margin-bottom: -4px;
|
||||
line-height: 20px;
|
||||
& > span {
|
||||
flex: 1;
|
||||
color: @text-color-secondary;
|
||||
font-size: 12px;
|
||||
}
|
||||
.avatarList {
|
||||
flex: 0 1 auto;
|
||||
}
|
||||
}
|
||||
.cardList {
|
||||
margin-top: 24px;
|
||||
}
|
||||
|
||||
:global {
|
||||
.ant-list .ant-list-item-content-single {
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
691
admin-web/src/pages/List/TableList.js
Normal file
691
admin-web/src/pages/List/TableList.js
Normal file
@@ -0,0 +1,691 @@
|
||||
import React, { PureComponent, Fragment } from 'react';
|
||||
import { connect } from 'dva';
|
||||
import moment from 'moment';
|
||||
import router from 'umi/router';
|
||||
import {
|
||||
Row,
|
||||
Col,
|
||||
Card,
|
||||
Form,
|
||||
Input,
|
||||
Select,
|
||||
Icon,
|
||||
Button,
|
||||
Dropdown,
|
||||
Menu,
|
||||
InputNumber,
|
||||
DatePicker,
|
||||
Modal,
|
||||
message,
|
||||
Badge,
|
||||
Divider,
|
||||
Steps,
|
||||
Radio,
|
||||
} from 'antd';
|
||||
import StandardTable from '@/components/StandardTable';
|
||||
import PageHeaderWrapper from '@/components/PageHeaderWrapper';
|
||||
|
||||
import styles from './TableList.less';
|
||||
|
||||
const FormItem = Form.Item;
|
||||
const { Step } = Steps;
|
||||
const { TextArea } = Input;
|
||||
const { Option } = Select;
|
||||
const RadioGroup = Radio.Group;
|
||||
const getValue = obj =>
|
||||
Object.keys(obj)
|
||||
.map(key => obj[key])
|
||||
.join(',');
|
||||
const statusMap = ['default', 'processing', 'success', 'error'];
|
||||
const status = ['关闭', '运行中', '已上线', '异常'];
|
||||
|
||||
const CreateForm = Form.create()(props => {
|
||||
const { modalVisible, form, handleAdd, handleModalVisible } = props;
|
||||
const okHandle = () => {
|
||||
form.validateFields((err, fieldsValue) => {
|
||||
if (err) return;
|
||||
form.resetFields();
|
||||
handleAdd(fieldsValue);
|
||||
});
|
||||
};
|
||||
return (
|
||||
<Modal
|
||||
destroyOnClose
|
||||
title="新建规则"
|
||||
visible={modalVisible}
|
||||
onOk={okHandle}
|
||||
onCancel={() => handleModalVisible()}
|
||||
>
|
||||
<FormItem labelCol={{ span: 5 }} wrapperCol={{ span: 15 }} label="描述">
|
||||
{form.getFieldDecorator('desc', {
|
||||
rules: [{ required: true, message: '请输入至少五个字符的规则描述!', min: 5 }],
|
||||
})(<Input placeholder="请输入" />)}
|
||||
</FormItem>
|
||||
</Modal>
|
||||
);
|
||||
});
|
||||
|
||||
@Form.create()
|
||||
class UpdateForm extends PureComponent {
|
||||
static defaultProps = {
|
||||
handleUpdate: () => {},
|
||||
handleUpdateModalVisible: () => {},
|
||||
values: {},
|
||||
};
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
formVals: {
|
||||
name: props.values.name,
|
||||
desc: props.values.desc,
|
||||
key: props.values.key,
|
||||
target: '0',
|
||||
template: '0',
|
||||
type: '1',
|
||||
time: '',
|
||||
frequency: 'month',
|
||||
},
|
||||
currentStep: 0,
|
||||
};
|
||||
|
||||
this.formLayout = {
|
||||
labelCol: { span: 7 },
|
||||
wrapperCol: { span: 13 },
|
||||
};
|
||||
}
|
||||
|
||||
handleNext = currentStep => {
|
||||
const { form, handleUpdate } = this.props;
|
||||
const { formVals: oldValue } = this.state;
|
||||
form.validateFields((err, fieldsValue) => {
|
||||
if (err) return;
|
||||
const formVals = { ...oldValue, ...fieldsValue };
|
||||
this.setState(
|
||||
{
|
||||
formVals,
|
||||
},
|
||||
() => {
|
||||
if (currentStep < 2) {
|
||||
this.forward();
|
||||
} else {
|
||||
handleUpdate(formVals);
|
||||
}
|
||||
}
|
||||
);
|
||||
});
|
||||
};
|
||||
|
||||
backward = () => {
|
||||
const { currentStep } = this.state;
|
||||
this.setState({
|
||||
currentStep: currentStep - 1,
|
||||
});
|
||||
};
|
||||
|
||||
forward = () => {
|
||||
const { currentStep } = this.state;
|
||||
this.setState({
|
||||
currentStep: currentStep + 1,
|
||||
});
|
||||
};
|
||||
|
||||
renderContent = (currentStep, formVals) => {
|
||||
const { form } = this.props;
|
||||
if (currentStep === 1) {
|
||||
return [
|
||||
<FormItem key="target" {...this.formLayout} label="监控对象">
|
||||
{form.getFieldDecorator('target', {
|
||||
initialValue: formVals.target,
|
||||
})(
|
||||
<Select style={{ width: '100%' }}>
|
||||
<Option value="0">表一</Option>
|
||||
<Option value="1">表二</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>,
|
||||
<FormItem key="template" {...this.formLayout} label="规则模板">
|
||||
{form.getFieldDecorator('template', {
|
||||
initialValue: formVals.template,
|
||||
})(
|
||||
<Select style={{ width: '100%' }}>
|
||||
<Option value="0">规则模板一</Option>
|
||||
<Option value="1">规则模板二</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>,
|
||||
<FormItem key="type" {...this.formLayout} label="规则类型">
|
||||
{form.getFieldDecorator('type', {
|
||||
initialValue: formVals.type,
|
||||
})(
|
||||
<RadioGroup>
|
||||
<Radio value="0">强</Radio>
|
||||
<Radio value="1">弱</Radio>
|
||||
</RadioGroup>
|
||||
)}
|
||||
</FormItem>,
|
||||
];
|
||||
}
|
||||
if (currentStep === 2) {
|
||||
return [
|
||||
<FormItem key="time" {...this.formLayout} label="开始时间">
|
||||
{form.getFieldDecorator('time', {
|
||||
rules: [{ required: true, message: '请选择开始时间!' }],
|
||||
})(
|
||||
<DatePicker
|
||||
style={{ width: '100%' }}
|
||||
showTime
|
||||
format="YYYY-MM-DD HH:mm:ss"
|
||||
placeholder="选择开始时间"
|
||||
/>
|
||||
)}
|
||||
</FormItem>,
|
||||
<FormItem key="frequency" {...this.formLayout} label="调度周期">
|
||||
{form.getFieldDecorator('frequency', {
|
||||
initialValue: formVals.frequency,
|
||||
})(
|
||||
<Select style={{ width: '100%' }}>
|
||||
<Option value="month">月</Option>
|
||||
<Option value="week">周</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>,
|
||||
];
|
||||
}
|
||||
return [
|
||||
<FormItem key="name" {...this.formLayout} label="规则名称">
|
||||
{form.getFieldDecorator('name', {
|
||||
rules: [{ required: true, message: '请输入规则名称!' }],
|
||||
initialValue: formVals.name,
|
||||
})(<Input placeholder="请输入" />)}
|
||||
</FormItem>,
|
||||
<FormItem key="desc" {...this.formLayout} label="规则描述">
|
||||
{form.getFieldDecorator('desc', {
|
||||
rules: [{ required: true, message: '请输入至少五个字符的规则描述!', min: 5 }],
|
||||
initialValue: formVals.desc,
|
||||
})(<TextArea rows={4} placeholder="请输入至少五个字符" />)}
|
||||
</FormItem>,
|
||||
];
|
||||
};
|
||||
|
||||
renderFooter = currentStep => {
|
||||
const { handleUpdateModalVisible, values } = this.props;
|
||||
if (currentStep === 1) {
|
||||
return [
|
||||
<Button key="back" style={{ float: 'left' }} onClick={this.backward}>
|
||||
上一步
|
||||
</Button>,
|
||||
<Button key="cancel" onClick={() => handleUpdateModalVisible(false, values)}>
|
||||
取消
|
||||
</Button>,
|
||||
<Button key="forward" type="primary" onClick={() => this.handleNext(currentStep)}>
|
||||
下一步
|
||||
</Button>,
|
||||
];
|
||||
}
|
||||
if (currentStep === 2) {
|
||||
return [
|
||||
<Button key="back" style={{ float: 'left' }} onClick={this.backward}>
|
||||
上一步
|
||||
</Button>,
|
||||
<Button key="cancel" onClick={() => handleUpdateModalVisible(false, values)}>
|
||||
取消
|
||||
</Button>,
|
||||
<Button key="submit" type="primary" onClick={() => this.handleNext(currentStep)}>
|
||||
完成
|
||||
</Button>,
|
||||
];
|
||||
}
|
||||
return [
|
||||
<Button key="cancel" onClick={() => handleUpdateModalVisible(false, values)}>
|
||||
取消
|
||||
</Button>,
|
||||
<Button key="forward" type="primary" onClick={() => this.handleNext(currentStep)}>
|
||||
下一步
|
||||
</Button>,
|
||||
];
|
||||
};
|
||||
|
||||
render() {
|
||||
const { updateModalVisible, handleUpdateModalVisible, values } = this.props;
|
||||
const { currentStep, formVals } = this.state;
|
||||
|
||||
return (
|
||||
<Modal
|
||||
width={640}
|
||||
bodyStyle={{ padding: '32px 40px 48px' }}
|
||||
destroyOnClose
|
||||
title="规则配置"
|
||||
visible={updateModalVisible}
|
||||
footer={this.renderFooter(currentStep)}
|
||||
onCancel={() => handleUpdateModalVisible(false, values)}
|
||||
afterClose={() => handleUpdateModalVisible()}
|
||||
>
|
||||
<Steps style={{ marginBottom: 28 }} size="small" current={currentStep}>
|
||||
<Step title="基本信息" />
|
||||
<Step title="配置规则属性" />
|
||||
<Step title="设定调度周期" />
|
||||
</Steps>
|
||||
{this.renderContent(currentStep, formVals)}
|
||||
</Modal>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/* eslint react/no-multi-comp:0 */
|
||||
@connect(({ rule, loading }) => ({
|
||||
rule,
|
||||
loading: loading.models.rule,
|
||||
}))
|
||||
@Form.create()
|
||||
class TableList extends PureComponent {
|
||||
state = {
|
||||
modalVisible: false,
|
||||
updateModalVisible: false,
|
||||
expandForm: false,
|
||||
selectedRows: [],
|
||||
formValues: {},
|
||||
stepFormValues: {},
|
||||
};
|
||||
|
||||
columns = [
|
||||
{
|
||||
title: '规则名称',
|
||||
dataIndex: 'name',
|
||||
render: text => <a onClick={() => this.previewItem(text)}>{text}</a>,
|
||||
},
|
||||
{
|
||||
title: '描述',
|
||||
dataIndex: 'desc',
|
||||
},
|
||||
{
|
||||
title: '服务调用次数',
|
||||
dataIndex: 'callNo',
|
||||
sorter: true,
|
||||
render: val => `${val} 万`,
|
||||
// mark to display a total number
|
||||
needTotal: true,
|
||||
},
|
||||
{
|
||||
title: '状态',
|
||||
dataIndex: 'status',
|
||||
filters: [
|
||||
{
|
||||
text: status[0],
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
text: status[1],
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
text: status[2],
|
||||
value: 2,
|
||||
},
|
||||
{
|
||||
text: status[3],
|
||||
value: 3,
|
||||
},
|
||||
],
|
||||
render(val) {
|
||||
return <Badge status={statusMap[val]} text={status[val]} />;
|
||||
},
|
||||
},
|
||||
{
|
||||
title: '上次调度时间',
|
||||
dataIndex: 'updatedAt',
|
||||
sorter: true,
|
||||
render: val => <span>{moment(val).format('YYYY-MM-DD HH:mm:ss')}</span>,
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
render: (text, record) => (
|
||||
<Fragment>
|
||||
<a onClick={() => this.handleUpdateModalVisible(true, record)}>配置</a>
|
||||
<Divider type="vertical" />
|
||||
<a href="">订阅警报</a>
|
||||
</Fragment>
|
||||
),
|
||||
},
|
||||
];
|
||||
|
||||
componentDidMount() {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'rule/fetch',
|
||||
});
|
||||
}
|
||||
|
||||
handleStandardTableChange = (pagination, filtersArg, sorter) => {
|
||||
const { dispatch } = this.props;
|
||||
const { formValues } = this.state;
|
||||
|
||||
const filters = Object.keys(filtersArg).reduce((obj, key) => {
|
||||
const newObj = { ...obj };
|
||||
newObj[key] = getValue(filtersArg[key]);
|
||||
return newObj;
|
||||
}, {});
|
||||
|
||||
const params = {
|
||||
currentPage: pagination.current,
|
||||
pageSize: pagination.pageSize,
|
||||
...formValues,
|
||||
...filters,
|
||||
};
|
||||
if (sorter.field) {
|
||||
params.sorter = `${sorter.field}_${sorter.order}`;
|
||||
}
|
||||
|
||||
dispatch({
|
||||
type: 'rule/fetch',
|
||||
payload: params,
|
||||
});
|
||||
};
|
||||
|
||||
previewItem = id => {
|
||||
router.push(`/profile/basic/${id}`);
|
||||
};
|
||||
|
||||
handleFormReset = () => {
|
||||
const { form, dispatch } = this.props;
|
||||
form.resetFields();
|
||||
this.setState({
|
||||
formValues: {},
|
||||
});
|
||||
dispatch({
|
||||
type: 'rule/fetch',
|
||||
payload: {},
|
||||
});
|
||||
};
|
||||
|
||||
toggleForm = () => {
|
||||
const { expandForm } = this.state;
|
||||
this.setState({
|
||||
expandForm: !expandForm,
|
||||
});
|
||||
};
|
||||
|
||||
handleMenuClick = e => {
|
||||
const { dispatch } = this.props;
|
||||
const { selectedRows } = this.state;
|
||||
|
||||
if (selectedRows.length === 0) return;
|
||||
switch (e.key) {
|
||||
case 'remove':
|
||||
dispatch({
|
||||
type: 'rule/remove',
|
||||
payload: {
|
||||
key: selectedRows.map(row => row.key),
|
||||
},
|
||||
callback: () => {
|
||||
this.setState({
|
||||
selectedRows: [],
|
||||
});
|
||||
},
|
||||
});
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
handleSelectRows = rows => {
|
||||
this.setState({
|
||||
selectedRows: rows,
|
||||
});
|
||||
};
|
||||
|
||||
handleSearch = e => {
|
||||
e.preventDefault();
|
||||
|
||||
const { dispatch, form } = this.props;
|
||||
|
||||
form.validateFields((err, fieldsValue) => {
|
||||
if (err) return;
|
||||
|
||||
const values = {
|
||||
...fieldsValue,
|
||||
updatedAt: fieldsValue.updatedAt && fieldsValue.updatedAt.valueOf(),
|
||||
};
|
||||
|
||||
this.setState({
|
||||
formValues: values,
|
||||
});
|
||||
|
||||
dispatch({
|
||||
type: 'rule/fetch',
|
||||
payload: values,
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
handleModalVisible = flag => {
|
||||
this.setState({
|
||||
modalVisible: !!flag,
|
||||
});
|
||||
};
|
||||
|
||||
handleUpdateModalVisible = (flag, record) => {
|
||||
this.setState({
|
||||
updateModalVisible: !!flag,
|
||||
stepFormValues: record || {},
|
||||
});
|
||||
};
|
||||
|
||||
handleAdd = fields => {
|
||||
const { dispatch } = this.props;
|
||||
dispatch({
|
||||
type: 'rule/add',
|
||||
payload: {
|
||||
desc: fields.desc,
|
||||
},
|
||||
});
|
||||
|
||||
message.success('添加成功');
|
||||
this.handleModalVisible();
|
||||
};
|
||||
|
||||
handleUpdate = fields => {
|
||||
const { dispatch } = this.props;
|
||||
const { formValues } = this.state;
|
||||
dispatch({
|
||||
type: 'rule/update',
|
||||
payload: {
|
||||
query: formValues,
|
||||
body: {
|
||||
name: fields.name,
|
||||
desc: fields.desc,
|
||||
key: fields.key,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
message.success('配置成功');
|
||||
this.handleUpdateModalVisible();
|
||||
};
|
||||
|
||||
renderSimpleForm() {
|
||||
const {
|
||||
form: { getFieldDecorator },
|
||||
} = this.props;
|
||||
return (
|
||||
<Form onSubmit={this.handleSearch} layout="inline">
|
||||
<Row gutter={{ md: 8, lg: 24, xl: 48 }}>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="规则名称">
|
||||
{getFieldDecorator('name')(<Input placeholder="请输入" />)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="使用状态">
|
||||
{getFieldDecorator('status')(
|
||||
<Select placeholder="请选择" style={{ width: '100%' }}>
|
||||
<Option value="0">关闭</Option>
|
||||
<Option value="1">运行中</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<span className={styles.submitButtons}>
|
||||
<Button type="primary" htmlType="submit">
|
||||
查询
|
||||
</Button>
|
||||
<Button style={{ marginLeft: 8 }} onClick={this.handleFormReset}>
|
||||
重置
|
||||
</Button>
|
||||
<a style={{ marginLeft: 8 }} onClick={this.toggleForm}>
|
||||
展开 <Icon type="down" />
|
||||
</a>
|
||||
</span>
|
||||
</Col>
|
||||
</Row>
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
|
||||
renderAdvancedForm() {
|
||||
const {
|
||||
form: { getFieldDecorator },
|
||||
} = this.props;
|
||||
return (
|
||||
<Form onSubmit={this.handleSearch} layout="inline">
|
||||
<Row gutter={{ md: 8, lg: 24, xl: 48 }}>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="规则名称">
|
||||
{getFieldDecorator('name')(<Input placeholder="请输入" />)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="使用状态">
|
||||
{getFieldDecorator('status')(
|
||||
<Select placeholder="请选择" style={{ width: '100%' }}>
|
||||
<Option value="0">关闭</Option>
|
||||
<Option value="1">运行中</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="调用次数">
|
||||
{getFieldDecorator('number')(<InputNumber style={{ width: '100%' }} />)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
<Row gutter={{ md: 8, lg: 24, xl: 48 }}>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="更新日期">
|
||||
{getFieldDecorator('date')(
|
||||
<DatePicker style={{ width: '100%' }} placeholder="请输入更新日期" />
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="使用状态">
|
||||
{getFieldDecorator('status3')(
|
||||
<Select placeholder="请选择" style={{ width: '100%' }}>
|
||||
<Option value="0">关闭</Option>
|
||||
<Option value="1">运行中</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
<Col md={8} sm={24}>
|
||||
<FormItem label="使用状态">
|
||||
{getFieldDecorator('status4')(
|
||||
<Select placeholder="请选择" style={{ width: '100%' }}>
|
||||
<Option value="0">关闭</Option>
|
||||
<Option value="1">运行中</Option>
|
||||
</Select>
|
||||
)}
|
||||
</FormItem>
|
||||
</Col>
|
||||
</Row>
|
||||
<div style={{ overflow: 'hidden' }}>
|
||||
<div style={{ marginBottom: 24 }}>
|
||||
<Button type="primary" htmlType="submit">
|
||||
查询
|
||||
</Button>
|
||||
<Button style={{ marginLeft: 8 }} onClick={this.handleFormReset}>
|
||||
重置
|
||||
</Button>
|
||||
<a style={{ marginLeft: 8 }} onClick={this.toggleForm}>
|
||||
收起 <Icon type="up" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
|
||||
renderForm() {
|
||||
const { expandForm } = this.state;
|
||||
return expandForm ? this.renderAdvancedForm() : this.renderSimpleForm();
|
||||
}
|
||||
|
||||
render() {
|
||||
const {
|
||||
rule: { data },
|
||||
loading,
|
||||
} = this.props;
|
||||
const { selectedRows, modalVisible, updateModalVisible, stepFormValues } = this.state;
|
||||
const menu = (
|
||||
<Menu onClick={this.handleMenuClick} selectedKeys={[]}>
|
||||
<Menu.Item key="remove">删除</Menu.Item>
|
||||
<Menu.Item key="approval">批量审批</Menu.Item>
|
||||
</Menu>
|
||||
);
|
||||
|
||||
const parentMethods = {
|
||||
handleAdd: this.handleAdd,
|
||||
handleModalVisible: this.handleModalVisible,
|
||||
};
|
||||
const updateMethods = {
|
||||
handleUpdateModalVisible: this.handleUpdateModalVisible,
|
||||
handleUpdate: this.handleUpdate,
|
||||
};
|
||||
return (
|
||||
<PageHeaderWrapper title="查询表格">
|
||||
<Card bordered={false}>
|
||||
<div className={styles.tableList}>
|
||||
<div className={styles.tableListForm}>{this.renderForm()}</div>
|
||||
<div className={styles.tableListOperator}>
|
||||
<Button icon="plus" type="primary" onClick={() => this.handleModalVisible(true)}>
|
||||
新建
|
||||
</Button>
|
||||
{selectedRows.length > 0 && (
|
||||
<span>
|
||||
<Button>批量操作</Button>
|
||||
<Dropdown overlay={menu}>
|
||||
<Button>
|
||||
更多操作 <Icon type="down" />
|
||||
</Button>
|
||||
</Dropdown>
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
<StandardTable
|
||||
selectedRows={selectedRows}
|
||||
loading={loading}
|
||||
data={data}
|
||||
columns={this.columns}
|
||||
onSelectRow={this.handleSelectRows}
|
||||
onChange={this.handleStandardTableChange}
|
||||
/>
|
||||
</div>
|
||||
</Card>
|
||||
<CreateForm {...parentMethods} modalVisible={modalVisible} />
|
||||
{stepFormValues && Object.keys(stepFormValues).length ? (
|
||||
<UpdateForm
|
||||
{...updateMethods}
|
||||
updateModalVisible={updateModalVisible}
|
||||
values={stepFormValues}
|
||||
/>
|
||||
) : null}
|
||||
</PageHeaderWrapper>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default TableList;
|
||||
49
admin-web/src/pages/List/TableList.less
Normal file
49
admin-web/src/pages/List/TableList.less
Normal file
@@ -0,0 +1,49 @@
|
||||
@import '~antd/lib/style/themes/default.less';
|
||||
@import '~@/utils/utils.less';
|
||||
|
||||
.tableList {
|
||||
.tableListOperator {
|
||||
margin-bottom: 16px;
|
||||
button {
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tableListForm {
|
||||
:global {
|
||||
.ant-form-item {
|
||||
display: flex;
|
||||
margin-right: 0;
|
||||
margin-bottom: 24px;
|
||||
> .ant-form-item-label {
|
||||
width: auto;
|
||||
padding-right: 8px;
|
||||
line-height: 32px;
|
||||
}
|
||||
.ant-form-item-control {
|
||||
line-height: 32px;
|
||||
}
|
||||
}
|
||||
.ant-form-item-control-wrapper {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
.submitButtons {
|
||||
display: block;
|
||||
margin-bottom: 24px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-lg) {
|
||||
.tableListForm :global(.ant-form-item) {
|
||||
margin-right: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: @screen-md) {
|
||||
.tableListForm :global(.ant-form-item) {
|
||||
margin-right: 8px;
|
||||
}
|
||||
}
|
||||
55
admin-web/src/pages/List/models/rule.js
Normal file
55
admin-web/src/pages/List/models/rule.js
Normal file
@@ -0,0 +1,55 @@
|
||||
import { queryRule, removeRule, addRule, updateRule } from '@/services/api';
|
||||
|
||||
export default {
|
||||
namespace: 'rule',
|
||||
|
||||
state: {
|
||||
data: {
|
||||
list: [],
|
||||
pagination: {},
|
||||
},
|
||||
},
|
||||
|
||||
effects: {
|
||||
*fetch({ payload }, { call, put }) {
|
||||
const response = yield call(queryRule, payload);
|
||||
yield put({
|
||||
type: 'save',
|
||||
payload: response,
|
||||
});
|
||||
},
|
||||
*add({ payload, callback }, { call, put }) {
|
||||
const response = yield call(addRule, payload);
|
||||
yield put({
|
||||
type: 'save',
|
||||
payload: response,
|
||||
});
|
||||
if (callback) callback();
|
||||
},
|
||||
*remove({ payload, callback }, { call, put }) {
|
||||
const response = yield call(removeRule, payload);
|
||||
yield put({
|
||||
type: 'save',
|
||||
payload: response,
|
||||
});
|
||||
if (callback) callback();
|
||||
},
|
||||
*update({ payload, callback }, { call, put }) {
|
||||
const response = yield call(updateRule, payload);
|
||||
yield put({
|
||||
type: 'save',
|
||||
payload: response,
|
||||
});
|
||||
if (callback) callback();
|
||||
},
|
||||
},
|
||||
|
||||
reducers: {
|
||||
save(state, action) {
|
||||
return {
|
||||
...state,
|
||||
data: action.payload,
|
||||
};
|
||||
},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user