|
@@ -20,6 +20,7 @@ Page({
|
|
|
showSpecification: false, //规格弹出层显示
|
|
|
specificationText: '统一规格', //
|
|
|
/* 表单 */
|
|
|
+ id: 0, //商品id
|
|
|
goodName: '', //商品名称
|
|
|
goodIntro: '', //商品简介
|
|
|
imageList: [], //图片列表
|
|
@@ -62,6 +63,69 @@ Page({
|
|
|
that.setData({
|
|
|
categorys: res.data.data
|
|
|
})
|
|
|
+ // 编辑商品
|
|
|
+ if (options.enterType == 'edit') {
|
|
|
+ that.setData({
|
|
|
+ id: Number(options.id)
|
|
|
+ })
|
|
|
+ wx.showLoading({
|
|
|
+ title: '加载中',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ wx.request({
|
|
|
+ url: api.Commodity_info,
|
|
|
+ header: {
|
|
|
+ 'Authorization': wx.getStorageSync('token')
|
|
|
+ },
|
|
|
+ data: {
|
|
|
+ id: that.data.id
|
|
|
+ },
|
|
|
+ method: 'POST',
|
|
|
+ success(res) {
|
|
|
+ wx.hideLoading()
|
|
|
+ console.log(res);
|
|
|
+ if (res.data.code === 1) {
|
|
|
+ let categoryIndex = that.data.categorys.findIndex(
|
|
|
+ (item) => {
|
|
|
+ return item.id == res.data.data.classification_id;
|
|
|
+ }
|
|
|
+ )
|
|
|
+ that.setData({
|
|
|
+ goodName: res.data.data.commodity_name,
|
|
|
+ goodIntro: res.data.data.commodity_introduction,
|
|
|
+ imageList: res.data.data.commodity_img,
|
|
|
+ scribePrice: res.data.data.scribe_price,
|
|
|
+ specifications: res.data.data.specifications == null ? [] : res.data.data.specifications,
|
|
|
+ price: res.data.data.price,
|
|
|
+ stock: res.data.data.stock,
|
|
|
+ categoryIndex,
|
|
|
+ isAddToGoodsBank: res.data.data.commodity_warehouse,
|
|
|
+ startingPurchase: res.data.data.starting_purchase,
|
|
|
+ purchaseRestrictionsNumber: res.data.data.purchase_restrictions_number,
|
|
|
+ purchaseRestrictionsSecond: res.data.data.purchase_restrictions_second,
|
|
|
+ startingPurchaseNumber: res.data.data.starting_purchase_number,
|
|
|
+ prices: res.data.data.step_price == null ? [] : res.data.data.step_price,
|
|
|
+ // 规格名称
|
|
|
+ specificationText: res.data.data.specifications == null ? '统一规格' : res.data.data.specifications[0].title + '/' + res.data.data.specifications[0].price + '加币'
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ wx.showToast({
|
|
|
+ title: res.data.msg,
|
|
|
+ mask: true,
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail(err) {
|
|
|
+ wx.hideLoading()
|
|
|
+ wx.showToast({
|
|
|
+ title: '发起网络请求失败',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
} else {
|
|
|
wx.showToast({
|
|
|
title: res.data.msg,
|
|
@@ -266,14 +330,14 @@ Page({
|
|
|
prices: [],
|
|
|
showSpecification: true,
|
|
|
specifications: [{
|
|
|
- title: '',
|
|
|
- price: ''
|
|
|
- },
|
|
|
- {
|
|
|
- title: '',
|
|
|
- price: ''
|
|
|
- }
|
|
|
- ]
|
|
|
+ title: '',
|
|
|
+ price: ''
|
|
|
+ },
|
|
|
+ {
|
|
|
+ title: '',
|
|
|
+ price: ''
|
|
|
+ }
|
|
|
+ ]
|
|
|
})
|
|
|
} else {
|
|
|
that.setData({
|
|
@@ -740,6 +804,130 @@ Page({
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
+ // 确认编辑
|
|
|
+ edit() {
|
|
|
+ let that = this;
|
|
|
+ // 商品名称必录校验
|
|
|
+ if (that.data.goodName == '') {
|
|
|
+ wx.showToast({
|
|
|
+ title: '商品名称未录入',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 商品简介必录校验
|
|
|
+ if (that.data.goodIntro == '') {
|
|
|
+ wx.showToast({
|
|
|
+ title: '商品简介未录入',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 商品图片必录校验
|
|
|
+ if (that.data.imageList.length == 0) {
|
|
|
+ wx.showToast({
|
|
|
+ title: '商品图片未添加',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 划线价格必录校验
|
|
|
+ if (that.data.scribePrice == '') {
|
|
|
+ wx.showToast({
|
|
|
+ title: '划线价格未录入',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 售价必录校验
|
|
|
+ if (that.data.price == '') {
|
|
|
+ wx.showToast({
|
|
|
+ title: '售价未录入',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 库存
|
|
|
+ let stock = that.data.stock;
|
|
|
+ if (stock == '') {
|
|
|
+ stock = '99999999';
|
|
|
+ }
|
|
|
+ // 如果不录规格也不录阶梯价-规格为统一规格,价格为售价
|
|
|
+ if (that.data.specifications.length == 0 && that.data.prices.length == 0) {
|
|
|
+ let list = that.data.specifications;
|
|
|
+ let obj = {};
|
|
|
+ obj.title = '统一规格';
|
|
|
+ obj.price = that.data.price;
|
|
|
+ list.push(obj);
|
|
|
+ that.setData({
|
|
|
+ specifications: list
|
|
|
+ })
|
|
|
+ }
|
|
|
+ wx.showLoading({
|
|
|
+ title: '提交中',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ wx.request({
|
|
|
+ url: api.Commodity_edit,
|
|
|
+ header: {
|
|
|
+ 'Authorization': wx.getStorageSync('token')
|
|
|
+ },
|
|
|
+ method: 'POST',
|
|
|
+ data: {
|
|
|
+ id: that.data.id,
|
|
|
+ commodity_name: that.data.goodName,
|
|
|
+ commodity_img: that.data.imageList,
|
|
|
+ commodity_introduction: that.data.goodIntro,
|
|
|
+ scribe_price: that.data.scribePrice,
|
|
|
+ specifications: that.data.specifications,
|
|
|
+ price: that.data.price,
|
|
|
+ stock: stock,
|
|
|
+ classification_id: that.data.categorys[that.data.categoryIndex].id,
|
|
|
+ commodity_warehouse: that.data.isAddToGoodsBank,
|
|
|
+ starting_purchase: that.data.startingPurchase,
|
|
|
+ purchase_restrictions_number: that.data.purchaseRestrictionsNumber,
|
|
|
+ purchase_restrictions_second: that.data.purchaseRestrictionsSecond,
|
|
|
+ starting_purchase_number: that.data.startingPurchaseNumber,
|
|
|
+ step_price: that.data.prices
|
|
|
+ },
|
|
|
+ success(res) {
|
|
|
+ console.log(res);
|
|
|
+ wx.hideLoading()
|
|
|
+ if (res.data.code === 1) {
|
|
|
+ wx.showToast({
|
|
|
+ title: res.data.msg,
|
|
|
+ icon: 'success',
|
|
|
+ mask: true,
|
|
|
+ success() {
|
|
|
+ setTimeout(()=>{
|
|
|
+ wx.setStorageSync('isReload', true)
|
|
|
+ wx.navigateBack()
|
|
|
+ }, 1500)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ } else {
|
|
|
+ wx.showToast({
|
|
|
+ title: res.data.msg,
|
|
|
+ mask: true,
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ fail(err) {
|
|
|
+ wx.hideLoading()
|
|
|
+ wx.showToast({
|
|
|
+ title: '发起网络请求失败',
|
|
|
+ icon: 'none',
|
|
|
+ mask: true
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
// 阶梯价-判断不为空
|
|
|
judgeNoyNullStepPrice(arr) {
|
|
|
let isOK = true;
|