| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559 | import React from 'react';import { Table, Modal, message, Spin, Input, Select, Button, Radio, Form, Upload, Popconfirm, AutoComplete, DatePicker } from 'antd';import $ from 'jquery/src/ajax';import '../../userMangagement.less';import { splitUrl, getOrderType, getProjectState, getOrderState, getTransactionProject, getChangeState, getPaymentState, getOrderChannel, getApprovedState, getTransactionChannel, beforeUploadFile } from '../../../../tools.js';import ImgList from "../../../../common/imgList";import EnterpriseNameChange from "../../../../common/enterpriseNameChange";const NewService = Form.create()(React.createClass({	loadData(record) {		this.state.data = [];		this.setState({			loading: true		});		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/getOrderCommodity',			data: {				orderNo: record ? record.orderNo : this.props.datauser.orderNo			},			success: function (data) {				let theArr = [];				if (!data.data) {					if (data.error && data.error.length) {						message.warning(data.error[0].message);					};				} else {					for (let i = 0; i < data.data.length; i++) {						let thisdata = data.data[i];						theArr.push({							key: i,							id: thisdata.id,							orderNo: thisdata.orderNo,							commodityName: thisdata.commodityName,							commodityType: thisdata.commodityType,							commodityMode: thisdata.commodityMode,							commodityQuantity: thisdata.commodityQuantity,							commodityPrice: thisdata.commodityPrice,							discountPrice: thisdata.discountPrice,							commodityFirstPayment: thisdata.commodityFirstPayment,							createTimes: thisdata.createTimes,							discountFirstPayment: thisdata.discountFirstPayment,							remarks: thisdata.remarks,						});					};				}				this.setState({					dataSource: theArr,					pagination: false,				});			}.bind(this),		}).always(function () {			this.setState({				loading: false			});		}.bind(this));	},	getInitialState() {		return {			loading: false,			visible: false,			orgCodeUrl: [],			lookState: false,			checkedKeys: [],			lookflowList: [],			editFw: [],			signBillVisible: false,			commod: '',			columns: [				{					title: '业务项目名称',					dataIndex: 'commodityName',					key: 'commodityName',					render: (text, record) => {						return (								<span>{text}<span style={{ color: "red" }}>{record.patentTypeName}</span></span>						)				}				}, {					title: '项目类别',					dataIndex: 'commodityType',					key: 'commodityType',					render: (text) => {						return (getOrderType(text))					}				}, {					title: '项目数量',					dataIndex: 'commodityQuantity',					key: 'commodityQuantity'				}, {					title: '服务市价(万元)',					dataIndex: 'commodityPrice',					key: 'commodityPrice'				}, {					title: '实签价格(万元)',					dataIndex: 'discountPrice',					key: 'discountPrice'				}, {					title: '下单时间',					dataIndex: 'createTimes',					key: 'createTimes'				}, {					title: '项目说明',					dataIndex: 'remarks',					key: 'remarks',					render: (text) => {						return (text && text.length > 8 ? text.substr(0, 8) + '…' : text)					}				}, {					title: '操作',					dataIndex: 'ABC',					key: 'ABC',					render: (text, record) => {						return <div style={{ display: this.props.datauser.active.applySign || this.state.changeStatus == 1 ? 'block' : 'none' }}>							<Popconfirm title="是否删除?" onConfirm={() => { this.delectRow(record) }} okText="是" cancelText="否">								<Button onClick={(e) => { e.stopPropagation() }} type="danger">删除</Button>							</Popconfirm>						</div>					}				},			],			flowList: [				{					title: '平台流水号',					dataIndex: 'billNo',					key: 'billNo',				}, {					title: '平台流水时间',					dataIndex: 'createTime',					key: 'createTime'				}, {					title: '流水金额(万元)',					dataIndex: 'transactionAmount',					key: 'transactionAmount'				}, {					title: '付款人名称',					dataIndex: 'payerName',					key: 'payerName'				}, {					title: '收款人名称',					dataIndex: 'payeeName',					key: 'payeeName'				},				{					title: '流水科目',					dataIndex: 'transactionSubject',					key: 'transactionSubject',					render: (text) => { return getTransactionProject(text) }				}, {					title: '流水外联',					dataIndex: 'transactionChannel',					key: 'transactionChannel',					render: (text) => { return getTransactionChannel(text) }				}, {					title: '财务流水号',					dataIndex: 'financialPayNo',					key: 'financialPayNo',				}, {					title: '财务流水时间',					dataIndex: 'financialPayTime',					key: 'financialPayTime',				}, {					title: '流水确认',					dataIndex: 'confirmSign',					key: 'confirmSign',					render: (text) => { return text ? '已确认' : '待确认' }				}, {					title: '确认时间',					dataIndex: 'confirmTime',					key: 'confirmTime',				}			]		};	},	//新建订单、编辑订单保存	handleSubmit(e) {		e.preventDefault();		if (this.props.userDetaile) {			if (!this.state.signTotalAmount) {				message.warning('请输入实签订单金额!');				this.refs.signFirstPayment.focus()				return false;			};			if (!this.state.signFirstPayment) {				message.warning('实签首款金额不能为空');				this.refs.signFirstPayment.focus()				return false;			};		} else {			if (this.state.orderType == undefined) {				message.warning('请选择订单类型');				return false;			}			if (this.state.autoId == undefined || !this.state.autoId) {				message.warning('客户名称不匹配');				return false;			};		}		this.props.form.validateFields((err) => {			if (!err) {				this.setState({					loading: true				});				let api = this.props.userDetaile ? '/api/admin/order/updateServiceOrder' : '/api/admin/order/createOrder';				$.ajax({					method: "POST",					dataType: "json",					crossDomain: false,					url: globalConfig.context + api,					data: !this.props.userDetaile ? {						uid: this.state.autoId,						orderType: this.state.orderType					} : {						orderNo: this.props.datauser.orderNo,						//						firstPayment:this.state.firstPayment,						//						orderAmount:this.state.orderAmount,						signTotalAmount: this.state.signTotalAmount,						signFirstPayment: this.state.signFirstPayment,						orderRemarks: this.state.orderRemarks,						contractNo: this.state.contractNo					}				}).done(function (data) {					this.setState({						loading: false					});					if (!data.error.length) {						message.success('保存成功!');						this.handleOk()					} else {						message.warning(data.error[0].message);					}				}.bind(this));			}		});	},	//查看基本详情基本信息	loaduser(record) {		this.state.orderList = [];		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/getServiceOrderDetail',			data: {				orderNo: record ? record.orderNo : this.props.datauser.orderNo			},			success: function (data) {				let thisData = data.data;				if (!thisData) {					if (data.error && data.error.length) {						message.warning(data.error[0].message);					};					thisData = {};				};				this.setState({					orderUid: thisData.buyerId,					id: thisData.id,					orderList: thisData,					changeStatus: thisData.changeStatus,					orderAmount: thisData.orderAmount,					firstPayment: thisData.firstPayment,					signTotalAmount: thisData.signTotalAmount,					signFirstPayment: thisData.signFirstPayment,					approval: thisData.approval == 0 ? thisData.approval.toString() : thisData.approval,					orderRemarks: thisData.orderRemarks,					orgCodeUrl: thisData.contractPictureUrl ? splitUrl(thisData.contractPictureUrl, ',', globalConfig.avatarHost + '/upload') : [],					//签单					orderNo: thisData.orderNo,//订单编号					buyerName: thisData.buyerName,					contractNo: thisData.contractNo				});			}.bind(this),		}).always(function () {			this.setState({				loading: false			});		}.bind(this));	},	handleOk() {		this.setState({			visible: false,		});		this.props.closeDesc(false, true);	},	handleCancel() {		this.setState({			visible: false,		});		this.props.closeDesc(false);	},	//删除	delectRow(record) {		this.setState({			loading: true		});		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + "/api/admin/order/deleteOrderCommodity",			data: {				detailId: record.id			}		}).done(function (data) {			if (!data.error.length) {				message.success('删除成功!');				this.setState({					loading: false,				});			} else {				message.warning(data.error[0].message);			};			this.loadData();		}.bind(this));	},	//添加明细	addDetailed() {		this.setState({			customerArr: [],			commodityName: '',			commodityId: '',			commodityMode: '',			commodityQuantity: '',			commodityPrice: '',			discountPrice: '',			commodityFirstPayment: '',			discountFirstPayment: '',			remarks: '',			addState: 1,			addnextVisible: true		})	},	nextCancel() {		this.setState({			addnextVisible: false		})	},	tableRowClick(record) {		this.setState({			editFw: record,			addnextVisible: true,			addState: 0,		});	},	componentWillMount() {	},	//查看订单详情里面的各种骚操作	//受理订单	admissibleOrderOK() {		let idArr = this.props.datauser;		this.props.admissibleOrder(idArr, true)	},	//拒绝受理	admissibleOrderCancel() {		let idArr = this.props.datauser;		this.props.admissibleOrder(idArr, false)	},	//取消订单	cancelOrder() {		let idArr = this.props.datauser;		this.props.operation(idArr, 3)	},	//作废订单	scrapOrder() {		let idArr = this.props.datauser;		this.props.operation(idArr, 2)	},	//锁定订单	lockOrder() {		let idArr = this.props.datauser;		this.props.operation(idArr, 0)	},	//解锁订单	unlockOrder() {		let idArr = this.props.datauser;		this.props.operation(idArr, 1)	},	//签单	signBitt() {		this.setState({			contractNo: this.state.contractNo,			signVisible: true,			entryTime: undefined,			selTime: undefined		})	},	signBittOk() {		this.setState({			signVisible: false		})	},	signBillOk() {		this.setState({			signBillVisible: false		})	},	signBillCancel() {		this.setState({			signVisible: false,			signBillVisible: false,		});		this.props.closeDesc(false, true);	},	//加载(自动补全)	supervisor(e, state) { //客户名称与服务名称自动补全		let api = state ? '/api/admin/customer/findCustomerByName' : '/api/admin/order/getBusinessProjectByName';		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + api,			data: state ? {				name: e			} : {				businessName: e			},			success: function (data) {				let thedata = data.data;				if (!thedata) {					if (data.error && data.error.length) {						message.warning(data.error[0].message);					};					thedata = {};				};				this.setState({					states: state,					customerArr: thedata,				});			}.bind(this),		}).always(function () {			this.setState({				loading: false			});		}.bind(this));	},	//上级主管输入框失去焦点是判断客户是否存在	selectAuto(value) {		let kid = [];		let fwList = this.state.customerArr;		fwList.map(function (item) {			if (value == item.bname) {				kid = item			}		})		this.setState({			commodityName: value,			gid: kid.id,			commodityPrice: kid.price == 0 ? kid.price.toString() : kid.price,			commodityFirstPayment: kid.firstPayment == 0 ? kid.firstPayment.toString() : kid.firstPayment		})	},	//服务值改变时请求客户名称	httpChange(e) {		this.state.gid = '';		if (e.length >= 1) {			this.supervisor(e, false);		}		this.setState({			commodityName: e		})	},	//新建明细保存	nextSubmit(e) {		e.preventDefault();		if (this.state.gid == undefined || !this.state.gid) {			message.warning('服务名称不匹配!');			return false;		};		if (!this.state.commodityPrice) {			message.warning('请输入市场价格!');			this.refs.commodityPrice.focus();			return false;		};		if (!this.state.discountPrice) {			message.warning('请输入实签价格!');			this.refs.discountPrice.focus();			return false;		};		if (!this.state.commodityQuantity) {			message.warning('请输入商品数量!');			this.refs.commodityQuantity.focus();			return false;		};		if (!this.state.commodityFirstPayment) {			message.warning('请输入市场首付金额!');			this.refs.commodityFirstPayment.focus();			return false;		};		if (!this.state.discountFirstPayment) {			message.warning('请输入签单首付金额!');			this.refs.discountFirstPayment.focus();			return false;		};		this.setState({			loading: true		});		let api = this.state.addState ? '/api/admin/order/addOrderCommodity' : '/api/bianji';		$.ajax({			method: "POST",			dataType: "json",			crossDomain: false,			url: globalConfig.context + api,			data: {				commodityId: this.state.gid,				orderNo: this.props.datauser.orderNo,				commodityName: this.state.commodityName,//商品名称				commodityMode: this.state.commodityMode,//商品规格				commodityQuantity: this.state.commodityQuantity,//商品数量				commodityType: 0,//商品类型				commodityPrice: this.state.commodityPrice,//市场总价				discountPrice: this.state.discountPrice,//签单总价				commodityFirstPayment: this.state.commodityFirstPayment,//市场首付金额				discountFirstPayment: this.state.discountFirstPayment,//签单首付金额				remarks: this.state.remarks,//服务说明			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('保存成功!');				this.nextCancel()				this.loaduser(this.props.datauser);				this.loadData();			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	//签单保存	signOk(e) {		e.preventDefault();		this.temporarySave(false)	},	//暂存信息	temporary() {		this.temporarySave(true)	},	//签单时间选择	selTime(e, index) {		this.setState({			entryTime: e,			selTime: index		})	},	signSub(e) {		e.preventDefault();		if (!this.state.selTime) {			message.warning("请选择签单时间!");			return false;		};		this.setState({			loading: true		});		$.ajax({			method: "POST",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/signServiceOrder',			data: {				orderNo: this.props.datauser.orderNo,				signTotalAmount: this.state.signTotalAmount,				signFirstPayment: this.state.signFirstPayment,				approval: this.state.approval,				orderRemarks: this.state.orderRemarks,				contractNo: this.state.contractNo,				signTime: this.state.selTime			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('操作成功!');				this.signBillCancel()			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	//签单保存与暂存函数	temporarySave(e) {		if (!this.state.signTotalAmount) {			message.warning('实签款项不能为空!')			return false;		};		if (!this.state.signTotalAmount) {			message.warning('实签首款不能为空!')			return false;		};		if (this.state.approval == undefined) {			message.warning('实签首款不能为空!')			return false;		};		if (!this.state.contractNo) {			message.warning("请输入合同编号!");			return false;		}		this.setState({			loading: true		});		let api = e ? '/api/admin/order/updateServiceOrder' : '/api/admin/order/signServiceOrder';		$.ajax({			method: "POST",			dataType: "json",			crossDomain: false,			url: globalConfig.context + api,			data: {				orderNo: this.props.uid ? this.props.uid.orderNo : this.props.datauser.orderNo,				signTotalAmount: this.state.signTotalAmount,				signFirstPayment: this.state.signFirstPayment,				approval: this.state.approval,				orderRemarks: this.state.orderRemarks,				contractNo: this.state.contractNo			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('操作成功!');				this.signBillCancel()			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	lookflow() {		this.setState({			loading: true,			lookVisible: true,		})		this.state.lookSource = [];		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/getBillByOrderNo',			data: {				orderNo: this.props.datauser.orderNo,			},			success: function (data) {				let theArr = [];				if (!data.data) {					if (data.error && data.error.length) {						message.warning(data.error[0].message);					};				} else {					for (let i = 0; i < data.data.length; i++) {						let thisdata = data.data[i];						theArr.push({							key: i,							billNo: thisdata.billNo,							transactionAmount: thisdata.transactionAmount,							createTime: thisdata.createTime,							payerName: thisdata.payerName,							payeeName: thisdata.payeeName,							transactionSubject: thisdata.transactionSubject,							transactionChannel: thisdata.transactionChannel,							financialPayNo: thisdata.financialPayNo,							financialPayTime: thisdata.financialPayTime,							orderNo: thisdata.orderNo,							departmentName: thisdata.departmentName,							salesmanName: thisdata.salesmanName,							financeName: thisdata.financeName,							confirmSign: thisdata.confirmSign,							deleteSign: thisdata.deleteSign,							confirmTime: thisdata.confirmTime						});					};				};				this.setState({					lookflowList: theArr,				});			}.bind(this),		}).always(function () {			this.setState({				loading: false			});		}.bind(this));	},	lookCancel() {		this.setState({			lookVisible: false		})	},	/* -----变更操作开始----- */	//新建变更	addChange() {		this.setState({			addChangeState: true,			stateAdd: 1,			changeRemarks: ''		})	},	//产看变更记录	lookChange() {		this.setState({			addChangeState: true,			stateAdd: 0		})		this.lookChangeData()	},	//查看变更列表修改变更	modifyChangeCancel() {		this.setState({			modifyChangeState: false		})	},	//获取变更记录	lookChangeData() {		this.setState({			loading: true		});		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/viewOrderChange',			data: {				orderNo: this.props.datauser.orderNo,			},			success: function (data) {				let theArr = [];				if (!data.data) {					if (data.error && data.error.length) {						message.warning(data.error[0].message);					};				} else {					for (let i = 0; i < data.data.length; i++) {						theArr = data.data;					};				};				this.setState({					changeHtml: theArr,				});			}.bind(this),		}).always(function () {			this.setState({				loading: false			});		}.bind(this));	},	//添加变更状态	addChangeCancel() {		this.setState({			addChangeState: false		})	},	//新建变更	subChangeState(e) {		e.preventDefault();		this.setState({			loading: true		});		$.ajax({			method: "POST",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/addOrderChange',			data: {				orderNo: this.props.datauser.orderNo,				changeComment: this.state.changeRemarks			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('保存成功!');				this.addChangeCancel();				this.loaduser();			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	//查看修改变更	modifyChange(item) {		this.setState({			modifyChangeState: true,			changePromoter: item.creater,			changeTime: item.createTime,			changeState: item.changeStatus,			changeRemarks: item.changeComment,			idt: item.changeId,			orderNot: item.orderNo		})	},	//删除变更	modifyDelete(item) {		this.setState({			loading: true		});		$.ajax({			method: "get",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/deleteOrderChange',			data: {				changeId: item.changeId,			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('删除成功!');				this.lookChangeData();				this.loaduser()			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	//修改变更保存	changeModify(e) {		e.preventDefault();		this.setState({			loading: true		});		$.ajax({			method: "POST",			dataType: "json",			crossDomain: false,			url: globalConfig.context + '/api/admin/order/updateOrderChange',			data: {				changeId: this.state.idt,				changeStatus: this.state.changeState,				changeComment: this.state.changeRemarks			}		}).done(function (data) {			this.setState({				loading: false			});			if (!data.error.length) {				message.success('保存成功!');				this.modifyChangeCancel();				this.lookChangeData();				this.loaduser()			} else {				message.warning(data.error[0].message);			}		}.bind(this));	},	/*-----变更操作结束----*/	componentWillReceiveProps(nextProps) { //props改变时触发		this.state.visible = nextProps.showDesc;		this.state.signBillVisible = nextProps.signBillVisible;		if (this.state.signBillVisible) {			this.loaduser(nextProps.uid)		};		if (nextProps.userDetaile && nextProps.showDesc) {			this.loaduser(nextProps.datauser);			this.loadData(nextProps.datauser);		} else {			this.setState({				orderType: undefined,				customerName: '',				autoId: '',				customerArr: []			})		}	},	render() {		const FormItem = Form.Item		const formItemLayout = {			labelCol: { span: 8 },			wrapperCol: { span: 14 },		};		const changeHtml = this.state.changeHtml || [];		const editFws = this.state.editFw;		const orderDetaiel = this.state.orderList || []		const dataSources = this.state.customerArr || [];		const options = this.state.states ? dataSources.map((group, index) =>			<Select.Option key={index} value={group.name}>{group.name}</Select.Option>		) : dataSources.map((group) =>			<Select.Option key={group.id} value={group.bname}>{group.bname}</Select.Option>		)		return (			<div>				{this.state.visible ? <Modal maskClosable={false} visible={this.state.visible}					onOk={this.handleOk} onCancel={this.handleCancel}					width={!this.props.userDetaile ? '600px' : '1000px'}					title={!this.props.userDetaile ? '创建订单' : '编辑订单'}					footer=''					className="admin-desc-content">					<Form layout="horizontal" onSubmit={this.handleSubmit} id="demand-form" style={{ paddingBottom: '40px' }} >						<Spin spinning={this.state.loading}>							<div className="clearfix">								{!this.props.userDetaile ? <div></div> :									<div className="clearfix">										<FormItem className="half-item"											{...formItemLayout}											label="订单编号" >											<span>{orderDetaiel.orderNo}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="下单时间" >											<span>{orderDetaiel.createTime}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="客户名称" >											<span>												{orderDetaiel.buyerName}												<EnterpriseNameChange													type='journal'													style={{ marginLeft: 10 }}													enterpriseId={this.state.orderUid} />											</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="订单类型" >											<span>{getOrderType(orderDetaiel.orderType)}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="订单外联" >											<span>{getOrderChannel(orderDetaiel.orderChannel)}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="订单状态" >											<span>{getOrderState(orderDetaiel.orderStatus)}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="已收款项" >											<span>{orderDetaiel.actuallyTotalAmount + '万元'}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="结算状态" >											<span>{getPaymentState(orderDetaiel.liquidationStatus)}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="市价订单金额" >											<span>{orderDetaiel.orderAmount + '万元'}</span>										</FormItem>										<FormItem className="half-item"											{...formItemLayout}											label="市价首款金额" >											<span>{orderDetaiel.firstPayment + '万元'}</span>										</FormItem>										{orderDetaiel.deleteSign == 0 && orderDetaiel.orderStatus == 2 || orderDetaiel.changeStatus == 1 ?											<div className='clearfix'>												<FormItem className="half-item"													{...formItemLayout}													label="实签订单金额(万元)" >													<Input placeholder="实签订单金额" ref='signTotalAmount' value={this.state.signTotalAmount} onChange={(e) => { this.setState({ signTotalAmount: e.target.value }) }} style={{ width: '240px' }} />													<span className="mandatory">*</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="实签首款金额(万元)" >													<Input placeholder="请输入实签首款金额" ref='signFirstPayment' value={this.state.signFirstPayment} onChange={(e) => { this.setState({ signFirstPayment: e.target.value }) }} style={{ width: '240px' }} />													<span className="mandatory">*</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="特批立项" >													<span>{getApprovedState(this.state.approval)}</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="合同编号" >													<Input placeholder="请输入合同编号" value={this.state.contractNo}														onChange={(e) => { this.setState({ contractNo: e.target.value }) }} style={{ width: '240px' }} />												</FormItem>												<div className='clearfix'>													<FormItem														labelCol={{ span: 4 }}														wrapperCol={{ span: 16 }}														label="订单留言" >														<Input type="textarea" placeholder="请输入订单留言" rows={4} value={this.state.orderRemarks}															onChange={(e) => { this.setState({ orderRemarks: e.target.value }) }} />													</FormItem>												</div>												<div className='clearfix'>													<div className="changeStatusTxt">														<FormItem className="half-item"															{...formItemLayout}															style={{ color: 'red' }}															label="变更状态" >															<span>{getChangeState(orderDetaiel.changeStatus)}</span>														</FormItem>													</div>													{orderDetaiel.orderStatus >= 3 && <div className="clearfix">														<FormItem className="half-item"															{...formItemLayout}															label="变更操作" >															<Button onClick={this.addChange}>添加变更</Button>														</FormItem>														<FormItem className="half-item"															{...formItemLayout}															label="变更操作" >															<Button onClick={this.lookChange}>查看变更纪录</Button>														</FormItem>													</div>}												</div>											</div> :											<div className='clearfix'>												<FormItem className="half-item"													{...formItemLayout}													label="实签订单金额" >													<span>{orderDetaiel.signTotalAmount + '万元'}</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="实签首款金额" >													<span>{orderDetaiel.signFirstPayment + '万元'}</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="特批立项" >													<span>{getApprovedState(orderDetaiel.approval)}</span>												</FormItem>												<FormItem className="half-item"													{...formItemLayout}													label="合同编号" >													<span>{orderDetaiel.contractNo}</span>												</FormItem>												<div className="clearfix">													<FormItem														labelCol={{ span: 4 }}														wrapperCol={{ span: 18 }}														label="合同扫描件" >														<div className="clearfix">															{/*<Upload className="demandDetailShow-upload"*/}															{/*    beforeUpload={beforeUploadFile}*/}															{/*    listType="picture-card"*/}															{/*    fileList={this.state.orgCodeUrl}*/}															{/*    onPreview={(file) => {*/}															{/*        this.setState({*/}															{/*            previewImage: file.url || file.thumbUrl,*/}															{/*            previewVisible: true,*/}															{/*        });*/}															{/*    }} />*/}															{this.state.orgCodeUrl && this.state.visible ? <div style={{ paddingTop: '10px', paddingBottom: '10px' }}>																<ImgList fileList={this.state.orgCodeUrl} />															</div> : <div />}															<Modal maskClosable={false} footer={null}																visible={this.state.previewVisible}																onCancel={() => { this.setState({ previewVisible: false }) }}>																<img alt="" style={{ width: '100%' }} src={this.state.previewImage || ''} />															</Modal>														</div>													</FormItem>												</div>												<div className='clearfix'>													<FormItem														labelCol={{ span: 4 }}														wrapperCol={{ span: 16 }}														label="订单留言" >														<p															style={{ width: 500, wordWrap: "break-word" }}														>															{this.state.orderRemarks}														</p>													</FormItem>												</div>												<div className='clearfix changeStatusTxt'>													<FormItem className="half-item"														{...formItemLayout}														style={{ color: 'red' }}														label="变更状态" >														<span>{getChangeState(orderDetaiel.changeStatus)}</span>													</FormItem>												</div>												{orderDetaiel.orderStatus >= 3 && <div className="clearfix">													<FormItem className="half-item"														{...formItemLayout}														label="变更操作" >														<Button onClick={this.addChange}>添加变更</Button>													</FormItem>													<FormItem className="half-item"														{...formItemLayout}														label="变更操作" >														<Button onClick={this.lookChange}>查看变更纪录</Button>													</FormItem>												</div>}											</div>}										<div className='clearfix'>											<FormItem className="half-item"												{...formItemLayout}												label="订单负责人" >												<span>{orderDetaiel.salesmanName}</span>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="业务品类" >												<span>{orderDetaiel.projectType}</span>											</FormItem>										</div>										<div className='clearfix'>											<FormItem className="half-item"												{...formItemLayout}												label="意向时间" >												<span>{orderDetaiel.createTime}</span>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="签单时间" >												<span>{orderDetaiel.signTime}</span>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="财务负责人" >												<span>{orderDetaiel.financeName}</span>												<Button onClick={this.lookflow} style={{ float: 'right' }}>查看流水</Button>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="项目负责人" >												<span>{orderDetaiel.technicianName}</span>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="立项时间" >												<span>{orderDetaiel.setUpTime}</span>											</FormItem>											<FormItem className="half-item"												{...formItemLayout}												label="项目状态" >												<span>{getProjectState(orderDetaiel.projectStage)}</span>											</FormItem>										</div>										<div>											<span style={{ marginLeft: '50px', fontSize: '20px' }}>项目业务</span>											{this.props.datauser.active.applySign || orderDetaiel.changeStatus == 1 ? <Button type='primary' onClick={this.addDetailed} style={{ float: 'right', marginRight: '50px', marginBottom: '15px', display: true ? 'block' : 'none' }}>添加明细</Button> : ''}										</div>										<div className="patent-table">											<Spin spinning={this.state.loading}>												<Table size="middle" columns={this.state.columns}													dataSource={this.state.dataSource}													pagination={this.state.pagination}													onRowClick={this.tableRowClick}												/>											</Spin>										</div>									</div>}								<div className='addSave' style={{ marginTop: '15px' }}>									{!this.props.userDetaile || orderDetaiel.deleteSign == 0 && orderDetaiel.orderStatus == 2 || orderDetaiel.changeStatus == 1 ? <Button className="setSave" type="primary" htmlType="submit">保存</Button> : ''}									{this.props.userDetaile ? <div className='operations'>										{this.props.datauser.active.confirmIntention && <Popconfirm title={'请确认您是否受理来自【' + this.props.datauser.buyerName + '】发起的服务意向订单?'} onConfirm={() => { this.admissibleOrderOK() }} onCancel={() => { this.admissibleOrderCancel() }} okText="同意" cancelText="拒绝">											<Button style={{ marginRight: '15px', marginLeft: '200px' }} type="primary">受理意向</Button>										</Popconfirm>}										{this.props.datauser.active.applySign && <Button style={{ marginRight: '10px' }} onClick={() => { this.signBitt() }} type="primary">签单</Button>}										{this.props.datauser.active.applyForCancel && <Popconfirm title={'请确认您是否取消客户【' + this.props.datauser.buyerName + '】的服务订单,订单取消将导致业务终止!'} onConfirm={() => { this.cancelOrder() }} okText="确认" cancelText="取消">											<Button style={{ marginRight: '10px' }} type="danger">取消订单</Button>										</Popconfirm>}										{this.props.datauser.active.applyRevoke && <Popconfirm title={'请确认您是否作废客户【' + this.props.datauser.buyerName + '】的服务订单,订单作废将导致订单失效!'} onConfirm={() => { this.scrapOrder() }} okText="确认" cancelText="取消">											<Button style={{ marginRight: '10px', marginLeft: '200px' }} type="danger">作废</Button>										</Popconfirm>}										{this.props.datauser.active.applyLock && <Popconfirm title={'请确认您是否锁定客户【' + this.props.datauser.buyerName + '】的服务订单,订单锁定将导致订单暂停!'} onConfirm={() => { this.lockOrder() }} okText="确认" cancelText="取消">											<Button style={{ marginRight: '10px', marginLeft: '200px' }} type="danger">锁定</Button>										</Popconfirm>}										{this.props.datauser.active.applyUnLock && <Popconfirm title={'请确认您是否解锁客户【' + this.props.datauser.buyerName + '】的服务订单,订单解锁将导致订单正常!'} onConfirm={() => { this.unlockOrder() }} okText="确认" cancelText="取消">											<Button style={{ marginRight: '10px', marginLeft: '200px' }} type="primary">解锁</Button>										</Popconfirm>}									</div> : ''}									<Button className="cancel" type="ghost" onClick={this.handleCancel} style={{ float: 'right', marginRight: '200px' }}>返回</Button>								</div>							</div>						</Spin>					</Form >				</Modal> : <div />}				<Modal maskClosable={false} visible={this.state.addnextVisible}					onOk={this.nextCancel} onCancel={this.nextCancel}					width='800px'					title={this.state.addState ? '添加服务' : '查看服务'}					footer=''					className="admin-desc-content">					<Form layout="horizontal" onSubmit={this.nextSubmit} id="demand-form">						<Spin spinning={this.state.loading}>							{this.state.addState ? <div className="clearfix">								<FormItem className="half-item"									{...formItemLayout}									label="服务名称" >									<AutoComplete										className="certain-category-search"										dropdownClassName="certain-category-search-dropdown"										dropdownMatchSelectWidth={false}										dropdownStyle={{ width: 200 }}										style={{ width: '200px' }}										dataSource={options}										placeholder="输入服务名称"										value={this.state.commodityName}										onChange={this.httpChange}										filterOption={true}										onSelect={this.selectAuto}									>										<Input />									</AutoComplete>									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="市场价格(万元)" >									<span>{this.state.commodityPrice}</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="实签价格(万元)" >									<Input placeholder="请输入实签价格" value={this.state.discountPrice} style={{ width: '200px' }}										onChange={(e) => { this.setState({ discountPrice: e.target.value }) }} ref="discountPrice" />									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="服务数量" >									<Input placeholder="请输入服务数量" value={this.state.commodityQuantity} style={{ width: '200px' }}										onChange={(e) => { this.setState({ commodityQuantity: e.target.value }) }} ref="commodityQuantity" />									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="市场首付金额(万元)" >									<span>{this.state.commodityFirstPayment}</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="签单首付金额(万元)" >									<Input placeholder="请输入签单首付金额" value={this.state.discountFirstPayment} style={{ width: '200px' }}										onChange={(e) => { this.setState({ discountFirstPayment: e.target.value }) }} ref='discountFirstPayment' />									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="商品规格" >									<Input placeholder="请输入实签价格" value={this.state.commodityMode} style={{ width: '200px' }}										onChange={(e) => { this.setState({ commodityMode: e.target.value }) }} />								</FormItem>								<div className='clearfix'>									<FormItem										labelCol={{ span: 4 }}										wrapperCol={{ span: 16 }}										label="服务说明" >										<Input type='textarea' placeholder="请输入服务说明" value={this.state.remarks}											onChange={(e) => { this.setState({ remarks: e.target.value }) }} />									</FormItem>								</div>								<FormItem wrapperCol={{ span: 12, offset: 4 }} className="half-middle">									<Button className="submitSave" type="primary" htmlType="submit">保存</Button>									<Button className="submitSave" type="ghost" onClick={this.nextCancel}>取消</Button>								</FormItem>							</div> :								<div className='clearfix'>									<FormItem className="half-item"										{...formItemLayout}										label="服务名称" >										<span>{editFws.commodityName}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="市场价格" >										<span>{editFws.commodityPrice}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="实签价格" >										<span>{editFws.discountPrice + '万元'}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="服务数量" >										<span>{editFws.commodityQuantity}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="商品规格" >										<span>{editFws.commodityMode}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="市场首付金额" >										<span>{editFws.commodityFirstPayment + '万元'}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="签单首付金额" >										<span>{editFws.discountFirstPayment + '万元'}</span>									</FormItem>									<div className='clearfix'>										<FormItem											labelCol={{ span: 4 }}											wrapperCol={{ span: 16 }}											label="服务说明" >											<span>{editFws.remarks}</span>										</FormItem>									</div>								</div>}						</Spin>					</Form >				</Modal>				<Modal maskClosable={false} visible={this.state.signBillVisible}					onOk={this.signBillOk} onCancel={this.signBillOk}					width='800px'					title='签单信息'					footer=''					className="admin-desc-content">					<Form layout="horizontal" onSubmit={this.signOk} id="demand-form">						<Spin spinning={this.state.loading}>							<div className="clearfix">								<FormItem className="half-item"									{...formItemLayout}									label="订单编号" >									<span>{this.state.orderNo}</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="客户名称" >									<span>										{this.state.buyerName}										<EnterpriseNameChange											type='journal'											style={{ marginLeft: 10 }}											enterpriseId={this.state.orderUid} />									</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="实签款项(万元)" >									<Input placeholder="请输入实签款项" value={this.state.signTotalAmount} style={{ width: '200px' }}										onChange={(e) => { this.setState({ signTotalAmount: e.target.value }) }} />									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="实签首款(万元)" >									<Input placeholder="请输入实签首款" value={this.state.signFirstPayment} style={{ width: '200px' }}										onChange={(e) => { this.setState({ signFirstPayment: e.target.value }) }} />									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="特批立项" >									<Select placeholder="选择特批立项类型"										style={{ width: '200px' }}										value={this.state.approval}										onChange={(e) => { this.setState({ approval: e }) }}>										<Select.Option value='0'>不申请特批</Select.Option>										<Select.Option value='1'>申请特批</Select.Option>									</Select>									<span className="mandatory">*</span>								</FormItem>								<FormItem className="half-item"									{...formItemLayout}									label="合同编号" >									<Input placeholder="请输入合同编号" value={this.state.contractNo}										onChange={(e) => { this.setState({ contractNo: e.target.value }) }} style={{ width: '200px' }} />									<span className="mandatory">*</span>								</FormItem>								<div className='clearfix'>									<FormItem										labelCol={{ span: 4 }}										wrapperCol={{ span: 16 }}										label="签单备注" >										<Input type="textarea" placeholder="请输入签单备注" rows={4} value={this.state.orderRemarks}											onChange={(e) => { this.setState({ orderRemarks: e.target.value }) }} />									</FormItem>								</div>							</div>							<FormItem wrapperCol={{ span: 12, offset: 4 }} className="half-middle">								{/*<Button className="submitSave" type="primary" onClick={this.temporary}>暂存信息</Button>*/}								<Button className="submitSave" type="primary" htmlType="submit">确定签单</Button>								<Button className="submitSave" type="ghost" onClick={this.signBillOk}>返回</Button>							</FormItem>						</Spin>					</Form >				</Modal>				<Modal maskClosable={false} visible={this.state.signVisible}					onOk={this.signBittOk} onCancel={this.signBittOk}					width='600px'					title='签单信息'					footer=''					className="admin-desc-content">					<Form layout="horizontal" onSubmit={this.signSub} id="demand-form">						<Spin spinning={this.state.loading}>							<div className="clearfix">								<FormItem									{...formItemLayout}									label="特批立项" >									<Select placeholder="选择特批立项类型"										style={{ width: '200px' }}										value={this.state.approval}										onChange={(e) => { this.setState({ approval: e }) }}>										<Select.Option value='0'>不申请特批</Select.Option>										<Select.Option value='1'>申请特批</Select.Option>									</Select>									<span className="mandatory">*</span>								</FormItem>							</div>							<div className="clearfix">								<FormItem									{...formItemLayout}									label="签单时间" >									<DatePicker										style={{ marginTop: "2px" }}										showTime										format="YYYY-MM-DD"										placeholder="选择签单时间"										value={this.state.entryTime}										onChange={(e, time) => { this.selTime(e, time) }}									/><span className="mandatory">*</span>								</FormItem>							</div>							<FormItem wrapperCol={{ span: 12, offset: 4 }} className="half-middle">								<Button className="submitSave" type="primary" htmlType="submit">确定签单</Button>								<Button className="submitSave" type="ghost" onClick={this.signBittOk}>返回</Button>							</FormItem>						</Spin>					</Form >				</Modal>				<Modal maskClosable={false} visible={this.state.lookVisible}					onOk={this.lookCancel} onCancel={this.lookCancel}					width='1300px'					title='查看流水'					footer=''					className="admin-desc-content">					<Form layout="horizontal" id="demand-form">						<Spin spinning={this.state.loading}>							<div className="clearfix">								<Table columns={this.state.flowList}									dataSource={this.state.lookflowList}									pagination={false}								/>							</div>						</Spin>					</Form >				</Modal>				<Modal maskClosable={false} visible={this.state.addChangeState}					onOk={this.addChangeCancel} onCancel={this.addChangeCancel}					width='800px'					title={this.state.stateAdd ? '添加变更' : '查看变更记录'}					footer=''					className="admin-desc-content">					<Form layout="horizontal" id="demand-form">						<Spin spinning={this.state.loading}>							<div className="clearfix">								{this.state.stateAdd ? <div className="clearfix">									<FormItem										labelCol={{ span: 4 }}										wrapperCol={{ span: 16 }}										label="变更说明" >										<Input type="textarea" placeholder="请输入变更说明" rows={4} value={this.state.changeRemarks}											onChange={(e) => { this.setState({ changeRemarks: e.target.value }) }} />									</FormItem>									<div className="clearfix">										<Button type="primary" onClick={this.subChangeState} style={{ margin: "10px 50px 10px 128px" }}>保存</Button>										<Button onClick={this.addChangeCancel}>取消</Button>									</div>								</div> :									<div>										{											changeHtml.length ? changeHtml.map(function (item, index) {												return (<div className="changeBorder" key={index}>													<FormItem className="half-item"														{...formItemLayout}														label="变更发起人" >														<span>{item.creater}</span>													</FormItem>													<FormItem className="half-item"														{...formItemLayout}														label="变更申请时间" >														<span>{item.createTime}</span>													</FormItem>													<div className='clearfix'>														<FormItem className="half-item"															{...formItemLayout}															label="变更状态" >															<span>{getChangeState(item.changeStatus)}</span>														</FormItem>														<FormItem className="half-item"															{...formItemLayout}															label="变更操作" >															<Button onClick={() => { this.modifyChange(item) }}>修改</Button>															{/*<Button type="danger" onClick={(e)=>{this.modifyDelete(item)}}>删除</Button>*/}														</FormItem>													</div>													<div className='clearfix changeRemark'>														<FormItem															labelCol={{ span: 4 }}															wrapperCol={{ span: 16 }}															label="变更说明" >															<p>{item.changeComment}</p>														</FormItem>													</div>												</div>)											}, this) : <p style={{ textAlign: "center" }}>暂无变更记录</p>}									</div>								}							</div>						</Spin>					</Form >				</Modal>				<Modal maskClosable={false} visible={this.state.modifyChangeState}					onOk={this.modifyChangeCancel} onCancel={this.modifyChangeCancel}					width='600px'					title="修改变更  "					footer=''					className="admin-desc-content">					<Form layout="horizontal" id="demand-form">						<Spin spinning={this.state.loading}>							<div className="clearfix">								<div className="clearfix">									<FormItem className="half-item"										{...formItemLayout}										label="变更发起人" >										<span>{this.state.changePromoter}</span>									</FormItem>									<FormItem className="half-item"										{...formItemLayout}										label="变更申请时间" >										<span>{this.state.changeTime}</span>									</FormItem>									<div className='clearfix'>										<FormItem											labelCol={{ span: 4 }}											wrapperCol={{ span: 16 }}											label="变更状态" >											<Radio.Group onChange={(e) => { this.setState({ changeState: e.target.value }) }} value={this.state.changeState}>												<Radio value={1}>变更中</Radio>												<Radio value={2}>变更完成</Radio>											</Radio.Group>										</FormItem>									</div>									<div className='clearfix'>										<FormItem											labelCol={{ span: 4 }}											wrapperCol={{ span: 16 }}											label="变更说明" >											<Input type="textarea" placeholder="请输入变更说明" rows={4} value={this.state.changeRemarks}												onChange={(e) => { this.setState({ changeRemarks: e.target.value }) }} />										</FormItem>									</div>									<div className="clearfix">										<Button type="primary" onClick={this.changeModify} style={{ margin: "10px 95px" }}>保存</Button>										<Button onClick={this.modifyChangeCancel}>取消</Button>									</div>								</div>							</div>						</Spin>					</Form >				</Modal>			</div>		)	}}));export default NewService;
 |