|
@@ -150,10 +150,10 @@ const inSpecial = React.createClass({
|
|
|
recipientAddress: thisdata.recipientAddress,
|
|
|
orgCodeUrl: thisdata.voucherUrl
|
|
|
? splitUrl(
|
|
|
- thisdata.voucherUrl,
|
|
|
- ",",
|
|
|
- globalConfig.avatarHost + "/upload"
|
|
|
- )
|
|
|
+ thisdata.voucherUrl,
|
|
|
+ ",",
|
|
|
+ globalConfig.avatarHost + "/upload"
|
|
|
+ )
|
|
|
: [],
|
|
|
});
|
|
|
}.bind(this),
|
|
@@ -437,9 +437,9 @@ const inSpecial = React.createClass({
|
|
|
examine: this.state.examine,
|
|
|
reason: this.state.reason
|
|
|
},
|
|
|
- success: function() {}.bind(this)
|
|
|
+ success: function () { }.bind(this)
|
|
|
}).done(
|
|
|
- function() {
|
|
|
+ function () {
|
|
|
this.setState({
|
|
|
loading: false
|
|
|
});
|
|
@@ -722,27 +722,25 @@ const inSpecial = React.createClass({
|
|
|
width="400px"
|
|
|
onCancel={this.rejectCancels}
|
|
|
>
|
|
|
- <Spin spinning={this.state.loading}>
|
|
|
- <Input.TextArea
|
|
|
- placeholder="请输入拒绝理由"
|
|
|
- rows={4}
|
|
|
- value={this.state.reason}
|
|
|
- onChange={(e) => {
|
|
|
- this.setState({ reason: e.target.value });
|
|
|
+ <Input.TextArea
|
|
|
+ placeholder="请输入拒绝理由"
|
|
|
+ rows={4}
|
|
|
+ value={this.state.reason}
|
|
|
+ onChange={(e) => {
|
|
|
+ this.setState({ reason: e.target.value });
|
|
|
+ }}
|
|
|
+ ></Input.TextArea>
|
|
|
+ <div className="clearfix" style={{ marginTop: "20px" }}>
|
|
|
+ <Button
|
|
|
+ type="primary"
|
|
|
+ onClick={(e) => {
|
|
|
+ e.stopPropagation(), this.commit();
|
|
|
}}
|
|
|
- ></Input.TextArea>
|
|
|
- <div className="clearfix" style={{ marginTop: "20px" }}>
|
|
|
- <Button
|
|
|
- type="primary"
|
|
|
- onClick={(e) => {
|
|
|
- e.stopPropagation(), this.commit();
|
|
|
- }}
|
|
|
- style={{ float: "right" }}
|
|
|
- >
|
|
|
- 提交
|
|
|
- </Button>
|
|
|
- </div>
|
|
|
- </Spin>
|
|
|
+ style={{ float: "right" }}
|
|
|
+ >
|
|
|
+ 提交
|
|
|
+ </Button>
|
|
|
+ </div>
|
|
|
</Modal>
|
|
|
<Modal
|
|
|
className="admin-desc-content"
|
|
@@ -813,8 +811,8 @@ const inSpecial = React.createClass({
|
|
|
{this.state.invoiceType === 0
|
|
|
? "增值税专用发票"
|
|
|
: this.state.invoiceType === 1
|
|
|
- ? "增值税普通发票"
|
|
|
- : "其他"}
|
|
|
+ ? "增值税普通发票"
|
|
|
+ : "其他"}
|
|
|
</span>
|
|
|
</FormItem>
|
|
|
</div>
|