/* eslint-disable array-callback-return,no-undef */ import React, { Component } from 'react'; import { Form } from '@ant-design/compatible'; // import '@ant-design/compatible/assets/index.css'; import { Layout, Spin, Button, Row, Col } from 'antd-v4'; import CommonListEvent from './CommonListEvent';/* 继承销售模块业务功能 */ import * as commonFunc from './commonFunc';/* 通用单据方法 */ /* 通用单据方法 */ import StaticEditTable from './CommonTable';/* 可编辑表格 */ import CommonBase from './CommonBase';/* 获取配置及数据 */ import * as commonBusiness from './commonBusiness';/* 单据业务功能 */ import SearchComponent from './SearchComponent';/* 搜索组件 */ import commonConfig from '../../utils/config'; const { Content } = Layout; class ProductionPlanChangeMachineInfoComponent extends Component { constructor(props) { super(props); this.state = { }; } /** 确认下单 */ handleSelect = () => { const { slaveSelectedData, app } = this.props; this.props.app.currentPane.select(app.currentPane.name, app.currentPane.config, slaveSelectedData); this.props.app.currentPane.selectCancel(app.currentPane.name); }; /** 关闭 */ handleCancelModal = () => { const { app } = this.props; this.props.app.currentPane.selectCancel(app.currentPane.name); }; // ----------------------------数据修改回带end ---------------------------- // render() { const { pageLoading } = this.props; return (