Commit c9779f85 by zhangleyuan

feat:将photoClip改成链接引用的方式

parent ddde253b
...@@ -15,18 +15,18 @@ class StoreInfo extends React.Component { ...@@ -15,18 +15,18 @@ class StoreInfo extends React.Component {
constructor(props) { constructor(props) {
super(props); super(props);
this.state = { this.state = {
storeName:'', storeName:null,
storeFullName:'', storeFullName:null,
subjectType:'', subjectType:null,
corpIndustry:'', corpIndustry:null,
corpSubIndustry:'', corpSubIndustry:null,
logo:'', logo:'',
showSelectFileModal:false, showSelectFileModal:false,
cutImageBlob: null, cutImageBlob: null,
} }
} }
componentWillMount(){ componentWillMount(){
this.getStoreDetail() // this.getStoreDetail()
} }
getStoreDetail = ()=>{ getStoreDetail = ()=>{
const params= { const params= {
...@@ -196,8 +196,8 @@ class StoreInfo extends React.Component { ...@@ -196,8 +196,8 @@ class StoreInfo extends React.Component {
message.warning('请选择店铺类型'); message.warning('请选择店铺类型');
return; return;
} }
if(!subjectType){ if(!corpIndustry){
message.warning('店铺所属行业'); message.warning('请选择店铺所属行业');
return; return;
} }
const params= { const params= {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment