修改版本号1.0.4
This commit is contained in:
parent
8c1ac2d4d1
commit
6dfdbdf90f
|
@ -1,7 +1,7 @@
|
|||
import {Notify} from "zent"
|
||||
// export const baseurl = 'https://marketapi.1688sup.com'
|
||||
window.baseurl = 'https://marketapi.1688sup.com';
|
||||
const Version = "v1.0.3"
|
||||
const Version = "v1.0.4"
|
||||
let baseurl;
|
||||
if (process.env.NODE_ENV == "test"||process.env.NODE_ENV == "development") { // 测试环境
|
||||
baseurl = "http://192.168.6.75"
|
||||
|
|
|
@ -144,7 +144,7 @@ function FormDom(props) {
|
|||
const codeyzm = () => {
|
||||
const xhr = new XMLHttpRequest()
|
||||
xhr.open('GET', window.baseurl + '/auth/login/verify')
|
||||
xhr.setRequestHeader('Version','v1.0.3');
|
||||
xhr.setRequestHeader('Version','v1.0.4');
|
||||
xhr.responseType = "arraybuffer";
|
||||
xhr.onreadystatechange = function (response) {
|
||||
response.header = {
|
||||
|
|
|
@ -574,7 +574,7 @@ export default class add extends React.Component{
|
|||
|
||||
|
||||
{
|
||||
this.state.curstep == 3 ? (
|
||||
this.state.card_visible ? (
|
||||
<div className="step-btn-group">
|
||||
<Button type="primary" onClick={()=>this.onNextStep()} disabled={this.state.disabled}>提交审核</Button>
|
||||
<Button type="normal" onClick={()=>this.onReturn()}>取消</Button>
|
||||
|
|
Loading…
Reference in New Issue