|
@@ -29,12 +29,18 @@ class Avatar extends React.Component {
|
|
|
} else if (info.file.status === 'error') {
|
|
|
message.error(`${info.file.name} 文件上传失败。`);
|
|
|
};
|
|
|
+ this.setState({ fileList: info.fileList.slice(-1) });
|
|
|
+ }
|
|
|
+ componentWillReceiveProps(nextProps) {
|
|
|
+ if (!this.props.visible && nextProps.visible) {
|
|
|
+ this.state.fileList = [];
|
|
|
+ };
|
|
|
}
|
|
|
render() {
|
|
|
return (
|
|
|
<Upload className="upload-file"
|
|
|
name="avatar"
|
|
|
- showUploadList={false}
|
|
|
+ fileList={this.state.fileList}
|
|
|
action={globalConfig.context + "/api/admin/patent/upload"}
|
|
|
data={{ 'sign': this.props.name, 'uid': this.props.uid, 'id': this.props.id }}
|
|
|
beforeUpload={beforeUpload}
|
|
@@ -101,7 +107,12 @@ const PatentDesc = React.createClass({
|
|
|
crossDomain: false,
|
|
|
url: globalConfig.context + "/api/admin/patent/lastYearTax",
|
|
|
data: { "uid": uid || this.props.data.uid, "sign": "last_year_ratepay" }
|
|
|
- })).done((data1, data2, data3) => {
|
|
|
+ }), $.ajax({
|
|
|
+ method: "get",
|
|
|
+ dataType: "json",
|
|
|
+ crossDomain: false,
|
|
|
+ url: globalConfig.context + "/api/admin/patent/getAuthor"
|
|
|
+ })).done((data1, data2, data3, data4) => {
|
|
|
let _me = this;
|
|
|
if (!data1[0].data) {
|
|
|
if (data1[0].error.length) {
|
|
@@ -121,6 +132,7 @@ const PatentDesc = React.createClass({
|
|
|
this.state.patentState = data1[0].data.patentState;
|
|
|
this.state.patentField = data1[0].data.patentField;
|
|
|
this.state.contacts = data1[0].data.contacts;
|
|
|
+ this.state.author = data1[0].data.author;
|
|
|
this.state.uid = data1[0].data.uid;
|
|
|
this.state.id = data1[0].data.id;
|
|
|
};
|
|
@@ -150,6 +162,21 @@ const PatentDesc = React.createClass({
|
|
|
} else {
|
|
|
this.state.lastYearTaxReportId = data3[0].data.id
|
|
|
};
|
|
|
+ let theArr = [];
|
|
|
+ if (!data4[0].data) {
|
|
|
+ if (data4[0].error.length) {
|
|
|
+ message.warning(data4[0].error[0].message);
|
|
|
+ };
|
|
|
+ } else {
|
|
|
+ for (var item in data4[0].data) {
|
|
|
+ theArr.push(
|
|
|
+ <Select.Option value={item} key={item}>{data4[0].data[item]}</Select.Option>
|
|
|
+ )
|
|
|
+ };
|
|
|
+ this.setState({
|
|
|
+ authorOption: theArr
|
|
|
+ });
|
|
|
+ };
|
|
|
}).always(function () {
|
|
|
this.setState({
|
|
|
loading: false
|
|
@@ -233,7 +260,8 @@ const PatentDesc = React.createClass({
|
|
|
"state": this.state.patentStateAdd,
|
|
|
"recordTimeFormattedDate": this.state.recordTime,
|
|
|
"principal": this.state.adminName,
|
|
|
- "comment": this.state.comment
|
|
|
+ "comment": this.state.comment,
|
|
|
+ "author": this.state.author
|
|
|
}
|
|
|
}).done(function (data) {
|
|
|
if (data.error && !data.error.length) {
|
|
@@ -307,10 +335,6 @@ const PatentDesc = React.createClass({
|
|
|
className="patent-desc-content">
|
|
|
<div>
|
|
|
<p className="widthHalf"><span>公司名称:</span>{theData.unitName}</p>
|
|
|
- <p className="widthHalf"><span>公司组织机构代码:</span>{theData.orgCode}</p>
|
|
|
- </div>
|
|
|
- <div>
|
|
|
- <p className="widthHalf"><span>公司地址:</span>{theData.postalAddress}</p>
|
|
|
<div className="widthHalf">
|
|
|
<span>联系人:</span>
|
|
|
<Select placeholder="选择联系人"
|
|
@@ -489,11 +513,20 @@ const PatentDesc = React.createClass({
|
|
|
<p><Icon type="exclamation-circle" style={{ color: '#ffbf00', marginRight: '6px' }} />上年度纳税报表未上传</p>
|
|
|
}
|
|
|
</div>
|
|
|
- <Avatar urlData={this.getPatentWritingUrl} name='patent_writing' uid={theData.uid} id={theData.id} />
|
|
|
- <Avatar urlData={this.getAuthorizationNoticeUrl} name='authorization_notice' uid={theData.uid} id={theData.id} />
|
|
|
- <Avatar urlData={this.getPatentCertificateUrl} name='patent_certificate' uid={theData.uid} id={theData.id} />
|
|
|
+ <Avatar visible={this.state.visible} urlData={this.getPatentWritingUrl} name='patent_writing' uid={theData.uid} id={theData.id} />
|
|
|
+ <Avatar visible={this.state.visible} urlData={this.getAuthorizationNoticeUrl} name='authorization_notice' uid={theData.uid} id={theData.id} />
|
|
|
+ <Avatar visible={this.state.visible} urlData={this.getPatentCertificateUrl} name='patent_certificate' uid={theData.uid} id={theData.id} />
|
|
|
</div>
|
|
|
<div className="avatar-text"><span>专利稿件上传</span><span>授权通知书上传</span><span>专利证书上传</span></div>
|
|
|
+ <div className="widthHalf">
|
|
|
+ <span>撰写人:</span>
|
|
|
+ <Select
|
|
|
+ style={{ width: 150 }}
|
|
|
+ value={this.state.author}
|
|
|
+ onChange={(e) => { this.setState({ author: e }); }} >
|
|
|
+ {this.state.authorOption}
|
|
|
+ </Select>
|
|
|
+ </div>
|
|
|
</Modal>
|
|
|
</Spin>
|
|
|
</div>
|