123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <template>
- <view class="wrap">
- <navbar v-model="screenHeight" title-color="#ffffff" background="#1b43c4" :iSimmersive="false" :isPrev="false" :placeholder="true" title="购物车"></navbar>
- <view class="list-wrap">
- <mescroll-body
- ref="mescrollRef"
- @init="mescrollInit"
- @down="downCallback"
- @up="upCallback"
- :down="downOption"
- :up="upOption"
- :height="screenHeight+'px'"
- >
- <checkbox-group @change="checkboxChange">
- <view class="list-box">
- <view
- class="list-item"
- v-for="item in goods"
- :key="item.id"
- >
- <view class="left-pic">
- <view class="item-check">
- <checkbox :value="item.id+''" :checked="item.checked" />
- </view>
- <view class="pic" @click="$utils.navigateTo('goods/view',{id: item.goods_id})">
- <image :src="item.photo"></image>
- </view>
- </view>
- <view class="goods">
- <view class="t" @click="$utils.navigateTo('goods/view',{id: item.goods_id})">{{ item.title }}</view>
- <view class="m" @click="$utils.navigateTo('goods/view',{id: item.goods_id})">{{ item.attr }}</view>
- <view class="b">
- <view>¥{{ item.price }}</view>
- <view>
- <uni-number-box
- :min="1"
- :max="item.nums"
- :value="item.goods_nums"
- :disabled="item.disabled"
- @change="stepperNum($event,item)"
- />
- </view>
- </view>
- </view>
- </view>
- </view>
- </checkbox-group>
-
- </mescroll-body>
-
- <view class="cart-bottom" v-if="goods.length > 0">
- <view class="check-box">
- <checkbox-group @change="checkboxAll">
- <checkbox :checked="isChecked" />
- </checkbox-group>
- </view>
- <view v-if="isDeleteBtn" class="deleteGoods" @click="deleteGoods">删除</view>
- <view class="cart-bottom-text">
- <view>合计:</view>
- <view>
- <text>¥</text>
- <text>{{total}}</text>
- </view>
- </view>
- <view class="btn" @click="onSubmit">
- 提交订单
- </view>
- </view>
- </view>
-
- <authorize v-model="isAuthShow"></authorize>
- </view>
- </template>
- <script>
- import MescrollMixin from "@/uni_modules/mescroll-uni/components/mescroll-uni/mescroll-mixins.js";
- import navbar from "@/components/navbar/navbar";
- import authorize from "@/components/authorize/authorize";
-
- export default {
- mixins: [MescrollMixin],
- components: {
- navbar,authorize
- },
- data(){
- return {
- screenHeight: 0,
- isAuthShow: false,
- isDeleteBtn:false,
- isChecked: false,
- goods: [], // 数据列表
- array: [],
- total: 0.00,
- downOption: {
- auto: false
- },
- upOption: {
- use: true, // 是否启用上拉加载; 默认true
- auto: false, // 是否在初始化完毕之后自动执行上拉加载的回调; 默认true
- isLock: false, // 是否锁定上拉加载,默认false;
- isBoth: true, // 上拉加载时,如果滑动到列表顶部是否可以同时触发下拉刷新;默认true,两者可同时触发;
- page: {
- num: 0, // 当前页码,默认0,回调之前会加1,即callback(page)会从1开始
- size: 10, // 每页数据的数量
- time: null // 加载第一页数据服务器返回的时间; 防止用户翻页时,后台新增了数据从而导致下一页数据重复;
- },
- noMoreSize: 3, // 如果列表已无数据,可设置列表的总数量要大于等于5条才显示无更多数据;避免列表数据过少(比如只有一条数据),显示无更多数据会不好看
- offset: 80, // 距底部多远时,触发upCallback(仅mescroll-uni生效, 对于mescroll-body则需在pages.json设置"onReachBottomDistance")
- bgColor: "transparent", // 背景颜色 (建议在pages.json中再设置一下backgroundColorTop)
- textColor: "gray", // 文本颜色 (当bgColor配置了颜色,而textColor未配置时,则textColor会默认为白色)
- textLoading: '加载中 ...', // 加载中的提示文本
- textNoMore: '-- END --', // 没有更多数据的提示文本
-
- empty: {
- use: true, // 是否显示空布局
- icon: this.$http.domain()+"static/images/cart-empty.png", // 图标路径
- tip: '购物车为空', // 提示
- btnText: '', // 按钮
- fixed: false, // 是否使用fixed定位,默认false; 配置fixed为true,以下的top和zIndex才生效 (transform会使fixed失效,最终会降级为absolute)
- top: "100rpx", // fixed定位的top值 (完整的单位值,如 "10%"; "100rpx")
- zIndex: 99 // fixed定位z-index值
- }
- },
- };
- },
- onShow() {
- this.$store.dispatch("usersStatus").then(()=>{
- this.isAuthShow = false;
- this.downCallback();
- }).catch(()=>{
- this.isAuthShow = true;
- this.mescroll.showEmpty();
- });
- },
- watch:{
- goods:{
- handler(newValue, oldValue){
- let total = 0.00;
- this.goods.forEach((item,index)=>{
- if(item.checked){
- total += parseFloat(item.price) * item.goods_nums;
- }
- });
-
- this.isDeleteBtn = total > 0;
- this.total = total;
- },
- deep: true
- }
- },
- methods: {
- deleteGoods(){
- let arr = [];
- this.goods = this.goods.filter((item)=>{
- if(item.checked){
- arr.push(item);
- }
- return !item.checked;
- });
-
- if(arr.length <= 0){
- return 0;
- }
-
- let id = [];
- arr.forEach((item)=>{
- id.push(item.id);
- })
-
- this.$http.deleteCart({
- id: id.join(",")
- }).then((res)=>{
- if(res.data > 0){
- uni.setTabBarBadge({ index: 2, text: res.data.toString() });
- }else{
- uni.removeTabBarBadge({ index: 2 });
- this.mescroll.showEmpty();
- }
- this.$store.commit("UPDATECART",res.data);
- }).catch((err)=>{});
-
- this.isChecked = false;
- return arr.length;
- },
- onSubmit(){
- let array = [];
- for(let i in this.goods){
- if(this.goods[i].checked){
- array.push(this.goods[i].id);
- }
- }
-
- if(array.length <= 0){
- this.$utils.msg("请选择需要结算的商品");
- return false;
- }
-
- this.$utils.navigateTo("cart/confirm",{
- id: array.join(","),
- type: "cart"
- });
- },
- checkboxChange: function (e) {
- let items = this.goods,values = e.detail.value;
- for (let i = 0, lenI = items.length; i < lenI; ++i) {
- let item = items[i];
- if(values.includes(item.id+'')){
- this.$set(this.goods[i],'checked',true);
- }else{
- this.$set(this.goods[i],'checked',false);
- }
- }
-
- for(let i = 0; i<this.goods.length; i++){
- if(this.goods[i].checked){
- this.isChecked = true;
- break;
- }else{
- this.isChecked = false;
- }
- }
- },
- checkboxAll: function(e) {
- this.isChecked = !this.isChecked;
- this.setAllCheckbox(this.isChecked);
- },
-
- //全选设置
- setAllCheckbox: function(checked) {
- this.array = [];
- for(let i in this.goods){
- this.goods[i].checked = checked;
- }
- },
- /*下拉刷新的回调 */
- downCallback() {
- setTimeout(()=>{
- this.mescroll.resetUpScroll();
- },200);
- },
- triggerDownScroll(){
- this.mescroll.triggerDownScroll();
- },
- /* 上拉加载的回调: 其中page.num:当前页 从1开始, page.size:每页数据条数,默认 10 */
- upCallback(page) {
- this.$http.getCartList({
- page: page.num
- }).then(result=>{
- this.mescroll.endByPage(result.data.list.length, result.data.total);
- if(result.status==1){
- if(page.num == 1) this.goods = [];
- result.data.list.forEach((item,index)=>{
- result.data.list[index]['checked'] = false;
- result.data.list[index]['disabled'] = false;
- })
- this.goods = this.goods.concat(result.data.list);
- }else if(result.status == -1){
- this.mescroll.endErr();
- }
- }).catch(error=>{
- this.mescroll.endErr();
- });
- },
- emptyClick(){
- this.$utils.switchTab("index/index");
- },
- /**
- * 更新商品数量
- * @param value 数量
- * @param detail 索引
- */
- stepperNum(value, item){
- for(let i in this.goods){
- if(this.goods[i].id==item.id){
- if(this.goods[i].goods_nums != value){
- this.$http.updateCartGoods({
- id: this.goods[i].goods_id,
- sku_id: this.goods[i].product_id,
- num: value
- }).then((res)=>{
- if(res.status){
- this.goods[i].goods_nums = value;
- this.$store.commit("UPDATECART",res.data.count);
- if(res.data.count > 0){
- uni.setTabBarBadge({ index: 3, text: res.data.count.toString() });
- }else{
- uni.removeTabBarBadge({ index: 3 })
- }
- }else{
- this.goods[i].disabled = true;
- }
- }).catch((error)=>{
- this.goods[i].disabled = true;
- });
- }
- break;
- }
- }
-
- return false;
- }
- }
- }
- </script>
- <style lang="scss">
- page { background-color: #fff; }
- .cart-bottom{
- width: 100%;
- height: 100rpx;
- position: fixed;
- /* #ifdef APP-PLUS || MP */
- bottom: 0px;
- /* #endif */
- /* #ifdef H5 */
- bottom: 50px;
- /* #endif */
- left: 0;
- border-top: 2rpx solid #eee;
- background-color: #fff;
- .check-box{
- float: left;
- height: 100rpx;
- line-height: 100rpx;
- padding-left: 45rpx;
- }
- .deleteGoods {
- float: left;
- height: 100rpx;
- line-height: 110rpx;
- padding-left: 10rpx;
- color: #666;
- }
- .cart-bottom-text{
- padding-right: 240rpx;
- color: #323233;
- text-align: right;
- font-size: 24rpx;
- float: right;
- height: 100rpx;
- line-height: 100rpx;
- view{
- display: inline-block;
- &:last-child {
- color: #ee0a24;
- text {
- color: #ee0a24;
- &:last-child {
- font-size: 34rpx;
- padding-left: 5rpx;
- }
- }
- }
- }
- }
- .btn{
- width: 200rpx;
- height: 80rpx;
- line-height: 80rpx;
- border: none;
- position: absolute;
- display: inline-block;
- margin: 0;
- padding: 0;
- font-size: 30rpx;
- text-align: center;
- border-radius: 50rpx;
- cursor: pointer;
- transition: opacity .2s;
- top:10rpx;
- right: 20rpx;
- color: #fff;
- background-color: #ee0a24;
- background: linear-gradient(90deg,#5a80fa,#3563f4);
- }
- }
-
- .wrap{
- width: 100%;
- background: #fafafa;
- }
-
- .list-box{
- display: flex;
- flex-wrap: wrap;
- flex-direction: column;
- background: #fafafa;
- .list-item{
- width: 88%;
- height: 180rpx;
- margin: 0 auto;
- background-color: #fff;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- font-size: 28rpx;
- padding: 20rpx 20rpx;
- position: relative;
- &:first-child{
- margin-top: 20rpx;
- }
- .left-pic {
- position: absolute;
- left: 0; top:0; z-index: 999;
- width: 240rpx; height: 220rpx;
- .item-check{
- float: left;
- width: 25rpx;
- height: 25px;
- position: relative;
- margin-top: 80rpx; margin-left: 15rpx;
- }
- .pic{
- float: right; margin-top: 30rpx;
- width: 160rpx;
- image {
- width: 160rpx;
- height: 160rpx;
- }
- }
- }
- .goods{
- float: right;
- padding-left: 240rpx;
- font-size: 28rpx;
- color: #333;
- .t{
- width: 100%;
- min-height: 50rpx;
- max-height: 80rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .m{
- color: #666;
- font-size: 26rpx;
- display: -webkit-box;
- overflow: hidden;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- }
- .b{
- height: 60rpx;
- padding-top: 8rpx;
- view:first-child{
- float: left;
- line-height: 60rpx;
- color: red; font-size: 34rpx;
- }
- view:last-child{
- float: right;
- }
- }
- }
- }
-
- }
- </style>
|