This commit is contained in:
parent
e69a659ebe
commit
bcd4161048
|
@ -272,6 +272,7 @@ export default class commoditylist extends React.Component{
|
||||||
<Drawer
|
<Drawer
|
||||||
className="draw"
|
className="draw"
|
||||||
width={"60%"}
|
width={"60%"}
|
||||||
|
maskClosable = {false}
|
||||||
title={"新建商品"}
|
title={"新建商品"}
|
||||||
footer={
|
footer={
|
||||||
<div style={{ textAlign: 'center' }}>
|
<div style={{ textAlign: 'center' }}>
|
||||||
|
|
|
@ -531,7 +531,7 @@ export default class adduserinfo extends React.Component{
|
||||||
}
|
}
|
||||||
visible={this.state.drawerVisible2}
|
visible={this.state.drawerVisible2}
|
||||||
onClose={(e) =>{this.setState({drawerVisible2:false})} }
|
onClose={(e) =>{this.setState({drawerVisible2:false})} }
|
||||||
maskClosable
|
maskClosable = {false}
|
||||||
>
|
>
|
||||||
<div className="draw2">
|
<div className="draw2">
|
||||||
<Card style={{ width:'90%',"margin":"10px auto" }} >
|
<Card style={{ width:'90%',"margin":"10px auto" }} >
|
||||||
|
|
|
@ -441,8 +441,8 @@ export default class acclist extends React.Component{
|
||||||
<FormItem labelname=" key样式" prop="style" id="style">
|
<FormItem labelname=" key样式" prop="style" id="style">
|
||||||
<RadioGroup onChange={(e)=>{ this.onStyleChange(e)} } value={this.state.model.style}>
|
<RadioGroup onChange={(e)=>{ this.onStyleChange(e)} } value={this.state.model.style}>
|
||||||
<RadioButton value={1}>串码</RadioButton>
|
<RadioButton value={1}>串码</RadioButton>
|
||||||
<RadioButton value={2}>链接</RadioButton>
|
<RadioButton value={2} disabled>链接</RadioButton>
|
||||||
<RadioButton value={3}>二维码</RadioButton>
|
<RadioButton value={3} disabled>二维码</RadioButton>
|
||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
|
|
|
@ -82,6 +82,18 @@ export default class adduserinfo extends React.Component{
|
||||||
async submit(){
|
async submit(){
|
||||||
if(this.refs.form1.validator())
|
if(this.refs.form1.validator())
|
||||||
{
|
{
|
||||||
|
|
||||||
|
if(this.state.model.show_url == "")
|
||||||
|
{
|
||||||
|
Notify.error(`请上传商品展示图`);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if(this.state.model.describe_url == "")
|
||||||
|
{
|
||||||
|
Notify.error(`请上传商品描述`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let temp = []
|
let temp = []
|
||||||
if(sessionStorage.getItem("productData"))
|
if(sessionStorage.getItem("productData"))
|
||||||
{
|
{
|
||||||
|
@ -139,7 +151,9 @@ export default class adduserinfo extends React.Component{
|
||||||
console.log(files);
|
console.log(files);
|
||||||
};
|
};
|
||||||
onUploadChange1(files){
|
onUploadChange1(files){
|
||||||
if(files[0].file)
|
|
||||||
|
|
||||||
|
if(files && files[0].file)
|
||||||
{
|
{
|
||||||
let formdata= new FormData();
|
let formdata= new FormData();
|
||||||
formdata.append("file",files[0].file)
|
formdata.append("file",files[0].file)
|
||||||
|
@ -198,12 +212,7 @@ export default class adduserinfo extends React.Component{
|
||||||
name:[
|
name:[
|
||||||
{ type: "required", message: "请输入商品名称"},
|
{ type: "required", message: "请输入商品名称"},
|
||||||
],
|
],
|
||||||
show_url:[
|
|
||||||
{ type: "required", message: "请上传商品展示"},
|
|
||||||
],
|
|
||||||
describe_url:[
|
|
||||||
{ type: "required", message: "请上传商品描述"},
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -286,6 +295,7 @@ export default class adduserinfo extends React.Component{
|
||||||
maxSize={5 * 1024 * 1024}
|
maxSize={5 * 1024 * 1024}
|
||||||
tips="建议尺寸 30*30,图片不超过 500kb"
|
tips="建议尺寸 30*30,图片不超过 500kb"
|
||||||
maxAmount={1}
|
maxAmount={1}
|
||||||
|
|
||||||
onChange={(e)=>{this.onUploadChange(e)}}
|
onChange={(e)=>{this.onUploadChange(e)}}
|
||||||
onUpload={this.onUpload}
|
onUpload={this.onUpload}
|
||||||
value={this.state.model.show_url}
|
value={this.state.model.show_url}
|
||||||
|
@ -299,7 +309,7 @@ export default class adduserinfo extends React.Component{
|
||||||
maxAmount={1}
|
maxAmount={1}
|
||||||
onChange={(e)=>{this.onUploadChange1(e)}}
|
onChange={(e)=>{this.onUploadChange1(e)}}
|
||||||
onUpload={this.onUpload}
|
onUpload={this.onUpload}
|
||||||
value={this.state.model.describe_url}
|
value={this.state.model.describe_url}
|
||||||
/>
|
/>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue