Commit c9779f85 by zhangleyuan

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

parent ddde253b
......@@ -15,18 +15,18 @@ class StoreInfo extends React.Component {
constructor(props) {
super(props);
this.state = {
storeName:'',
storeFullName:'',
subjectType:'',
corpIndustry:'',
corpSubIndustry:'',
storeName:null,
storeFullName:null,
subjectType:null,
corpIndustry:null,
corpSubIndustry:null,
logo:'',
showSelectFileModal:false,
cutImageBlob: null,
}
}
componentWillMount(){
this.getStoreDetail()
// this.getStoreDetail()
}
getStoreDetail = ()=>{
const params= {
......@@ -196,8 +196,8 @@ class StoreInfo extends React.Component {
message.warning('请选择店铺类型');
return;
}
if(!subjectType){
message.warning('店铺所属行业');
if(!corpIndustry){
message.warning('请选择店铺所属行业');
return;
}
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