优化购物车库存不足或商品下架、优化我的推广(代理商)
parent
ac04a11951
commit
cdd874fe38
|
@ -29,6 +29,9 @@
|
||||||
<view class="fon20" style="color: #676767;" v-if="item.created_at">{{item.created_at.slice(0,10).split('-').join('.')}}</view>
|
<view class="fon20" style="color: #676767;" v-if="item.created_at">{{item.created_at.slice(0,10).split('-').join('.')}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
|
<view class="" v-if="moreLoading">
|
||||||
|
<pitera :textStr="`${noMore && total > dataList.length?'上滑加载更多':'到底了'}~~`" textColor="#b0aaa9" paddingStr="40rpx 0 20rpx 0"></pitera>
|
||||||
|
</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<dynamic-frame ref="refFrame" :showType="showType"></dynamic-frame>
|
<dynamic-frame ref="refFrame" :showType="showType"></dynamic-frame>
|
||||||
|
@ -37,9 +40,11 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import dynamicFrame from '@/components/dynamic-frame.vue';
|
import dynamicFrame from '@/components/dynamic-frame.vue';
|
||||||
|
import pitera from '@/components/nothing/pitera.vue';
|
||||||
export default {
|
export default {
|
||||||
components:{
|
components:{
|
||||||
dynamicFrame
|
dynamicFrame,
|
||||||
|
pitera
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -51,12 +56,22 @@
|
||||||
showType:4,
|
showType:4,
|
||||||
page:1,
|
page:1,
|
||||||
size:20,
|
size:20,
|
||||||
loading:false
|
loading:false,
|
||||||
|
noMore:false,
|
||||||
|
moreLoading:false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.getSignInfo();
|
this.getSignInfo();
|
||||||
},
|
},
|
||||||
|
onReachBottom() {
|
||||||
|
if(this.total!=this.dataList.length){
|
||||||
|
this.page++;
|
||||||
|
this.getSignList();
|
||||||
|
} else {
|
||||||
|
this.noMore = true;
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
// 获取签到信息
|
// 获取签到信息
|
||||||
getSignInfo(){
|
getSignInfo(){
|
||||||
|
@ -92,9 +107,13 @@
|
||||||
page:this.page,
|
page:this.page,
|
||||||
size:this.size
|
size:this.size
|
||||||
}
|
}
|
||||||
|
this.moreLoading = false;
|
||||||
|
if(this.page==1) this.dataList = [];
|
||||||
this.$requst.get('/api/user/sign-score',params).then(res=>{
|
this.$requst.get('/api/user/sign-score',params).then(res=>{
|
||||||
if(res.code==0){
|
if(res.code==0){
|
||||||
this.dataList = res.data.list;
|
this.total = res.data.total;
|
||||||
|
this.dataList = [...this.dataList,...res.data.list];
|
||||||
|
this.moreLoading = true;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -230,14 +230,67 @@
|
||||||
},
|
},
|
||||||
// 全选事件
|
// 全选事件
|
||||||
chooseAllEv(){
|
chooseAllEv(){
|
||||||
this.ifSelectAll = !this.ifSelectAll;
|
let sameType1 = false;
|
||||||
this.datalist.forEach(item=>item.ifcheck = this.ifSelectAll ? true : false);
|
let sameType2 = false;
|
||||||
|
this.datalist.forEach(item=>{
|
||||||
|
if(item.is_coupon==1){
|
||||||
|
sameType1 = true;
|
||||||
|
}
|
||||||
|
if(item.is_coupon==0) {
|
||||||
|
sameType2 = true;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
if((!sameType1 && sameType2) || (sameType1 && !sameType2)){
|
||||||
|
this.ifSelectAll = !this.ifSelectAll;
|
||||||
|
this.datalist.forEach(item=>item.ifcheck = this.ifSelectAll ? true : false);
|
||||||
|
this.datalist.forEach(item=>{
|
||||||
|
if(item.exception){
|
||||||
|
item.ifcheck = false;
|
||||||
|
this.ifSelectAll = false;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
this.$toolAll.tools.showToast('优惠券不能与商品一同下单');
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 选中事件
|
// 选中事件
|
||||||
chooseEv(index) {
|
chooseEv(index) {
|
||||||
this.datalist[index].ifcheck = !this.datalist[index].ifcheck;
|
if(this.checkTogether(index)){
|
||||||
|
try{
|
||||||
|
if(this.datalist[index].exception){
|
||||||
|
this.$toolAll.tools.showToast(this.datalist[index].exception_text);
|
||||||
|
} else {
|
||||||
|
if(this.datalist[index].num > this.datalist[index].sku.sku_stock){
|
||||||
|
this.$toolAll.tools.showToast(`库存不足`);
|
||||||
|
} else {
|
||||||
|
this.datalist[index].ifcheck = !this.datalist[index].ifcheck;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch(e){
|
||||||
|
//TODO handle the exception
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
this.judgeSelectAllEv();
|
this.judgeSelectAllEv();
|
||||||
},
|
},
|
||||||
|
// 检测是否可以一起下单
|
||||||
|
checkTogether(index){
|
||||||
|
let result = false;
|
||||||
|
let tempList = [];
|
||||||
|
this.datalist.forEach(item=>{
|
||||||
|
if(item.ifcheck){
|
||||||
|
tempList.push(item);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
let sameType = tempList.every(item=>item.is_coupon==this.datalist[index].is_coupon);
|
||||||
|
if(!sameType){
|
||||||
|
this.$toolAll.tools.showToast('优惠券不能与商品一同下单');
|
||||||
|
} else {
|
||||||
|
result = true;
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
},
|
||||||
// 判断全选中是否被选中
|
// 判断全选中是否被选中
|
||||||
judgeSelectAllEv() {
|
judgeSelectAllEv() {
|
||||||
if(this.datalist.length){
|
if(this.datalist.length){
|
||||||
|
|
|
@ -13,22 +13,26 @@
|
||||||
</view>
|
</view>
|
||||||
<view class="disjbac pad-x20 pad-zy10">
|
<view class="disjbac pad-x20 pad-zy10">
|
||||||
<view class="fon22 col26">我的佣金</view>
|
<view class="fon22 col26">我的佣金</view>
|
||||||
<view class="fon26 bold col-e42417" v-if="scoreInfo">{{scoreInfo.score}}</view>
|
<view class="fon26 bold col-e42417" v-if="scoreInfo">{{scoreInfo.commission}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="mar-s30 pad-zy20 bacf boxshow2">
|
<view class="mar-s30 pad-zy20 bacf boxshow2 fon24">
|
||||||
<view class=" col26 pad-sx20 pad-zy10 disac borbot" v-for="(item,index) in dataList" :key="index">
|
<view class="col26 pad-s30 pad-x10 pad-zy10 disjbac borbot" style="color: #6d6d6d;">
|
||||||
|
<view class="">我的代理商</view>
|
||||||
|
<view class="">佣金记录</view>
|
||||||
|
</view>
|
||||||
|
<view class=" col26 pad-sx20 pad-zy10 disjbac borbot" v-for="(item,index) in dataList" :key="index">
|
||||||
<image :src="item.account.headimgurl" class="flexs radius_100 mar-y20" style="width: 78rpx;height: 78rpx;" mode="aspectFill" lazy-load></image>
|
<image :src="item.account.headimgurl" class="flexs radius_100 mar-y20" style="width: 78rpx;height: 78rpx;" mode="aspectFill" lazy-load></image>
|
||||||
<view class="width100">
|
<!-- <view class="width100"> -->
|
||||||
<view class="disjbac">
|
<!-- <view class="disjbac"> -->
|
||||||
<view class="fon24 colb">{{item.account.nickname}}</view>
|
<view class="colb clips1">{{item.account.nickname}}</view>
|
||||||
<view class="col-e42417 fon24">+{{item.num}}</view>
|
<!-- <view class="col-e42417">+{{item.num}}</view> -->
|
||||||
</view>
|
<!-- </view> -->
|
||||||
<view class="disjbac" style="margin-top: 6rpx;">
|
<!-- <view class="disjbac" style="margin-top: 6rpx;">
|
||||||
<view class="fon20" style="color: #747474;" v-if="item.created_at">{{item.created_at.split('-').join('.')}}</view>
|
<view class="fon20" style="color: #747474;" v-if="item.created_at">{{item.created_at.split('-').join('.')}}</view>
|
||||||
<view class="fon24">{{item.name}}</view>
|
<view class="">{{item.name}}</view>
|
||||||
</view>
|
</view> -->
|
||||||
</view>
|
<!-- </view> -->
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<pitera :textStr="`${noMore && total > dataList.length?'上滑加载更多':'到底了'}~~`" textColor="#b0aaa9" paddingStr="40rpx 0 20rpx 0"></pitera>
|
<pitera :textStr="`${noMore && total > dataList.length?'上滑加载更多':'到底了'}~~`" textColor="#b0aaa9" paddingStr="40rpx 0 20rpx 0"></pitera>
|
||||||
|
|
Loading…
Reference in New Issue