| 123456789101112131415161718 | import React, { Component } from "react";import ContractChange from "../../order/orderNew/contractCwjl.js";class ContractChangeCwjl extends Component {  constructor(props) {    super(props);    this.state = {      processState: 5    };  }  render() {    return <ContractChange processState={this.state.processState} />;  }}export default ContractChangeCwjl;
 |