|
@@ -13,6 +13,7 @@ Page({
|
|
navbarData: {
|
|
navbarData: {
|
|
showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
|
|
showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
|
|
title: '创建新拼团', //导航栏 中间的标题
|
|
title: '创建新拼团', //导航栏 中间的标题
|
|
|
|
+ capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
|
|
},
|
|
},
|
|
index: 0, //当前步骤(0-拼团介绍;1-编辑商品;2-规则设置)
|
|
index: 0, //当前步骤(0-拼团介绍;1-编辑商品;2-规则设置)
|
|
type: '', //类型(add-创建新拼团;copy-复制往期拼团;edit-编辑拼团;)
|
|
type: '', //类型(add-创建新拼团;copy-复制往期拼团;edit-编辑拼团;)
|
|
@@ -51,11 +52,7 @@ Page({
|
|
minutes: ['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59'],
|
|
minutes: ['00', '01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '40', '41', '42', '43', '44', '45', '46', '47', '48', '49', '50', '51', '52', '53', '54', '55', '56', '57', '58', '59'],
|
|
// 物流方式相关-开始
|
|
// 物流方式相关-开始
|
|
showShippingMethods: false, //显示物流方式
|
|
showShippingMethods: false, //显示物流方式
|
|
- shippingMethods: [{
|
|
|
|
- name: '没有物流',
|
|
|
|
- index: 0,
|
|
|
|
- className: 'actions-first-child'
|
|
|
|
- },
|
|
|
|
|
|
+ shippingMethods: [
|
|
{
|
|
{
|
|
name: '取货点自提',
|
|
name: '取货点自提',
|
|
index: 1,
|
|
index: 1,
|
|
@@ -91,6 +88,8 @@ Page({
|
|
comment: 0,
|
|
comment: 0,
|
|
seller_forwarding: 0,
|
|
seller_forwarding: 0,
|
|
receiving_information: 0,
|
|
receiving_information: 0,
|
|
|
|
+
|
|
|
|
+ wxpayservice: '', //微信支付手续费
|
|
},
|
|
},
|
|
/**
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
* 生命周期函数--监听页面加载
|
|
@@ -106,7 +105,8 @@ Page({
|
|
that.setData({
|
|
that.setData({
|
|
navbarData: {
|
|
navbarData: {
|
|
showCapsule: 1,
|
|
showCapsule: 1,
|
|
- title: '编辑拼团'
|
|
|
|
|
|
+ title: '编辑拼团',
|
|
|
|
+ capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
@@ -127,12 +127,31 @@ Page({
|
|
success(res) {
|
|
success(res) {
|
|
console.log(res);
|
|
console.log(res);
|
|
if (res.data.code === 1) {
|
|
if (res.data.code === 1) {
|
|
|
|
+ // 对拼团大图/拼团小图/拼团视频做非空校验
|
|
|
|
+ let gang_video = res.data.data.gang_video;
|
|
|
|
+ let gang_big_img = res.data.data.gang_big_img;
|
|
|
|
+ let gang_small_img = res.data.data.gang_small_img;
|
|
|
|
+ if(gang_video == null) {
|
|
|
|
+ gang_video = [];
|
|
|
|
+ }else{
|
|
|
|
+ gang_video = [gang_video];
|
|
|
|
+ }
|
|
|
|
+ if(gang_big_img == null) {
|
|
|
|
+ gang_big_img = [];
|
|
|
|
+ }else{
|
|
|
|
+ gang_big_img = [gang_big_img];
|
|
|
|
+ }
|
|
|
|
+ if(gang_small_img[0] == '') {
|
|
|
|
+ gang_small_img = [];
|
|
|
|
+ }else{
|
|
|
|
+ gang_small_img = gang_small_img;
|
|
|
|
+ }
|
|
that.setData({
|
|
that.setData({
|
|
groupName: res.data.data.gang_name,
|
|
groupName: res.data.data.gang_name,
|
|
groupDesc: res.data.data.gang_describe,
|
|
groupDesc: res.data.data.gang_describe,
|
|
- videoList: [res.data.data.gang_video],
|
|
|
|
- bigImageList: [res.data.data.gang_big_img],
|
|
|
|
- smallImageList: res.data.data.gang_small_img,
|
|
|
|
|
|
+ videoList: gang_video,
|
|
|
|
+ bigImageList: gang_big_img,
|
|
|
|
+ smallImageList: gang_small_img,
|
|
startTuanTime: res.data.data.opening_time,
|
|
startTuanTime: res.data.data.opening_time,
|
|
endTuanTime: res.data.data.closing_time,
|
|
endTuanTime: res.data.data.closing_time,
|
|
logistics_mode: res.data.data.logistics_mode,
|
|
logistics_mode: res.data.data.logistics_mode,
|
|
@@ -200,6 +219,8 @@ Page({
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
+ // 获取微信支付手续费
|
|
|
|
+ that.getWXPayServiceCharge();
|
|
},
|
|
},
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -308,10 +329,10 @@ Page({
|
|
uploadBigImage() {
|
|
uploadBigImage() {
|
|
let that = this;
|
|
let that = this;
|
|
if (that.data.bigImageList.length === 0) {
|
|
if (that.data.bigImageList.length === 0) {
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -325,6 +346,10 @@ Page({
|
|
success: (img) => {
|
|
success: (img) => {
|
|
console.log(img);
|
|
console.log(img);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: img.tempFiles[0].tempFilePath,
|
|
filePath: img.tempFiles[0].tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -370,10 +395,10 @@ Page({
|
|
uploadSmallImage() {
|
|
uploadSmallImage() {
|
|
let that = this;
|
|
let that = this;
|
|
if (that.data.smallImageList.length < 5) {
|
|
if (that.data.smallImageList.length < 5) {
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -387,6 +412,10 @@ Page({
|
|
success: (img) => {
|
|
success: (img) => {
|
|
console.log(img);
|
|
console.log(img);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: img.tempFiles[0].tempFilePath,
|
|
filePath: img.tempFiles[0].tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -432,10 +461,10 @@ Page({
|
|
uploadVideo() {
|
|
uploadVideo() {
|
|
let that = this;
|
|
let that = this;
|
|
if (that.data.videoList.length === 0) {
|
|
if (that.data.videoList.length === 0) {
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -449,6 +478,10 @@ Page({
|
|
success: (video) => {
|
|
success: (video) => {
|
|
console.log(video);
|
|
console.log(video);
|
|
let key = "video/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.mp4';
|
|
let key = "video/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.mp4';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: video.tempFiles[0].tempFilePath,
|
|
filePath: video.tempFiles[0].tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -549,7 +582,7 @@ Page({
|
|
// 创建新商品
|
|
// 创建新商品
|
|
createNewGood() {
|
|
createNewGood() {
|
|
wx.navigateTo({
|
|
wx.navigateTo({
|
|
- url: '/pages/addtogood/addtogood',
|
|
|
|
|
|
+ url: '/pages/addtogood/addtogood?enterType=announce',
|
|
})
|
|
})
|
|
},
|
|
},
|
|
// 点击切换类型
|
|
// 点击切换类型
|
|
@@ -958,10 +991,10 @@ Page({
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
success(result) {
|
|
success(result) {
|
|
console.log(result);
|
|
console.log(result);
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -970,6 +1003,10 @@ Page({
|
|
success: (oss) => {
|
|
success: (oss) => {
|
|
console.log(oss);
|
|
console.log(oss);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: result.tempFilePath,
|
|
filePath: result.tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -1023,10 +1060,10 @@ Page({
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
success(result) {
|
|
success(result) {
|
|
console.log(result);
|
|
console.log(result);
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -1035,6 +1072,10 @@ Page({
|
|
success: (oss) => {
|
|
success: (oss) => {
|
|
console.log(oss);
|
|
console.log(oss);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: result.tempFilePath,
|
|
filePath: result.tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -1097,10 +1138,10 @@ Page({
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
success(result) {
|
|
success(result) {
|
|
console.log(result);
|
|
console.log(result);
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -1109,6 +1150,10 @@ Page({
|
|
success: (oss) => {
|
|
success: (oss) => {
|
|
console.log(oss);
|
|
console.log(oss);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: result.tempFilePath,
|
|
filePath: result.tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -1162,10 +1207,10 @@ Page({
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
src: res.tempFilePaths[0], // 图片路径
|
|
success(result) {
|
|
success(result) {
|
|
console.log(result);
|
|
console.log(result);
|
|
- wx.showLoading({
|
|
|
|
- title: '文件上传中',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
|
|
+ // wx.showLoading({
|
|
|
|
+ // title: '文件上传中',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
wx.request({
|
|
wx.request({
|
|
url: api.getSignedUrl,
|
|
url: api.getSignedUrl,
|
|
data: {
|
|
data: {
|
|
@@ -1174,6 +1219,10 @@ Page({
|
|
success: (oss) => {
|
|
success: (oss) => {
|
|
console.log(oss);
|
|
console.log(oss);
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
let key = "image/" + new Date().getTime() + Math.floor(Math.random() * 150) + '.png';
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '文件上传中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
wx.uploadFile({
|
|
wx.uploadFile({
|
|
filePath: result.tempFilePath,
|
|
filePath: result.tempFilePath,
|
|
name: 'file',
|
|
name: 'file',
|
|
@@ -1338,30 +1387,30 @@ Page({
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (that.data.bigImageList.length == 0) {
|
|
|
|
- wx.showToast({
|
|
|
|
- title: '拼团大图未录入',
|
|
|
|
- icon: 'none',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (gang_small_img == '') {
|
|
|
|
- wx.showToast({
|
|
|
|
- title: '拼团小图未录入',
|
|
|
|
- icon: 'none',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (that.data.videoList.length == 0) {
|
|
|
|
- wx.showToast({
|
|
|
|
- title: '拼团视频未录入',
|
|
|
|
- icon: 'none',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
|
|
+ /* if (that.data.bigImageList.length == 0) {
|
|
|
|
+ wx.showToast({
|
|
|
|
+ title: '拼团大图未录入',
|
|
|
|
+ icon: 'none',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ } */
|
|
|
|
+ /* if (gang_small_img == '') {
|
|
|
|
+ wx.showToast({
|
|
|
|
+ title: '拼团小图未录入',
|
|
|
|
+ icon: 'none',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ } */
|
|
|
|
+ /* if (that.data.videoList.length == 0) {
|
|
|
|
+ wx.showToast({
|
|
|
|
+ title: '拼团视频未录入',
|
|
|
|
+ icon: 'none',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
|
|
+ return
|
|
|
|
+ } */
|
|
if (opening_time == '') {
|
|
if (opening_time == '') {
|
|
wx.showToast({
|
|
wx.showToast({
|
|
title: '拼团开团时间未录入',
|
|
title: '拼团开团时间未录入',
|
|
@@ -1386,14 +1435,14 @@ Page({
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (expected_arrival_time == '') {
|
|
|
|
- wx.showToast({
|
|
|
|
- title: '预计到货时间未录入',
|
|
|
|
- icon: 'none',
|
|
|
|
- mask: true
|
|
|
|
- })
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
|
|
+ // if (expected_arrival_time == '') {
|
|
|
|
+ // wx.showToast({
|
|
|
|
+ // title: '预计到货时间未录入',
|
|
|
|
+ // icon: 'none',
|
|
|
|
+ // mask: true
|
|
|
|
+ // })
|
|
|
|
+ // return
|
|
|
|
+ // }
|
|
if (commodity_id_array.length == 0) {
|
|
if (commodity_id_array.length == 0) {
|
|
wx.showToast({
|
|
wx.showToast({
|
|
title: '拼团商品未录入',
|
|
title: '拼团商品未录入',
|
|
@@ -1408,7 +1457,7 @@ Page({
|
|
title: '提交中',
|
|
title: '提交中',
|
|
mask: true
|
|
mask: true
|
|
})
|
|
})
|
|
- if(that.data.type == 'edit') {
|
|
|
|
|
|
+ if (that.data.type == 'edit') {
|
|
wx.request({
|
|
wx.request({
|
|
url: api.Gang_edit,
|
|
url: api.Gang_edit,
|
|
header: {
|
|
header: {
|
|
@@ -1481,7 +1530,7 @@ Page({
|
|
// wx.hideLoading()
|
|
// wx.hideLoading()
|
|
}
|
|
}
|
|
})
|
|
})
|
|
- }else {
|
|
|
|
|
|
+ } else {
|
|
wx.request({
|
|
wx.request({
|
|
url: api.Gang_add,
|
|
url: api.Gang_add,
|
|
header: {
|
|
header: {
|
|
@@ -1556,5 +1605,29 @@ Page({
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ },
|
|
|
|
+ // 获取微信支付手续费
|
|
|
|
+ getWXPayServiceCharge() {
|
|
|
|
+ let that = this;
|
|
|
|
+ wx.showLoading({
|
|
|
|
+ title: '加载中',
|
|
|
|
+ mask: true
|
|
|
|
+ })
|
|
|
|
+ wx.request({
|
|
|
|
+ url: api.Service,
|
|
|
|
+ header: {
|
|
|
|
+ 'Authorization': wx.getStorageSync('token')
|
|
|
|
+ },
|
|
|
|
+ method: 'POST',
|
|
|
|
+ success(res) {
|
|
|
|
+ wx.hideLoading()
|
|
|
|
+ that.setData({
|
|
|
|
+ wxpayservice: res.data.data * 100
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ fail(err) {
|
|
|
|
+ wx.hideLoading()
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
})
|
|
})
|