|
@@ -5,9 +5,9 @@ import queryString from 'query-string';
|
|
|
import { connect } from 'dva';
|
|
|
import { Spin, Popover, Badge, Table, Radio, Card, Form, Input, Icon, Button, Select } from 'antd';
|
|
|
import PageHeaderLayout from '../../../layouts/PageHeaderLayout';
|
|
|
-import SupportSelectSortModal from './supportModal';
|
|
|
-import ResourceSelectModal from './resourceModal';
|
|
|
-import { Codes } from '../../../utils/config';
|
|
|
+import SupportSelectSortModal from './support';
|
|
|
+import ResourceSelectModal from './resource';
|
|
|
+import { Codes, ossHost } from '../../../utils/config';
|
|
|
|
|
|
const FormItem = Form.Item;
|
|
|
const Option = Select.Option;
|
|
@@ -45,7 +45,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
curClickedBtn: btnName,
|
|
|
}, () => {
|
|
|
const { dispatch } = this.props;
|
|
|
- if (btnName === 'supportBtn') {
|
|
|
+ if (btnName == 'supportBtn') {
|
|
|
dispatch({ type: 'supportDetail/showSupportModal' });
|
|
|
dispatch({
|
|
|
type: 'support/query',
|
|
@@ -54,8 +54,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
pageSize: 10,
|
|
|
}
|
|
|
});
|
|
|
- }
|
|
|
- if (btnName === 'imgBtn') {
|
|
|
+ } else if (btnName == 'imgBtn' || btnName == 'cvImgBtn') {
|
|
|
dispatch({ type: 'supportDetail/showResourceModal' });
|
|
|
dispatch({
|
|
|
type: 'resource/query',
|
|
@@ -73,10 +72,10 @@ export default class SupportDetail extends PureComponent {
|
|
|
handleModalCancel = () => {
|
|
|
const { curClickedBtn } = this.state;
|
|
|
const { dispatch } = this.props;
|
|
|
- if (curClickedBtn === 'supportBtn') {
|
|
|
+ if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({ type: 'supportDetail/hideSupportModal' });
|
|
|
}
|
|
|
- if (curClickedBtn === 'imgBtn') {
|
|
|
+ if (curClickedBtn == 'imgBtn' || curClickedBtn == 'cvImgBtn') {
|
|
|
dispatch({ type: 'supportDetail/hideResourceModal' });
|
|
|
}
|
|
|
}
|
|
@@ -85,16 +84,21 @@ export default class SupportDetail extends PureComponent {
|
|
|
handleModalOk = (data) => {
|
|
|
const { curClickedBtn } = this.state;
|
|
|
const { dispatch } = this.props;
|
|
|
- if (curClickedBtn === 'supportBtn') {
|
|
|
+ if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({
|
|
|
type: 'supportDetail/saveSupportList',
|
|
|
payload: { supportList: data }
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'imgBtn') {
|
|
|
+ } else if (curClickedBtn == 'imgBtn') {
|
|
|
dispatch({
|
|
|
type: 'supportDetail/saveImgList',
|
|
|
payload: { imgList: data },
|
|
|
});
|
|
|
+ } else if (curClickedBtn == 'cvImgBtn') {
|
|
|
+ dispatch({
|
|
|
+ type: 'supportDetail/saveCoverImg',
|
|
|
+ payload: { coverUrl: data.path },
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -109,12 +113,12 @@ export default class SupportDetail extends PureComponent {
|
|
|
delete newData.field;
|
|
|
delete newData.keyword;
|
|
|
|
|
|
- if (curClickedBtn === 'supportBtn') {
|
|
|
+ if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({
|
|
|
type: `support/query`,
|
|
|
payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL },
|
|
|
});
|
|
|
- } else if (curClickedBtn === 'imgBtn') {
|
|
|
+ } else if (curClickedBtn == 'imgBtn' || curClickedBtn == 'cvImgBtn') {
|
|
|
dispatch({
|
|
|
type: `resource/query`,
|
|
|
payload: { ...newData, pageNo: 1, pageSize: 10, status: Codes.CODE_NORMAL, type: Codes.CODE_IMAGE },
|
|
@@ -145,9 +149,9 @@ export default class SupportDetail extends PureComponent {
|
|
|
const data = { ...newFilters, ...tableFilters, pageNo: pagination.current, pageSize: pagination.pageSize };
|
|
|
Object.keys(data).map(key => data[key] ? null : delete data[key]);
|
|
|
|
|
|
- if (curClickedBtn === 'supportBtn') {
|
|
|
+ if (curClickedBtn == 'supportBtn') {
|
|
|
dispatch({ type: `support/query`, payload: { ...data, status: Codes.CODE_NORMAL } });
|
|
|
- } else if (curClickedBtn === 'imgBtn') {
|
|
|
+ } else if (curClickedBtn == 'imgBtn' || curClickedBtn == 'cvImgBtn') {
|
|
|
dispatch({ type: `resource/query`, payload: { ...data, status: Codes.CODE_NORMAL, type: Codes.CODE_IMAGE } });
|
|
|
}
|
|
|
}
|
|
@@ -250,9 +254,11 @@ export default class SupportDetail extends PureComponent {
|
|
|
code,
|
|
|
digest,
|
|
|
detail,
|
|
|
- imgList = [],
|
|
|
- supportList = [],
|
|
|
+ coverUrl,
|
|
|
+ imgList,
|
|
|
+ supportList,
|
|
|
} = currentItem;
|
|
|
+ const { curClickedBtn } = this.state;
|
|
|
|
|
|
// 待选表格去掉分页的跳转及变换页码
|
|
|
if (resource && resource.pagination) {
|
|
@@ -276,10 +282,10 @@ export default class SupportDetail extends PureComponent {
|
|
|
key: 'url',
|
|
|
render: (text, record) => (
|
|
|
<Popover
|
|
|
- content={<img alt="" src={record.url} width={350} />}
|
|
|
+ content={<img alt="" src={`${ossHost}/${record.path}`} width={350} />}
|
|
|
title={record.name}
|
|
|
>
|
|
|
- <img alt="" src={record.url} width={70} />
|
|
|
+ <img alt="" src={`${ossHost}/${record.path}`} width={70} />
|
|
|
</Popover>
|
|
|
),
|
|
|
},{
|
|
@@ -341,7 +347,18 @@ export default class SupportDetail extends PureComponent {
|
|
|
<Select placeholder="请选择">{merchant.list.map(item => <Option value={item.id} key={item.id}>{item.name}</Option>)}</Select>
|
|
|
)}
|
|
|
</FormItem>
|
|
|
- <FormItem label="选择图片" {...formItemLayout}>
|
|
|
+ <FormItem label="封面图片" {...formItemLayout}>
|
|
|
+ <Button onClick={() => this.handleModalShow('cvImgBtn')} type="primary" icon="select" size="small">选择</Button>
|
|
|
+ {!coverUrl? null :
|
|
|
+ <Card
|
|
|
+ hoverable
|
|
|
+ bordered
|
|
|
+ cover={<img alt="" src={coverUrl.startsWith('http') ? coverUrl : `${ossHost}/${coverUrl}`} />}
|
|
|
+ style={{ width: 240, marginTop: 20 }}
|
|
|
+ >
|
|
|
+ </Card>}
|
|
|
+ </FormItem>
|
|
|
+ <FormItem label="图片列表" {...formItemLayout}>
|
|
|
<Button onClick={() => this.handleModalShow('imgBtn')} type="primary" size="small" icon="edit">编辑</Button>
|
|
|
</FormItem>
|
|
|
<FormItem wrapperCol={{ offset: 7, span: 12 }}>
|
|
@@ -350,7 +367,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
|
该配套下不包含任何图片,请选择!</span>
|
|
|
}}
|
|
|
- dataSource={imgList}
|
|
|
+ dataSource={imgList || []}
|
|
|
columns={imgTableColumns}
|
|
|
rowKey={record => record.id}
|
|
|
bordered
|
|
@@ -366,7 +383,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
emptyText: <span style={{ color: "#C6D0D6" }}> <Icon type="frown-o"/>
|
|
|
暂无与该配套相关的配套,请选择!</span>
|
|
|
}}
|
|
|
- dataSource={supportList}
|
|
|
+ dataSource={supportList || []}
|
|
|
columns={supportTableColumns}
|
|
|
rowKey={record => record.id}
|
|
|
bordered
|
|
@@ -387,7 +404,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
onCancel={this.handleModalCancel}
|
|
|
onOk={this.handleModalOk}
|
|
|
onSearch={this.handleModalSearch}
|
|
|
- selTableData={supportList}
|
|
|
+ selTableData={supportList || []}
|
|
|
fsTableDataSource={support.list || []}
|
|
|
fsTableLoading={support.listLoading}
|
|
|
fsTablePagination={support.pagination}
|
|
@@ -395,6 +412,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
/>
|
|
|
{/*图片资源的模态选择框*/}
|
|
|
<ResourceSelectModal
|
|
|
+ mode={curClickedBtn == 'imgBtn' ? 'multiple' : 'single'}
|
|
|
rowKeyName="id"
|
|
|
modalVisible={resourceModalVisible}
|
|
|
style={{ top: 20 }}
|
|
@@ -402,7 +420,7 @@ export default class SupportDetail extends PureComponent {
|
|
|
onOk={this.handleModalOk}
|
|
|
onCancel={this.handleModalCancel}
|
|
|
onSearch={this.handleModalSearch}
|
|
|
- selTableData={imgList}
|
|
|
+ selTableData={imgList || []}
|
|
|
fsTableDataSource={resource.list || []}
|
|
|
fsTableLoading={resource.listLoading}
|
|
|
fsTablePagination={resource.pagination}
|