| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 | 
							- import React from 'react';
 
- import { Icon, Button, Input, Select, Spin, Table, message, DatePicker ,Modal,Form} 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,getCouponAuthState} 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/user/voucher/selectList",
 
-             data: {
 
-                 pageNo: pageNo || 1,
 
-                 pageSize: this.state.pagination.pageSize,
 
-                 name: this.state.name, //券面名称
 
-             },
 
-             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,//券面名称
 
-                             source:thisdata.source,//券面来源
 
-                             money:thisdata.money,//面额
 
-                             durationDay: thisdata.durationDay, //活动期限
 
-                             activeState: thisdata.activeState, //抵用券状态
 
-                         });
 
-                     };
 
-                 };
 
-                 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: [],
 
-             visitModul:false,
 
-             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',
 
-                     //render: text => { return text&&text.length>16?text.substr(0,16)+'...':text}
 
-                 },
 
-                 {
 
-                     title: '抵用券有效期(天)',
 
-                     dataIndex: 'durationDay',
 
-                     key: 'durationDay'
 
-                 },
 
-                 {
 
-                     title: '抵用券来源',
 
-                     dataIndex: 'source',
 
-                     key: 'source',
 
-                     render: text => { return getCouponCome(text); }
 
-                 },
 
-                 {
 
-                     title: '抵用券状态',
 
-                     dataIndex: 'activeState',
 
-                     key: 'activeState',
 
-                     render: text => { return getCouponAuthState(text); }
 
-                 }
 
-             ],
 
-             dataSource: [],
 
-             searchTime: [,]
 
-         };
 
-     },
 
-     
 
-     //抵用券停用
 
-     block(){
 
-     	let id;
 
- 		for(let idx = 0; idx < this.state.selectedRows.length; idx++) {
 
- 			let rowItem = this.state.selectedRows[idx];
 
- 			if(rowItem.id) {
 
- 				id=rowItem.id;
 
- 			};
 
- 		};
 
-         this.setState({
 
-             loading:true
 
-         });
 
-         $.ajax({
 
-             method: "post",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/open/api/user/voucher/update",
 
-             data: {
 
-                 id:id,
 
-                 activeState:"0"
 
-             }
 
-         }).done(function (data) {
 
-             if (!data.error.length) {
 
-                 message.success('该劵已停用');
 
-                 this.loadData(this.state.page)
 
-             } else {
 
-                 message.warning(data.error[0].message);
 
-             };
 
-             this.setState({
 
-                 loading: false,
 
-             });
 
-         }.bind(this));
 
-     },
 
-     //进入页面
 
-     componentWillMount() {
 
-         this.loadData();
 
-     },
 
-    //新增抵用券
 
-     newSubmit(e) {
 
-         e.preventDefault();
 
-         if(!this.state.newName) {
 
- 			message.warning('请填写券面名称');
 
- 			return false;
 
- 		};
 
- 		if(!this.state.source) {
 
- 			message.warning('请确认券的来源');
 
- 			return false;
 
- 		};
 
- 		if(!this.state.money) {
 
- 			message.warning('请填写券面金额');
 
- 			return false;
 
- 		};
 
- 		if(!this.state.durationDay) {
 
- 			message.warning('请填写使用期限');
 
- 			return false;
 
- 		};
 
-         $.ajax({
 
-             method: "POST",
 
-             dataType: "json",
 
-             crossDomain: false,
 
-             url: globalConfig.context + "/open/api/user/voucher/save",
 
-             data: {
 
-                 name:this.state.newName,//抵用券名称
 
-                 source:this.state.source,//抵用券来源
 
-                 money:this.state.money,//抵用券面额
 
-                 durationDay:this.state.durationDay,//抵用券使用期限
 
-                 limitUse:0,//是否限定,在这里固定传0
 
-             }
 
-         }).done(function (data) {
 
-             if (!data.error.length) {
 
-                 message.success('新增成功!');
 
-                 this.setState({
 
-                     loading: false,
 
-                     visitModul: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));
 
-     },
 
-     //点击整行
 
- //  tableRowClick(record, index) {
 
- //      this.state.RowData = record;
 
- //      this.setState({
 
- //          visitModul: true
 
- //      });
 
- //  },
 
-     addClick() {
 
-         this.state.RowData = {};
 
-         this.setState({
 
-             visitModul: true
 
-         });
 
-     },
 
-     closeDesc(e, s) {
 
-         this.state.showDesc = e;
 
-         if (s) {
 
-             this.loadData(this.state.page);
 
-         };
 
-     },
 
-     //详情打开
 
- 	visitOk(e) {
 
- 		this.setState({
 
- 			visitModul: false
 
- 		});
 
- 	},
 
- 	//详情关闭
 
- 	visitCancel(e) {
 
- 		this.state.fileList = [];
 
- 		this.setState({
 
- 			visitModul: false,
 
- 		});
 
- 	},
 
-     search() {
 
-         this.loadData();
 
-     },
 
-     reset() {
 
-         this.state.name = '';
 
-         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 FormItem = Form.Item;
 
-         const { RangePicker } = DatePicker;
 
-         const hasSelect = this.state.selectedRowKeys.length;
 
-         const formItemLayout = {
 
- 			labelCol: { span: 6 },
 
- 			wrapperCol: { span: 14 },
 
- 		};
 
- 		const hasSelected = this.state.selectedRowKeys.length > 0;
 
-         return (
 
-             <div className="user-content" >
 
-                 <div className="content-title">
 
-                     <span>通用券管理</span>
 
-                 </div>
 
-                 <div className="user-search">
 
-               	  	<Button type="primary" onClick={this.addClick} style={{float:'right'}}>新增通用劵<Icon type="plus" /></Button>
 
-                     <Input placeholder="劵面名称"
 
-                         value={this.state.name}
 
-                         onChange={(e) => { this.setState({ name: e.target.value }); }} />
 
-                     <Button type="primary" onClick={this.search}>搜索</Button>
 
-                     <Button onClick={this.reset}>重置</Button>
 
-                     <Button type="primary" onClick={this.block} disabled={!hasSelected}>停用<Icon type="plus" /></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}
 
-                             onRowClick={this.tableRowClick} />
 
-                     </Spin>
 
-                 </div>
 
-                 <NewDesc
 
-                     data={this.state.RowData}
 
-                     showDesc={this.state.showDesc}
 
-                     closeDesc={this.closeDesc} />
 
-                 <Modal	
 
- 				      className="customeDetails"
 
- 				      footer=''
 
- 			          title="新增抵用券"
 
- 			          width='600px'
 
- 			          visible={this.state.visitModul}
 
- 			          onOk={this.visitOk}
 
- 					  onCancel={this.visitCancel}							          							          
 
- 			        >	
 
- 			    	<Form layout="horizontal" onSubmit={this.newSubmit} id="demand-form">
 
- 	                	<Spin spinning={this.state.loading}>
 
- 	                		<div className="clearfix" >
 
- 		                		<FormItem 
 
- 				                     {...formItemLayout}
 
- 				                    label="劵面名称"
 
- 			                        >
 
- 		                    	 	<Input placeholder="券面名称"  value={this.state.newName} onChange={(e) => {
 
- 			                        this.setState({ newName:  e.target.value }) }} />
 
- 		                    	 </FormItem>
 
- 		                    	 <FormItem 
 
- 				                     {...formItemLayout}
 
- 				                    label="关联项目"
 
- 			                        >
 
- 		                    	 	
 
- 	                                <Input placeholder="请输入关联项目关键字"  value={this.state.source} style={{width:'80%'}} onChange={(e) => {
 
- 			                        this.setState({ source:  e.target.value }) }} />
 
- 			                        <span>搜索</span>
 
- 		                    	 </FormItem>
 
- 		                    	 <FormItem 
 
- 				                     {...formItemLayout}
 
- 				                    label="面额"
 
- 			                        >
 
- 		                    	 	<Input placeholder="面额" style={{width:'95%'}} value={this.state.money} onChange={(e) => {
 
- 			                        this.setState({ money:  e.target.value }) }} /> 元
 
- 		                    	 </FormItem>
 
- 		                    	 <FormItem 
 
- 				                     {...formItemLayout}
 
- 				                    label="使用期限"
 
- 			                        >
 
- 		                    	 	<Input placeholder="使用期限" style={{width:'95%'}} value={this.state.durationDay} onChange={(e) => {
 
- 			                        this.setState({ durationDay:  e.target.value }) }} /> 天
 
- 		                    	 </FormItem>
 
- 	                    	 </div>
 
- 	                    	 <Button className="setSubmit" type="primary" htmlType="submit" style={{marginLeft:'150px'}}>保存</Button>  
 
- 					         <Button  type="ghost" onClick={this.visitCancel}  style={{marginLeft:'100px'}}>取消</Button>
 
- 	                	</Spin>
 
- 					</Form>	
 
- 			    </Modal>
 
-             </div>
 
-         );
 
-     }
 
- });
 
- export default DemandList;
 
 
  |