123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293 |
- import React from 'react';
- import { Icon, Button, Input, Select, Spin, Table, message, DatePicker } from 'antd';
- import $ from 'jquery/src/ajax';
- import moment from 'moment';
- import NewDesc from '@/administration/messagePush/messageIn/messageDesc';
- import '@/account/demand/techDemand.less';
- import '@/administration/news/news.less';
- import {getCouponCome,getCouponAuthStates} from '@/tools.js';
- import {couponCome} from '@/dataDic.js';
- const DemandList = React.createClass({
- loadData(pageNo) {
- this.state.data = [];
- this.setState({
- selectedRowKeys:[],
- page:pageNo,
- loading: true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/open/api/admin/voucherDetail/selectList",
- data: {
- pageNo: pageNo || 1,
- pageSize: this.state.pagination.pageSize,
- name: this.state.name, //名称
- source: this.state.source, //来源
- status: this.state.status, //状态
- userMobile: this.state.userMobile, //用户手机号
- },
- success: function (data) {
- let theArr = [];
- if (!data.data || !data.data.list) {
- if (data.error && data.error.length) {
- message.warning(data.error[0].message);
- };
- } else {
- for (let i = 0; i < data.data.list.length; i++) {
- let thisdata = data.data.list[i];
- theArr.push({
- key: i,
- id: thisdata.id,
- name: thisdata.name,//名称
- money: thisdata.money,//面额
- source: thisdata.source,//来源
- starTime: thisdata.starTime,//领取时间
- endTime: thisdata.endTime,//截止时间
- useTime: thisdata.useTime, //使用时间
- status: thisdata.status,//状态
- userMobile: thisdata.userMobile,//使用人手机号
- durationDay: thisdata.durationDay,//期限
- });
- };
- };
- this.state.pagination.current = data.data.pageNo;
- this.state.pagination.total = data.data.totalCount;
- if(data.data&&data.data.list&&!data.data.list.length){
- this.state.pagination.current=0;
- this.state.pagination.total=0;
- };
- this.setState({
- dataSource: theArr,
- pagination: this.state.pagination
- });
- }.bind(this),
- }).always(function () {
- this.setState({
- loading: false
- });
- }.bind(this));
- },
- getInitialState() {
- return {
- searchMore: true,
- validityPeriodDate: [],
- releaseDate: [],
- selectedRowKeys: [],
- selectedRows: [],
- loading: false,
- pagination: {
- defaultCurrent: 1,
- defaultPageSize: 10,
- showQuickJumper: true,
- pageSize: 10,
- onChange: function (page) {
- this.loadData(page);
- }.bind(this),
- showTotal: function (total) {
- return '共' + total + '条数据';
- }
- },
- columns: [
- {
- title: '劵面名称',
- dataIndex: 'name',
- key: 'name',
- },
- {
- title: '面额',
- dataIndex: 'money',
- key: 'money',
- },
- {
- title: '领用时间',
- dataIndex: 'starTime',
- key: 'starTime'
- },
- {
- title: '截止时间',
- dataIndex: 'endTime',
- key: 'endTime'
- },
- {
- title: '来源',
- dataIndex: 'source',
- key: 'source',
- render: text => { return getCouponCome(text); }
- },
- {
- title: '状态',
- dataIndex: 'status',
- key: 'status',
- render: text => { return getCouponAuthStates(text); }
- },
- {
- title: '所属用户',
- dataIndex: 'userMobile',
- key: 'userMobile'
- },
- {
- title: '有效期限',
- dataIndex: 'durationDay',
- key: 'durationDay'
- }
- ],
- dataSource: [],
- searchTime: [,]
- };
- },
- //发布
- submission(record){
- this.setState({
- loading:true
- });
- $.ajax({
- method: "get",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/message/sendMessage",
- data: {
- messageId:record.id,
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('推送成功.');
- this.setState({
- loading: false,
- });
- this.loadData(this.state.page)
- } else {
- message.warning(data.error[0].message);
- };
- }.bind(this));
- },
- componentWillMount() {
- this.loadData();
- },
- tableRowClick(record, index) {
- this.state.RowData = record;
- this.setState({
- showDesc: true
- });
- },
- del(recard) {
- this.setState({
- loading:true
- })
- $.ajax({
- method: "POST",
- dataType: "json",
- crossDomain: false,
- url: globalConfig.context + "/api/admin/message/updMessageById",
- data: {
- id: recard.id,
- title: recard.title,
- subject:0, //消息类别 0-系统消息
- isDraft:1, //是否草稿 0-否 1-是
- deleteSign:1, //删除标识 0-否 ,1-是
- isSend:0, //是否发送0-否 1-是
- body:recard.body
- }
- }).done(function (data) {
- if (!data.error.length) {
- message.success('删除成功!');
- this.setState({
- loading: false
- });
- if(this.state.pagination.total%10==1){
- this.loadData((this.state.page)-1);
- }else{
- this.loadData(this.state.page);
- }
- } else {
- message.warning(data.error[0].message);
- };
- }.bind(this));
- },
- addClick() {
- this.state.RowData = {};
- this.setState({
- showDesc: true
- });
- },
- closeDesc(e, s) {
- this.state.showDesc = e;
- if (s) {
- this.loadData(this.state.page);
- };
- },
- search() {
- this.loadData();
- },
- reset() {
- this.state.name = undefined;
- this.state.userMobile = undefined;
- this.state.status = undefined;
- this.state.source = undefined;
- this.loadData();
- },
- searchSwitch() {
- this.setState({
- searchMore: !this.state.searchMore
- });
- },
- render() {
- const rowSelection = {
- selectedRowKeys: this.state.selectedRowKeys,
- onChange: (selectedRowKeys, selectedRows) => {
- this.setState({
- selectedRows: selectedRows.slice(-1),
- selectedRowKeys: selectedRowKeys.slice(-1)
- });
- }
- };
- const { RangePicker } = DatePicker;
- const hasSelect = this.state.selectedRowKeys.length;
- return (
- <div className="user-content" >
- <div className="content-title">
- <span>抵用券管理</span>
- </div>
- <div className="user-search">
- <Input placeholder="券面名称"
- value={this.state.name}
- onChange={(e) => { this.setState({ name: e.target.value }); }} />
- <Input placeholder="用户手机号"
- value={this.state.userMobile}
- onChange={(e) => { this.setState({ userMobile: e.target.value }); }} />
- <Select placeholder="抵用券状态" style={{ width: 120 }}
- value={this.state.status}
- onChange={(e) => { this.setState({ status: e }) }}>
- <Select.Option value="0" >未使用</Select.Option>
- <Select.Option value="1" >已使用</Select.Option>
- </Select>
- <Select placeholder="抵用券来源" value={this.state.source} style={{ width: 120 }}
- onChange={(e)=>{this.setState({source:e})}}>
- {
- couponCome.map(function (item) {
- return <Select.Option key={item.value} >{item.key}</Select.Option>
- })
- }
- </Select>
- <Button type="primary" onClick={this.search}>搜索</Button>
- <Button onClick={this.reset}>重置</Button>
- </div>
- <div className="patent-table">
- <Spin spinning={this.state.loading}>
- <Table columns={this.state.columns}
- dataSource={this.state.dataSource}
- rowSelection={rowSelection}
- pagination={this.state.pagination}/>
- </Spin>
- </div>
- <NewDesc
- data={this.state.RowData}
- showDesc={this.state.showDesc}
- closeDesc={this.closeDesc} />
- </div >
- );
- }
- });
- export default DemandList;
|