|
@@ -1,17 +1,12 @@
|
|
import React, { PureComponent } from 'react';
|
|
import React, { PureComponent } from 'react';
|
|
import { routerRedux } from 'dva/router';
|
|
import { routerRedux } from 'dva/router';
|
|
-import PropTypes from 'prop-types';
|
|
|
|
import queryString from 'query-string';
|
|
import queryString from 'query-string';
|
|
import { connect } from 'dva';
|
|
import { connect } from 'dva';
|
|
-import { Spin, Popover, Badge, Table, Radio, Card, Form, Input, Icon, Button, Select } from 'antd';
|
|
|
|
|
|
+import { Spin, Popover, Table, Card, Form, Input, Icon, Button } from 'antd';
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
import ResourceSelectSortModal from './modal';
|
|
import ResourceSelectSortModal from './modal';
|
|
import { Codes, ossHost, resourceType, pageSize } from '../../../utils/config';
|
|
import { Codes, ossHost, resourceType, pageSize } from '../../../utils/config';
|
|
|
|
|
|
-const FormItem = Form.Item;
|
|
|
|
-const Option = Select.Option;
|
|
|
|
-const { TextArea } = Input;
|
|
|
|
-
|
|
|
|
@Form.create()
|
|
@Form.create()
|
|
@connect(state => ({
|
|
@connect(state => ({
|
|
wareDetail: state.wareDetail,
|
|
wareDetail: state.wareDetail,
|
|
@@ -134,7 +129,7 @@ export default class WareDetail extends PureComponent {
|
|
data.resourceList = (resourceList || []).map(item => item.id);
|
|
data.resourceList = (resourceList || []).map(item => item.id);
|
|
|
|
|
|
// 创建课件状态为normal
|
|
// 创建课件状态为normal
|
|
- if (operType === 'create') {
|
|
|
|
|
|
+ if (operType == 'create') {
|
|
data.status = Codes.CODE_NORMAL;
|
|
data.status = Codes.CODE_NORMAL;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -227,50 +222,32 @@ export default class WareDetail extends PureComponent {
|
|
<Spin spinning={itemLoading}>
|
|
<Spin spinning={itemLoading}>
|
|
<Card>
|
|
<Card>
|
|
<Form layout="horizontal" onSubmit={this.handlePageSubmit}>
|
|
<Form layout="horizontal" onSubmit={this.handlePageSubmit}>
|
|
- <FormItem label="课件编号:" hasFeedback {...formItemLayout}>
|
|
|
|
|
|
+ <Form.Item label="课件编号:" hasFeedback {...formItemLayout}>
|
|
{getFieldDecorator('code', {
|
|
{getFieldDecorator('code', {
|
|
rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
|
|
rules: [{ required: true, type: 'string', message: "编号为必填项!" }],
|
|
initialValue: code,
|
|
initialValue: code,
|
|
})(<Input />)}
|
|
})(<Input />)}
|
|
- </FormItem>
|
|
|
|
- <FormItem label="课件名称:" hasFeedback {...formItemLayout}>
|
|
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item label="课件名称:" hasFeedback {...formItemLayout}>
|
|
{getFieldDecorator('name', {
|
|
{getFieldDecorator('name', {
|
|
rules: [{ required: true, type: 'string', message: "名称为必填项!" }],
|
|
rules: [{ required: true, type: 'string', message: "名称为必填项!" }],
|
|
initialValue: name,
|
|
initialValue: name,
|
|
})(<Input />)}
|
|
})(<Input />)}
|
|
- </FormItem>
|
|
|
|
- <FormItem label="课件分类:" hasFeedback {...formItemLayout}>
|
|
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item label="课件分类:" hasFeedback {...formItemLayout}>
|
|
{getFieldDecorator('category', {
|
|
{getFieldDecorator('category', {
|
|
initialValue: category,
|
|
initialValue: category,
|
|
})(<Input />)}
|
|
})(<Input />)}
|
|
- </FormItem>
|
|
|
|
- <FormItem label="课件简述:" hasFeedback {...formItemLayout}>
|
|
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item label="课件简述:" hasFeedback {...formItemLayout}>
|
|
{getFieldDecorator('digest', {
|
|
{getFieldDecorator('digest', {
|
|
initialValue: digest,
|
|
initialValue: digest,
|
|
- })(<TextArea />)}
|
|
|
|
- </FormItem>
|
|
|
|
- {/*内容提供商暂不用选择
|
|
|
|
- <FormItem label="提供商" hasFeedback {...formItemLayout}>
|
|
|
|
- {getFieldDecorator('groupId', {
|
|
|
|
- rules: [{ required: true, type: 'string', message: "标签组为必选项!" }],
|
|
|
|
- initialValue: groupId,
|
|
|
|
- })(
|
|
|
|
- <Select
|
|
|
|
- showSearch
|
|
|
|
- allowClear
|
|
|
|
- placeholder="请输入标签组编号或者名称进行筛选"
|
|
|
|
- optionFilterProp="children"
|
|
|
|
- filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0}
|
|
|
|
- >
|
|
|
|
- {list.map(item => <Option value={item.id} key={item.id}>{`${item.code}/${item.name}`}</Option>)}
|
|
|
|
- </Select>
|
|
|
|
- )}
|
|
|
|
- </FormItem>
|
|
|
|
- */}
|
|
|
|
- <FormItem label="选择资源" {...formItemLayout}>
|
|
|
|
|
|
+ })(<Input.TextArea />)}
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item label="选择资源" {...formItemLayout}>
|
|
<Button onClick={this.handleModalShow} type="primary" size="small" icon="edit">编辑</Button>
|
|
<Button onClick={this.handleModalShow} type="primary" size="small" icon="edit">编辑</Button>
|
|
- </FormItem>
|
|
|
|
- <FormItem wrapperCol={{ offset: 7, span: 12 }}>
|
|
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item wrapperCol={{ offset: 7, span: 12 }}>
|
|
<Table
|
|
<Table
|
|
locale={{
|
|
locale={{
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
@@ -282,11 +259,11 @@ export default class WareDetail extends PureComponent {
|
|
bordered
|
|
bordered
|
|
pagination={false}
|
|
pagination={false}
|
|
/>
|
|
/>
|
|
- </FormItem>
|
|
|
|
- <FormItem {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
|
|
|
|
+ </Form.Item>
|
|
|
|
+ <Form.Item {...submitFormLayout} style={{ marginTop: 32 }}>
|
|
<Button onClick={this.handlePageCancel}>取消</Button>
|
|
<Button onClick={this.handlePageCancel}>取消</Button>
|
|
<Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
|
|
<Button type="primary" style={{ marginLeft: 35 }} htmlType="submit">提交</Button>
|
|
- </FormItem>
|
|
|
|
|
|
+ </Form.Item>
|
|
</Form>
|
|
</Form>
|
|
<ResourceSelectSortModal
|
|
<ResourceSelectSortModal
|
|
rowKeyName="id"
|
|
rowKeyName="id"
|