|
@@ -60,7 +60,7 @@
|
|
|
<input type="number" v-model="number" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="line" style="border: none;">
|
|
|
+ <view class="line" ><!-- style="border: none;" -->
|
|
|
<view class="lineLeft">
|
|
|
<span class="linexx">*</span> <span>支付方式</span>
|
|
|
</view>
|
|
@@ -70,7 +70,7 @@
|
|
|
<img src="../../static/img/cky.png" alt="" class="payTypeImg" v-if="payType==1">
|
|
|
<view class="payTypeTxt">在线支付</view>
|
|
|
</view>
|
|
|
- <view class="payType" @click="payType=2" style="padding-left: 30rpx;">
|
|
|
+ <view class="payType" @click="nopayCl" style="padding-left: 30rpx;">
|
|
|
<img src="../../static/img/cky.png" alt="" class="payTypeImg" v-if="payType==2">
|
|
|
<img src="../../static/img/ckn.png" alt="" class="payTypeImg" v-if="payType!=2">
|
|
|
<view class="payTypeTxt">无需支付</view>
|
|
@@ -85,6 +85,59 @@
|
|
|
<input type="text" v-model="money" placeholder="请输入" class="lineRightInput" placeholder-class="inputPlace">
|
|
|
</view>
|
|
|
</view>
|
|
|
+ <view v-if="payType==1">
|
|
|
+ <view class="line line3">
|
|
|
+ <view class="lineLeft">
|
|
|
+ <span>拼团设置</span>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight"><switch :checked='groupType' @change="switchgroupType" style="transform:scale(0.8)"/></view>
|
|
|
+ </view>
|
|
|
+ <view v-if="groupType">
|
|
|
+ <view class="line" >
|
|
|
+ <view class="lineLeft">
|
|
|
+ <span class="linexx">*</span> <span>拼团人数</span>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight">
|
|
|
+ <input type="number" v-model="groupNumber" placeholder="可输入大于1的整数" class="lineRightInput" placeholder-class="inputPlace">
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="line" >
|
|
|
+ <view class="lineLeft">
|
|
|
+ <span class="linexx">*</span> <span>拼团有效期</span>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight">
|
|
|
+ <input type="number" v-model="groupTime" placeholder="可输入0.5至72小时" class="linecInput" placeholder-class="inputPlace">
|
|
|
+ </view>
|
|
|
+ <viwe class="lineRight">小时</viwe>
|
|
|
+ </view>
|
|
|
+ <view class="line" >
|
|
|
+ <view class="lineLeft">
|
|
|
+ <span class="linexx">*</span> <span>拼团价</span>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight">
|
|
|
+ <input type="number" v-model="groupMoney" placeholder="需小于支付金额" class="linecInput" placeholder-class="inputPlace">
|
|
|
+ </view>
|
|
|
+ <viwe class="lineRight">元</viwe>
|
|
|
+ </view>
|
|
|
+ <view class="line line3">
|
|
|
+ <view class="lineLeft2">
|
|
|
+ <span class="linexx">*</span><span>拼团超时自动成团</span>
|
|
|
+ <image @click="zyct" src="../../static/img/icon_help.png" mode="" class="helpIcon"></image>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight"><switch :checked='groupOutState' @change="switchgroupOutState" style="transform:scale(0.8)"/></view>
|
|
|
+ </view>
|
|
|
+ <view class="line line3">
|
|
|
+ <view class="lineLeft2">
|
|
|
+ <span class="linexx">*</span><span>自由参团</span>
|
|
|
+ <image @click="zdct" src="../../static/img/icon_help.png" mode="" class="helpIcon"></image>
|
|
|
+ </view>
|
|
|
+ <view class="lineRight"><switch :checked='groupRestrictions' @change="switchgroupRestrictions" style="transform:scale(0.8)"/></view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ </view>
|
|
|
+
|
|
|
+
|
|
|
</view>
|
|
|
<view class="kk"></view>
|
|
|
<view class="box">
|
|
@@ -180,6 +233,12 @@
|
|
|
money:'',
|
|
|
ckMusic:'',
|
|
|
id:'',
|
|
|
+ groupNumber:'',
|
|
|
+ groupType:false,
|
|
|
+ groupTime:'',
|
|
|
+ groupMoney:'',
|
|
|
+ groupOutState:false,
|
|
|
+ groupRestrictions:false,
|
|
|
}
|
|
|
},
|
|
|
onLoad(opt) {
|
|
@@ -211,6 +270,42 @@
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
+ nopayCl(){
|
|
|
+ this.payType=2;
|
|
|
+ this.groupType=false
|
|
|
+ },
|
|
|
+ zdct(){
|
|
|
+ uni.showModal({
|
|
|
+ title: '自由参团',
|
|
|
+ content: '如果开启自由参团,则用户可以在详情页直接参团;如果关闭,则用户只能通过好友分享的链接参与拼团',
|
|
|
+ showCancel:false,
|
|
|
+ confirmText:'我知道了',
|
|
|
+ success: function (res) {
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ zyct(){
|
|
|
+ uni.showModal({
|
|
|
+ title: '拼团超时自动成团',
|
|
|
+ content: '如果开启:过了拼团有效期或拼团活动结束后未能成团,则自动成团;如果关闭:过了拼团有效期或拼团活动结束后未能成团,则拼团失败,团内用户的支付金额将原路退回。',
|
|
|
+ showCancel:false,
|
|
|
+ confirmText:'我知道了',
|
|
|
+ success: function (res) {
|
|
|
+
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ switchgroupType(e){
|
|
|
+ console.log(e)
|
|
|
+ this.groupType=e.detail.value
|
|
|
+ },
|
|
|
+ switchgroupOutState(e){
|
|
|
+ this.groupOutState=e.detail.value
|
|
|
+ },
|
|
|
+ switchgroupRestrictions(e){
|
|
|
+ this.groupRestrictions=e.detail.value
|
|
|
+ },
|
|
|
previewImage(img){
|
|
|
var arr=[]
|
|
|
arr.push(img)
|
|
@@ -244,6 +339,7 @@
|
|
|
this.endTime=jkdata.endTime.slice(0,10);
|
|
|
this.payType=jkdata.payType;
|
|
|
this.img=res.data.img.img;
|
|
|
+
|
|
|
if(res.data.imgList){
|
|
|
res.data.imgList.forEach(item=>{
|
|
|
this.imgListArr.push(item.img)
|
|
@@ -274,7 +370,12 @@
|
|
|
}else{
|
|
|
uni.removeStorageSync('ckmusic');
|
|
|
}
|
|
|
-
|
|
|
+ this.groupType=jkdata.groupType==1?true:false;
|
|
|
+ this.groupNumber=jkdata.groupNumber;
|
|
|
+ this.groupTime=jkdata.groupTime;
|
|
|
+ this.groupMoney=jkdata.groupMoney;
|
|
|
+ this.groupOutState=jkdata.groupOutState;
|
|
|
+ this.groupRestrictions=jkdata.groupRestrictions;
|
|
|
//console.log(this.imgListArr)
|
|
|
uni.setStorage({
|
|
|
key: 'shopckList',
|
|
@@ -391,8 +492,56 @@
|
|
|
duration: 2000
|
|
|
});
|
|
|
return false;
|
|
|
+ }else if(this.groupType){
|
|
|
+ if(!this.groupNumber){
|
|
|
+
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入拼团人数',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else if(this.groupNumber%1 != 0){
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入整数',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if(!this.groupTime){
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入拼团有效期',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else if(this.groupTime<0.5||this.groupTime>72){
|
|
|
+ uni.showToast({
|
|
|
+ title: '有效期为0.5小时至72小时',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ if(!this.groupMoney){
|
|
|
+ uni.showToast({
|
|
|
+ title: '请输入价格',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }else if(this.groupMoney>this.money){
|
|
|
+ uni.showToast({
|
|
|
+ title: '拼团价格需小于实付价格',
|
|
|
+ icon:'none',
|
|
|
+ duration: 2000
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
//return false;
|
|
|
+
|
|
|
var editdata={
|
|
|
id:this.id,
|
|
|
activityName:this.activityName,
|
|
@@ -408,9 +557,15 @@
|
|
|
img:this.img,
|
|
|
imgList:this.imgListArr.join(','),
|
|
|
clState:'',
|
|
|
-
|
|
|
+ groupType:this.groupType?1:0,
|
|
|
+ groupNumber:this.groupNumber,
|
|
|
+ groupTime:this.groupTime,
|
|
|
+ groupMoney:this.groupMoney,
|
|
|
+ groupOutState:this.groupOutState?1:0,
|
|
|
+ groupRestrictions:this.groupRestrictions?1:0
|
|
|
}
|
|
|
console.log(editdata)
|
|
|
+ //return false;
|
|
|
uni.setStorage({
|
|
|
key: 'editdata',
|
|
|
data: editdata,
|
|
@@ -520,6 +675,12 @@
|
|
|
min-height: 100vh;
|
|
|
background:#F4F5F7;
|
|
|
}
|
|
|
+.lineLeft2{
|
|
|
+ width: 300rpx;color: #666666;display: flex;align-items: center;
|
|
|
+}
|
|
|
+.helpIcon{
|
|
|
+ width: 26rpx;height: 26rpx;padding-left: 10rpx;padding-top: 4rpx;
|
|
|
+}
|
|
|
.preview{
|
|
|
width: 750rpx;
|
|
|
height: 98rpx;
|
|
@@ -695,6 +856,11 @@
|
|
|
color:#3C3C3C ;
|
|
|
width: 500rpx;
|
|
|
}
|
|
|
+.linecInput{
|
|
|
+ font-size: 28rpx;
|
|
|
+ color:#3C3C3C ;
|
|
|
+ width: 400rpx;
|
|
|
+}
|
|
|
.lineRight{
|
|
|
color:#3C3C3C ;
|
|
|
}
|
|
@@ -723,4 +889,11 @@
|
|
|
.lineBorderNo{
|
|
|
border-bottom: none !important;
|
|
|
}
|
|
|
+.line3{
|
|
|
+ display: flex;justify-content: space-between;
|
|
|
+ padding: 16rpx 24rpx;
|
|
|
+}
|
|
|
+.line3 .lineLeft{
|
|
|
+ display: flex;align-items: center;
|
|
|
+}
|
|
|
</style>
|