|
@@ -1,5 +1,5 @@
|
|
|
import React, { Component } from 'react';
|
|
|
-import { Card, Form, List, Input, Select, Switch, Tooltip, Button, message } from 'antd';
|
|
|
+import { Card, Form, List, Input, Switch, Tooltip, Button, message } from 'antd';
|
|
|
import { routerRedux } from 'dva/router';
|
|
|
import { connect } from 'dva';
|
|
|
import queryString from 'query-string';
|
|
@@ -13,7 +13,6 @@ import { Codes, pageSize } from '../../../utils/config';
|
|
|
campus: state.campus,
|
|
|
}))
|
|
|
export default class TerminalProfile extends Component {
|
|
|
-
|
|
|
handleCampusSelectClick = () => {
|
|
|
this.props.dispatch({ type: 'terminalDetail/showModal' });
|
|
|
this.props.dispatch({
|
|
@@ -89,7 +88,7 @@ export default class TerminalProfile extends Component {
|
|
|
render() {
|
|
|
const { form, terminalDetail, campus } = this.props;
|
|
|
const { currentItem, modalShow, operType } = terminalDetail;
|
|
|
- const { name, code, password, status, campusId, campusName, campusCode, merchantName } = currentItem;
|
|
|
+ const { name, password, status, campusId, campusName, merchantName } = currentItem;
|
|
|
const { getFieldDecorator } = form;
|
|
|
|
|
|
const formItemLayout = {
|
|
@@ -118,46 +117,50 @@ export default class TerminalProfile extends Component {
|
|
|
<Form layout="horizontal" onSubmit={this.handlePageSubmit}>
|
|
|
<Form.Item hasFeedback label="所属校区" {...formItemLayout}>
|
|
|
<Tooltip placement="top" title="点击选择校区">
|
|
|
- <Button disabled={operType === "update" ? true: false} style={{ marginRight: 20 }} type="primary" size="small" icon="select" onClick={this.handleCampusSelectClick}>选择</Button>
|
|
|
+ <Button disabled={operType === 'update'} style={{ marginRight: 20 }} type="primary" size="small" icon="select" onClick={this.handleCampusSelectClick}>选择</Button>
|
|
|
</Tooltip>
|
|
|
- {operType == 'update' ?
|
|
|
- <List
|
|
|
- size="small"
|
|
|
- bordered
|
|
|
- dataSource={[
|
|
|
+ {operType === 'update' ?
|
|
|
+ (
|
|
|
+ <List
|
|
|
+ size="small"
|
|
|
+ bordered
|
|
|
+ dataSource={[
|
|
|
`所属校区: ${campusName}`,
|
|
|
`所属渠道: ${merchantName}`,
|
|
|
]}
|
|
|
- renderItem={item => <List.Item>{item}</List.Item>}
|
|
|
- />
|
|
|
- : (campusId ? <List size="small" bordered dataSource={[`${campusName}`]} renderItem={item => <List.Item>{item}</List.Item>}/>
|
|
|
- : null)}
|
|
|
+ renderItem={item => <List.Item>{item}</List.Item>}
|
|
|
+ />
|
|
|
+ ) : (
|
|
|
+ campusId ? <List size="small" bordered dataSource={[`${campusName}`]} renderItem={item => <List.Item>{item}</List.Item>} /> : null)
|
|
|
+ }
|
|
|
</Form.Item>
|
|
|
<Form.Item label="终端名称:" hasFeedback {...formItemLayout}>
|
|
|
{getFieldDecorator('name', {
|
|
|
initialValue: name,
|
|
|
- })(<Input placeholder="请输入(例: 教室三/教室四...)"/>)}
|
|
|
+ })(<Input placeholder="请输入(例: 教室三/教室四...)" />)}
|
|
|
</Form.Item>
|
|
|
{operType === 'create' ?
|
|
|
- <Form.Item label="终端密码:" hasFeedback {...formItemLayout}>
|
|
|
- {getFieldDecorator('password', {
|
|
|
+ (
|
|
|
+ <Form.Item label="终端密码:" hasFeedback {...formItemLayout}>
|
|
|
+ {getFieldDecorator('password', {
|
|
|
rules: [{ required: true, type: 'string', message: '密码为必填项!' }],
|
|
|
initialValue: password,
|
|
|
})(<Input placeholder="请输入" />)}
|
|
|
- </Form.Item>
|
|
|
- :
|
|
|
- <Form.Item label="终端密码:" hasFeedback {...formItemLayout}>
|
|
|
- {getFieldDecorator('password', {
|
|
|
+ </Form.Item>
|
|
|
+ ) : (
|
|
|
+ <Form.Item label="终端密码:" hasFeedback {...formItemLayout}>
|
|
|
+ {getFieldDecorator('password', {
|
|
|
initialValue: password,
|
|
|
})(<Input placeholder="修改密码时填写" />)}
|
|
|
- </Form.Item>
|
|
|
+ </Form.Item>
|
|
|
+ )
|
|
|
}
|
|
|
<Form.Item label="账号状态:" {...formItemLayout}>
|
|
|
{getFieldDecorator('status', {
|
|
|
valuePropsName: 'checked',
|
|
|
})(
|
|
|
<Switch
|
|
|
- defaultChecked={status === Codes.CODE_NORMAL ? true : false}
|
|
|
+ defaultChecked={status === Codes.CODE_NORMAL}
|
|
|
checkedChildren="使用中"
|
|
|
unCheckedChildren="禁用中"
|
|
|
/>
|
|
@@ -168,7 +171,7 @@ export default class TerminalProfile extends Component {
|
|
|
<Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
|
|
|
</Form.Item>
|
|
|
</Form>
|
|
|
- {/*校区模态选择框*/}
|
|
|
+ {/* 校区模态选择框 */}
|
|
|
<CampusSelectModal
|
|
|
rowKeyName="id"
|
|
|
modalVisible={modalShow}
|