|
@@ -6662,8 +6662,8 @@ const NewService = Form.create()(
|
|
|
{this.state.processStatus === 0 ? (
|
|
|
<div className="clearfix">
|
|
|
<FormItem
|
|
|
- className="half-item"
|
|
|
- {...formItemLayout}
|
|
|
+ labelCol={{ span: 5 }}
|
|
|
+ wrapperCol={{ span: 19 }}
|
|
|
label="特批立项"
|
|
|
>
|
|
|
<Select
|
|
@@ -6694,10 +6694,10 @@ const NewService = Form.create()(
|
|
|
}
|
|
|
</FormItem>
|
|
|
|
|
|
- { this.state.approval == 1 && <div className="clearfix">
|
|
|
+ { this.state.approval > 0 && <div className="clearfix">
|
|
|
<FormItem
|
|
|
labelCol={{ span: 5 }}
|
|
|
- wrapperCol={{ span: 16 }}
|
|
|
+ wrapperCol={{ span: 19 }}
|
|
|
label={
|
|
|
<span className="mandatory" style={{fontSize: '12px'}}>
|
|
|
提示
|
|
@@ -6768,8 +6768,8 @@ const NewService = Form.create()(
|
|
|
) : (
|
|
|
<div className="clearfix">
|
|
|
<FormItem
|
|
|
- className="half-item"
|
|
|
- {...formItemLayout}
|
|
|
+ labelCol={{ span: 5 }}
|
|
|
+ wrapperCol={{ span: 19 }}
|
|
|
label="特批立项"
|
|
|
>
|
|
|
<span>
|
|
@@ -6778,10 +6778,11 @@ const NewService = Form.create()(
|
|
|
{getApprovedType(this.state.approvaType, this.state.typeExplain, 1)}
|
|
|
</span>
|
|
|
</FormItem>
|
|
|
- { this.state.approval == 1 && <div className="clearfix">
|
|
|
+ { this.state.approval }
|
|
|
+ { this.state.approval > 0 && <div className="clearfix">
|
|
|
<FormItem
|
|
|
labelCol={{ span: 5 }}
|
|
|
- wrapperCol={{ span: 16 }}
|
|
|
+ wrapperCol={{ span: 19 }}
|
|
|
label={
|
|
|
<span className="mandatory" style={{fontSize: '12px'}}>
|
|
|
提示
|
|
@@ -7725,7 +7726,7 @@ const NewService = Form.create()(
|
|
|
</span>
|
|
|
{
|
|
|
// 新需求 除湖南和内蒙古外 不让其他省操作
|
|
|
- (adminData.province == "21" || adminData.province == "11") &&
|
|
|
+ (adminData.province == "21" || adminData.province == "11" || adminData.province == "2") &&
|
|
|
<div>
|
|
|
{
|
|
|
this.state.processStatus == 0 &&
|
|
@@ -8025,7 +8026,7 @@ const NewService = Form.create()(
|
|
|
</TabPane>
|
|
|
{
|
|
|
// 新需求 除湖南和内蒙古外 不让其他省操作
|
|
|
- (adminData.province == "21" || adminData.province == "11") &&
|
|
|
+ (adminData.province == "21" || adminData.province == "11" || adminData.province == "2") &&
|
|
|
<TabPane tab="合同变更发起" key="2">
|
|
|
{
|
|
|
this.state.activeKey == "2" &&
|