更新商品
This commit is contained in:
parent
23c93f1622
commit
823e404707
|
@ -11,8 +11,9 @@ import "./commodity.less"
|
||||||
import "./goodedit.less"
|
import "./goodedit.less"
|
||||||
import Swiper from 'swiper/dist/js/swiper.js'
|
import Swiper from 'swiper/dist/js/swiper.js'
|
||||||
import 'swiper/dist/css/swiper.min.css'
|
import 'swiper/dist/css/swiper.min.css'
|
||||||
|
var mySwiper = null;
|
||||||
export default class adduserinfo extends React.Component{
|
export default class adduserinfo extends React.Component{
|
||||||
mySwiper = null;
|
|
||||||
constructor(props){
|
constructor(props){
|
||||||
super(props)
|
super(props)
|
||||||
this.state={
|
this.state={
|
||||||
|
@ -43,7 +44,7 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
|
||||||
this.mySwiper = new Swiper('.swiper-container', {
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
slidesPerView: 1,
|
slidesPerView: 1,
|
||||||
centeredSlides: true,
|
centeredSlides: true,
|
||||||
loop : true,
|
loop : true,
|
||||||
|
@ -61,7 +62,7 @@ componentDidMount() {
|
||||||
this.getProductInfo()
|
this.getProductInfo()
|
||||||
}
|
}
|
||||||
componentWillReceiveProps() {
|
componentWillReceiveProps() {
|
||||||
this.mySwiper.update();
|
mySwiper.update();
|
||||||
}
|
}
|
||||||
//获取直连天下商品映射信息
|
//获取直连天下商品映射信息
|
||||||
getProductInfo(){
|
getProductInfo(){
|
||||||
|
@ -107,24 +108,45 @@ componentDidMount() {
|
||||||
let defaultPic = []
|
let defaultPic = []
|
||||||
let arr = []
|
let arr = []
|
||||||
|
|
||||||
|
let pics = ""
|
||||||
|
console.log("图",req.describe_url)
|
||||||
|
if(Array.isArray(req.describe_url))
|
||||||
|
{
|
||||||
|
pics = req.describe_url
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
|
||||||
|
if(req.describe_url!="")
|
||||||
|
{
|
||||||
|
pics = req.describe_url.split(',')
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
pics = []
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
let temp_productpic = this.state.productpic
|
let temp_productpic = this.state.productpic
|
||||||
for(let i = 0;i < req.describe_url.length;i++)
|
for(let i = 0;i < pics.length;i++)
|
||||||
{
|
{
|
||||||
|
|
||||||
let obj = {}
|
let obj = {}
|
||||||
let nameArr = req.describe_url[i].split('/');
|
let nameArr = pics[i].split('/');
|
||||||
obj.name = nameArr[5]
|
obj.name = nameArr[5]
|
||||||
obj.src = req.describe_url[i];
|
obj.src = pics[i];
|
||||||
defaultPic.push(obj)
|
defaultPic.push(obj)
|
||||||
let obj2={
|
let obj2={
|
||||||
name:nameArr[5],
|
name:nameArr[5],
|
||||||
url:req.describe_url[i]
|
url:pics[i]
|
||||||
}
|
}
|
||||||
temp_productpic.push(obj2)
|
temp_productpic.push(obj2)
|
||||||
}
|
}
|
||||||
this.setState({temp_productpic})
|
this.setState({temp_productpic})
|
||||||
|
|
||||||
|
console.log("默认图片",defaultPic)
|
||||||
|
|
||||||
let temp ={ //数据模型不可少
|
let temp ={ //数据模型不可少
|
||||||
id:req.product_id,
|
id:req.product_id,
|
||||||
|
@ -378,7 +400,17 @@ componentDidMount() {
|
||||||
let arr =_.map(files,(o)=>{
|
let arr =_.map(files,(o)=>{
|
||||||
return o.name
|
return o.name
|
||||||
})
|
})
|
||||||
console.log("保留的数据",arr)
|
if(mySwiper !==0)
|
||||||
|
{
|
||||||
|
mySwiper.destroy();
|
||||||
|
}
|
||||||
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
|
observer: true,//修改swiper自己或子元素时,自动初始化swiper
|
||||||
|
observeParents: true,//修改swiper的父元素时,自动初始化swiper
|
||||||
|
pagination: '.swiper-pagination',
|
||||||
|
paginationClickable:true,
|
||||||
|
autoplay : 3000,
|
||||||
|
})
|
||||||
|
|
||||||
if(arr.length > this.state.productpic.length)
|
if(arr.length > this.state.productpic.length)
|
||||||
{
|
{
|
||||||
|
|
|
@ -11,9 +11,9 @@ import Bus from "../../../assets/eventBus.js"
|
||||||
import {getProductInfoSelect,handelResponse,uploadImg} from "../../../assets/api.js"
|
import {getProductInfoSelect,handelResponse,uploadImg} from "../../../assets/api.js"
|
||||||
import _ from "lodash";
|
import _ from "lodash";
|
||||||
|
|
||||||
|
var mySwiper = null;
|
||||||
export default class adduserinfo extends React.Component{
|
export default class adduserinfo extends React.Component{
|
||||||
mySwiper = null;
|
|
||||||
constructor(props){
|
constructor(props){
|
||||||
super(props)
|
super(props)
|
||||||
this.state={
|
this.state={
|
||||||
|
@ -42,7 +42,7 @@ export default class adduserinfo extends React.Component{
|
||||||
}
|
}
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
|
|
||||||
this.mySwiper = new Swiper('.swiper-container', {
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
slidesPerView: 1,
|
slidesPerView: 1,
|
||||||
centeredSlides: true,
|
centeredSlides: true,
|
||||||
loop : true,
|
loop : true,
|
||||||
|
@ -55,7 +55,7 @@ export default class adduserinfo extends React.Component{
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
componentWillReceiveProps() {
|
componentWillReceiveProps() {
|
||||||
this.mySwiper.update();
|
mySwiper.update();
|
||||||
}
|
}
|
||||||
componentWillMount(e){
|
componentWillMount(e){
|
||||||
|
|
||||||
|
@ -279,6 +279,19 @@ export default class adduserinfo extends React.Component{
|
||||||
let arr =_.map(files,(o)=>{
|
let arr =_.map(files,(o)=>{
|
||||||
return o.name
|
return o.name
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
if(mySwiper !==0)
|
||||||
|
{
|
||||||
|
mySwiper.destroy();
|
||||||
|
}
|
||||||
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
|
observer: true,//修改swiper自己或子元素时,自动初始化swiper
|
||||||
|
observeParents: true,//修改swiper的父元素时,自动初始化swiper
|
||||||
|
pagination: '.swiper-pagination',
|
||||||
|
paginationClickable:true,
|
||||||
|
autoplay : 3000,
|
||||||
|
})
|
||||||
console.log("保留的数据",arr)
|
console.log("保留的数据",arr)
|
||||||
|
|
||||||
if(arr.length > this.state.productpic.length)
|
if(arr.length > this.state.productpic.length)
|
||||||
|
|
|
@ -11,8 +11,8 @@ import _ from "lodash";
|
||||||
import Swiper from 'swiper/dist/js/swiper.js'
|
import Swiper from 'swiper/dist/js/swiper.js'
|
||||||
import 'swiper/dist/css/swiper.min.css'
|
import 'swiper/dist/css/swiper.min.css'
|
||||||
|
|
||||||
|
var mySwiper = 0;
|
||||||
export default class adduserinfo extends React.Component{
|
export default class adduserinfo extends React.Component{
|
||||||
mySwiper = null
|
|
||||||
constructor(props){
|
constructor(props){
|
||||||
super(props)
|
super(props)
|
||||||
this.state={
|
this.state={
|
||||||
|
@ -42,7 +42,7 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.mySwiper = new Swiper('.swiper-container', {
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
slidesPerView: 1,
|
slidesPerView: 1,
|
||||||
centeredSlides: true,
|
centeredSlides: true,
|
||||||
loop : true,
|
loop : true,
|
||||||
|
@ -52,11 +52,7 @@ export default class adduserinfo extends React.Component{
|
||||||
observeParents: false, // 修改swiper的父元素时,自动初始化swiper
|
observeParents: false, // 修改swiper的父元素时,自动初始化swiper
|
||||||
pagination: '.swiper-pagination',
|
pagination: '.swiper-pagination',
|
||||||
paginationClickable:true,
|
paginationClickable:true,
|
||||||
onSlideChangeEnd: function(swiper){
|
|
||||||
this.mySwiper.update();
|
|
||||||
this.mySwiper.startAutoplay();
|
|
||||||
this.mySwiper.reLoop();
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -126,6 +122,7 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
componentWillReceiveProps() {
|
componentWillReceiveProps() {
|
||||||
console.log("更新")
|
console.log("更新")
|
||||||
|
mySwiper.update()
|
||||||
// this.mySwiper.stopAutoplay();
|
// this.mySwiper.stopAutoplay();
|
||||||
|
|
||||||
// this.mySwiper.update();
|
// this.mySwiper.update();
|
||||||
|
@ -254,7 +251,7 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
console.log("当前商品",cur_product)
|
console.log("当前商品",cur_product)
|
||||||
let picItem = window.goods.find((item)=>{return item.id == cur_product.product_category_id})
|
let picItem = window.goods.find((item)=>{return item.id == cur_product.product_category_id})
|
||||||
let model2 = {...this.state.model}
|
let model2 = this.state.model
|
||||||
model2.product_id = cur_product.id;
|
model2.product_id = cur_product.id;
|
||||||
model2.product_type=cur_product.type;
|
model2.product_type=cur_product.type;
|
||||||
model2.contract_price=this.state.model.contract_price;
|
model2.contract_price=this.state.model.contract_price;
|
||||||
|
@ -264,21 +261,12 @@ export default class adduserinfo extends React.Component{
|
||||||
model2.product_name=cur_product.title;
|
model2.product_name=cur_product.title;
|
||||||
model2.account_type=cur_product.account_type;
|
model2.account_type=cur_product.account_type;
|
||||||
model2.show_url=picItem ? picItem.pic : "";
|
model2.show_url=picItem ? picItem.pic : "";
|
||||||
|
console.log("商品",this.refs.product_describe)
|
||||||
|
|
||||||
|
|
||||||
model2.describe_url= "";
|
model2.describe_url= "";
|
||||||
model2.map_product_name= cur_product.title;
|
model2.map_product_name= cur_product.title;
|
||||||
model2.detail_url = "";
|
model2.detail_url = "";
|
||||||
// let model2 = {
|
|
||||||
// product_id:cur_product.id,
|
|
||||||
// product_type:cur_product.type,
|
|
||||||
// contract_price:this.state.model.contract_price,
|
|
||||||
// official_price:cur_product.official_price,
|
|
||||||
// cost_price:cur_product.cost_price,
|
|
||||||
// quantity:this.state.model.quantity,
|
|
||||||
// product_name:this.state.model.product_name,
|
|
||||||
// account_type:cur_product.account_type,
|
|
||||||
// show_url:picItem ? picItem.pic : "",
|
|
||||||
// describe_url:picItem ? picItem.pic : "",
|
|
||||||
// }
|
|
||||||
|
|
||||||
this.setState({model:model2})
|
this.setState({model:model2})
|
||||||
}
|
}
|
||||||
|
@ -367,9 +355,22 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
|
|
||||||
onUploadChange3(files,e){
|
onUploadChange3(files,e){
|
||||||
|
|
||||||
let arr =_.map(files,(o)=>{
|
let arr =_.map(files,(o)=>{
|
||||||
return o.name
|
return o.name
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if(mySwiper !==0)
|
||||||
|
{
|
||||||
|
mySwiper.destroy();
|
||||||
|
}
|
||||||
|
mySwiper = new Swiper('.swiper-container', {
|
||||||
|
observer: true,//修改swiper自己或子元素时,自动初始化swiper
|
||||||
|
observeParents: true,//修改swiper的父元素时,自动初始化swiper
|
||||||
|
pagination: '.swiper-pagination',
|
||||||
|
paginationClickable:true,
|
||||||
|
autoplay : 3000,
|
||||||
|
})
|
||||||
if(arr.length > this.state.productpic.length)
|
if(arr.length > this.state.productpic.length)
|
||||||
{
|
{
|
||||||
//新增
|
//新增
|
||||||
|
@ -402,10 +403,7 @@ export default class adduserinfo extends React.Component{
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
if(arr.length < this.state.productpic.length)
|
if(arr.length < this.state.productpic.length)
|
||||||
{
|
{
|
||||||
|
@ -439,12 +437,16 @@ export default class adduserinfo extends React.Component{
|
||||||
}
|
}
|
||||||
this.setState({productpic:temp_arr})
|
this.setState({productpic:temp_arr})
|
||||||
}
|
}
|
||||||
|
// if(this.mySwiper)
|
||||||
|
// {
|
||||||
|
// // this.refs.swiperwrapper
|
||||||
|
// this.mySwiper.destroy()
|
||||||
|
|
||||||
|
|
||||||
|
// }
|
||||||
|
|
||||||
|
|
||||||
this.mySwiper.stopAutoplay();
|
|
||||||
|
|
||||||
this.mySwiper.update();
|
|
||||||
this.mySwiper.reLoop();
|
|
||||||
this.mySwiper.startAutoplay();
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -587,6 +589,7 @@ export default class adduserinfo extends React.Component{
|
||||||
|
|
||||||
|
|
||||||
<FormItem prop="describe_url" labelname="商品图" id="describe_url" required={false} >
|
<FormItem prop="describe_url" labelname="商品图" id="describe_url" required={false} >
|
||||||
|
|
||||||
<ImageUpload
|
<ImageUpload
|
||||||
className="zent-image-upload-demo"
|
className="zent-image-upload-demo"
|
||||||
maxSize={5 * 1024 * 1024}
|
maxSize={5 * 1024 * 1024}
|
||||||
|
@ -596,6 +599,7 @@ export default class adduserinfo extends React.Component{
|
||||||
sortable
|
sortable
|
||||||
defaultFileList={this.state.model.describe_url }
|
defaultFileList={this.state.model.describe_url }
|
||||||
multiple
|
multiple
|
||||||
|
ref="product_describe"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue