|
@@ -209,6 +209,16 @@ const outsourcingPro = Form.create()(
|
|
|
},
|
|
|
columns: [
|
|
|
{
|
|
|
+ title: "项目编号",
|
|
|
+ dataIndex: "tid",
|
|
|
+ key: "tid",
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: "项目名称",
|
|
|
+ dataIndex: "bname",
|
|
|
+ key: "bname",
|
|
|
+ },
|
|
|
+ {
|
|
|
title: "订单编号",
|
|
|
dataIndex: "orderNo",
|
|
|
key: "orderNo",
|
|
@@ -239,16 +249,6 @@ const outsourcingPro = Form.create()(
|
|
|
key: "cname",
|
|
|
},
|
|
|
{
|
|
|
- title: "项目编号",
|
|
|
- dataIndex: "tid",
|
|
|
- key: "tid",
|
|
|
- },
|
|
|
- {
|
|
|
- title: "项目名称",
|
|
|
- dataIndex: "bname",
|
|
|
- key: "bname",
|
|
|
- },
|
|
|
- {
|
|
|
title: "项目负责人",
|
|
|
dataIndex: "pname",
|
|
|
key: "pname",
|
|
@@ -985,9 +985,10 @@ const outsourcingPro = Form.create()(
|
|
|
loading: true,
|
|
|
refundStatus: record.refundStatus,
|
|
|
tid: record.tid,
|
|
|
+ taskName: record.bname,
|
|
|
},
|
|
|
() => {
|
|
|
- console.log(this.state.tid);
|
|
|
+ console.log(record);
|
|
|
}
|
|
|
);
|
|
|
this.xiangqing(record.orderNo);
|
|
@@ -1418,7 +1419,22 @@ const outsourcingPro = Form.create()(
|
|
|
className="admin-desc-content"
|
|
|
confirmLoading={this.state.confirmLoading}
|
|
|
>
|
|
|
- <Tabs activeKey={this.state.activeKey} onChange={this.callback}>
|
|
|
+ <Tabs
|
|
|
+ activeKey={this.state.activeKey}
|
|
|
+ onChange={this.callback}
|
|
|
+ tabBarExtraContent={
|
|
|
+ <div style={{fontWeight:'bold',paddingRight:'15px'}}>
|
|
|
+ <span>
|
|
|
+ 项目名称:
|
|
|
+ <span style={{color:'#F00',paddingRight:'5px'}}>{this.state.taskName}</span>
|
|
|
+ </span>
|
|
|
+ <span style={{marginLeft:'15px'}}>
|
|
|
+ 项目编号:
|
|
|
+ <span style={{color:'#F00',paddingRight:'5px'}}>{this.state.tid}</span>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ }
|
|
|
+ >
|
|
|
<TabPane tab="订单详情" key="1">
|
|
|
<Form
|
|
|
layout="horizontal"
|