商品数据模型

const defaultProductObj = {
// 商品分类
productCategoryId: null,
productCategoryName: '',
name: '', // 商品名称
subTitle: '',
productIntro: '', // 商品介绍
productSn: '', // 商品货号
originalPrice: null, // 市场价
price: null, // 商品售价
store: null, // 商品库存
sort: null,
giftScore: null,
giftGrow: null,
publishStatus: 1, // 是否上架
newsStatus: 1,
recommendStatus: 1,
serviceIds: '', // 服务列表
netContent: '', // 净含量
storageCondition: '', // 储存条件
quality: '', // 保质期
reductionType: 0, // 优惠选项
reductionPrice: 0, // 促销价格
reductionStartTime: null, //特惠开始时间
reductionEndTime: null, //特惠结束时间
// 会员体系价格
memberPriceList: [
{
memberLevelId: 1,
memberLevelName: '黄金会员',
memberLevelPrice: null
},
{
memberLevelId: 2,
memberLevelName: '白金会员',
memberLevelPrice: null
},{
memberLevelId: 3,
memberLevelName: '钻石会员',
memberLevelPrice: null
}
],
// 首页秒杀
productHomeKillList: [
{count: 0, discount: 0}
],
// 商品主图片
pic: '',
// 商品图片集
albumPics: '',
// 详情页
detailHtml: ''
};