A web update

pull/22/head
雷二猛 2019-12-29 19:24:33 +08:00
parent a512fc236a
commit a61cc9e5df
8 changed files with 190 additions and 2 deletions

View File

@ -1,7 +1,14 @@
import React from 'react'; import React from 'react';
import { Button } from 'antd'; import { Button } from 'antd';
import { hasPermission } from 'libs';
export default function LinkButton(props) { export default function LinkButton(props) {
return <Button type="link" style={{padding: 0}} {...props}>{props.children}</Button> let disabled = props.disabled;
if (props.auth && !hasPermission(props.auth)) {
disabled = true;
}
return <Button {...props} type="link" style={{padding: 0}} disabled={disabled}>
{props.children}
</Button>
} }

View File

@ -32,6 +32,7 @@ export default [
{ {
icon: 'setting', title: '系统管理', child: [ icon: 'setting', title: '系统管理', child: [
{title: '账户管理', path: '/system/account'}, {title: '账户管理', path: '/system/account'},
{title: '角色管理', path: '/system/role'},
{title: '系统设置', path: '/system/setting'}, {title: '系统设置', path: '/system/setting'},
] ]
}, },

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import { observer } from 'mobx-react'; import { observer } from 'mobx-react';
import { Table, Divider, Modal, Tooltip, Tag, Icon, message } from 'antd'; import { Table, Divider, Modal, Tooltip, Icon, message } from 'antd';
import { LinkButton } from 'components'; import { LinkButton } from 'components';
import ComForm from './Form'; import ComForm from './Form';
import http from 'libs/http'; import http from 'libs/http';

View File

@ -0,0 +1,59 @@
import React from 'react';
import { observer } from 'mobx-react';
import { Modal, Form, Input, message } from 'antd';
import http from 'libs/http';
import store from './store';
@observer
class ComForm extends React.Component {
constructor(props) {
super(props);
this.state = {
loading: false,
type: null,
body: store.record['body'],
}
}
handleSubmit = () => {
this.setState({loading: true});
const formData = this.props.form.getFieldsValue();
formData['id'] = store.record.id;
http.post('/api/account/role/', formData)
.then(res => {
message.success('操作成功');
store.formVisible = false;
store.fetchRecords()
}, () => this.setState({loading: false}))
};
render() {
const info = store.record;
const {getFieldDecorator} = this.props.form;
return (
<Modal
visible
width={800}
maskClosable={false}
title={store.record.id ? '编辑角色' : '新建角色'}
onCancel={() => store.formVisible = false}
confirmLoading={this.state.loading}
onOk={this.handleSubmit}>
<Form labelCol={{span: 6}} wrapperCol={{span: 14}}>
<Form.Item required label="角色名称">
{getFieldDecorator('name', {initialValue: info['name']})(
<Input placeholder="请输入角色名称"/>
)}
</Form.Item>
<Form.Item label="备注信息">
{getFieldDecorator('desc', {initialValue: info['desc']})(
<Input.TextArea placeholder="请输入角色备注信息"/>
)}
</Form.Item>
</Form>
</Modal>
)
}
}
export default Form.create()(ComForm)

View File

@ -0,0 +1,69 @@
import React from 'react';
import { observer } from 'mobx-react';
import { Table, Divider, Modal, message } from 'antd';
import ComForm from './Form';
import http from 'libs/http';
import store from './store';
import { LinkButton } from "components";
@observer
class ComTable extends React.Component {
componentDidMount() {
store.fetchRecords()
}
columns = [{
title: '序号',
key: 'series',
render: (_, __, index) => index + 1,
width: 80,
}, {
title: '角色名称',
dataIndex: 'name',
}, {
title: '权限个数',
dataIndex: 'type',
}, {
title: '描述信息',
dataIndex: 'desc',
ellipsis: true
}, {
title: '操作',
render: info => (
<span>
<LinkButton onClick={() => store.showForm(info)}>编辑</LinkButton>
<Divider type="vertical"/>
<LinkButton onClick={() => this.handleDelete(info)}>删除</LinkButton>
</span>
)
}];
handleDelete = (text) => {
Modal.confirm({
title: '删除确认',
content: `确定要删除【${text['name']}】?`,
onOk: () => {
return http.delete('/api/account/role/', {params: {id: text.id}})
.then(() => {
message.success('删除成功');
store.fetchRecords()
})
}
})
};
render() {
let data = store.records;
if (store.f_name) {
data = data.filter(item => item['name'].toLowerCase().includes(store.f_name.toLowerCase()))
}
return (
<React.Fragment>
<Table rowKey="id" loading={store.isFetching} dataSource={data} columns={this.columns}/>
{store.formVisible && <ComForm/>}
</React.Fragment>
)
}
}
export default ComTable

View File

@ -0,0 +1,25 @@
import React from 'react';
import { observer } from 'mobx-react';
import { Card, Input, Button } from 'antd';
import { SearchForm } from 'components';
import ComTable from './Table';
import store from './store';
export default observer(function () {
return (
<Card>
<SearchForm>
<SearchForm.Item span={8} title="角色名称">
<Input allowClear onChange={e => store.f_name = e.target.value} placeholder="请输入"/>
</SearchForm.Item>
<SearchForm.Item span={8}>
<Button type="primary" icon="sync" onClick={store.fetchRecords}>刷新</Button>
</SearchForm.Item>
</SearchForm>
<div style={{marginBottom: 16}}>
<Button type="primary" icon="plus" onClick={() => store.showForm()}>新建</Button>
</div>
<ComTable/>
</Card>
)
})

View File

@ -0,0 +1,25 @@
import { observable } from "mobx";
import http from 'libs/http';
class Store {
@observable records = [];
@observable record = {};
@observable isFetching = false;
@observable formVisible = false;
@observable f_name;
fetchRecords = () => {
this.isFetching = true;
http.get('/api/account/role/')
.then(res => this.records = res)
.finally(() => this.isFetching = false)
};
showForm = (info = {}) => {
this.formVisible = true;
this.record = info
}
}
export default new Store()

View File

@ -1,8 +1,10 @@
import { makeRoute } from 'libs/router'; import { makeRoute } from 'libs/router';
import Account from './account'; import Account from './account';
import Setting from './setting'; import Setting from './setting';
import Role from './role';
export default [ export default [
makeRoute('/account', Account), makeRoute('/account', Account),
makeRoute('/role', Role),
makeRoute('/setting', Setting), makeRoute('/setting', Setting),
] ]