Authored by yyq

style

... ... @@ -14,7 +14,7 @@
</view>
</block>
<block wx:else>
<scroll-view scroll-y style="height: 100%;" bindtouchstart="touchStartAction">
<scroll-view scroll-y class="cart-scoll-wrap" bindtouchstart="touchStartAction">
<view class="tips-wrap" wx:if="{{priceDownTips || shippingCostTips}}">
<view class="hold-text">
<text>{{priceDownTips || shippingCostTips}}</text>
... ...
... ... @@ -3,9 +3,11 @@
@import "./template/cart/invalid-list.wxss";
@import "../goodsDetail/picker/picker.wxss";
/* stylelint-disable-next-line */
page {
height: 100%;
color: #444;
background-color: #eee;
}
.empty-cart .empty-img {
... ... @@ -97,6 +99,7 @@ page {
.total-cost {
padding: 20rpx 30rpx;
font-size: 26rpx;
background-color: #fff;
}
.footer-wrap {
... ...
.gift-wrap {
background-color: #fff;
}
... ...
... ... @@ -2,6 +2,7 @@
.goods-pool-list {
font-size: 24rpx;
background-color: #fff;
}
.goods-pool-list .list-warp {
... ...
<import src="./goods-list.wxml"/>
<template name="cartInvalidList">
<view class="invalid-wrap" wx:if="{{invalidGoodsList}}">
<view class="invalid-wrap" wx:if="{{invalidGoodsList.length}}">
<template is="cartGoodsList" data="{{goodsList: invalidGoodsList, isInvalid: true}}"/>
<view class="clean-invalid-wrap">
... ...
... ... @@ -2,7 +2,7 @@
padding: 20rpx 0;
border-top: 1px solid #f0f0f0;
text-align: center;
background-color: #fff;
}
.clean-invalid-wrap .clean-invalid-btn {
... ...
... ... @@ -4,7 +4,7 @@
<block wx:for="{{promotionList}}" wx:key="unique">
<view class="promotion-item" data-promotion="{{item}}" bindtap="navToPromotionPage">
<view class="right-option">
<text class="promotion-status {{item.soldOut ? 'soldOut' : ''}}">{{item.statuString}}</text>
<text class="promotion-status {{item.soldOut ? 'sold-out' : ''}}">{{item.statuString}}</text>
<text class="iconfont icon-right"></text>
</view>
<view class="left-text">
... ...
.promotion-wrap {
border-bottom: 1rpx solid #f0f0f0;
border-top:1rpx solid #f0f0f0;
border-top: 1rpx solid #f0f0f0;
padding: 24rpx 30rpx;
margin-top:-1rpx;
margin-top: -1rpx;
position: relative;
box-sizing: border-box;
background-color: #fff;
}
.sub-promotion-wrap {
... ... @@ -58,7 +59,7 @@
color: #ff575c;
}
.promotion-item .soldOut {
.promotion-item .sold-out {
color: #eee;
}
... ...
... ... @@ -29,7 +29,7 @@
"list": []
},
"miniprogram": {
"current": 14,
"current": 3,
"list": [
{
"id": -1,
... ... @@ -48,6 +48,11 @@
"name": "店铺",
"pathName": "pages/goodsList/brandStore",
"query": "shop_id=1016"
},
{
"id": -1,
"name": "购物车",
"pathName": "pages/cart/cart"
}
]
}
... ...