|
@@ -148,10 +148,10 @@ const invoiceApplyList = React.createClass({
|
|
recipientAddress: thisdata.recipientAddress,
|
|
recipientAddress: thisdata.recipientAddress,
|
|
orgCodeUrl: thisdata.voucherUrl
|
|
orgCodeUrl: thisdata.voucherUrl
|
|
? splitUrl(
|
|
? splitUrl(
|
|
- thisdata.voucherUrl,
|
|
|
|
- ",",
|
|
|
|
- globalConfig.avatarHost + "/upload"
|
|
|
|
- )
|
|
|
|
|
|
+ thisdata.voucherUrl,
|
|
|
|
+ ",",
|
|
|
|
+ globalConfig.avatarHost + "/upload"
|
|
|
|
+ )
|
|
: [],
|
|
: [],
|
|
};
|
|
};
|
|
this.setState({
|
|
this.setState({
|
|
@@ -169,6 +169,7 @@ const invoiceApplyList = React.createClass({
|
|
|
|
|
|
getInitialState() {
|
|
getInitialState() {
|
|
return {
|
|
return {
|
|
|
|
+ Loading: false,
|
|
searchMore: true,
|
|
searchMore: true,
|
|
assignVisible: false,
|
|
assignVisible: false,
|
|
releaseDate: [],
|
|
releaseDate: [],
|
|
@@ -434,7 +435,7 @@ const invoiceApplyList = React.createClass({
|
|
examine: this.state.examine,
|
|
examine: this.state.examine,
|
|
reason: this.state.reason,
|
|
reason: this.state.reason,
|
|
},
|
|
},
|
|
- success: function () {}.bind(this),
|
|
|
|
|
|
+ success: function () { }.bind(this),
|
|
}).done(
|
|
}).done(
|
|
function () {
|
|
function () {
|
|
this.setState({
|
|
this.setState({
|
|
@@ -702,7 +703,8 @@ const invoiceApplyList = React.createClass({
|
|
<Button
|
|
<Button
|
|
type="primary"
|
|
type="primary"
|
|
onClick={(e) => {
|
|
onClick={(e) => {
|
|
- e.stopPropagation(), this.commit();
|
|
|
|
|
|
+ e.stopPropagation(),
|
|
|
|
+ this.commit();
|
|
}}
|
|
}}
|
|
style={{ float: "right" }}
|
|
style={{ float: "right" }}
|
|
>
|
|
>
|